   * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background: linear-gradient(135deg, #f8f9fa, #e9ecef);
      color: #333;
      min-height: 100vh;
    }

    /* Header with Glass Effect */
    header {
      backdrop-filter: blur(10px);
      background: rgba(30, 30, 30, 0.85);
      color: #ffffff;
      padding: 20px 40px;
      margin-bottom: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .logo {
      font-size: 32px;
      font-weight: 700;
      letter-spacing: 1px;
    }

    .btn {
      display: flex;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .btn button {
      padding: 14px 32px;
      margin-top: 35px;
      margin-bottom: 5%;
      background: #f8f9fa;
      border: 1px solid #dee2e6;
      border-radius: 28px;
      color: #495057;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn button:hover {
      background: #212529;
      color: #fff;
      border-color: #212529;
    }

    #cart {
      display: flex;
      align-items: center;
      gap: 15px;
      font-size: 20px;
      cursor: pointer;
      background: rgb(255, 255, 255);
      padding: 8px 15px;
      border-radius: 50px;
    }

    #cart-count {
      background: #ffffff;
      color: rgb(0, 0, 0);
      border-radius: 50%;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 600;
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
      padding: 0 20px 40px 20px;
      max-width: 1300px;
      margin: 0 auto;
    }

    .product {
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid #e0e0e0;
      border-radius: 15px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      height: 430px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: all 0.3s ease;
    }

    .product:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .product img {
      width: 100%;
      height: 200px;
      object-fit: contain;
      border-radius: 10px;
      margin-bottom: 15px;
    }

    .product h3 {
      margin: 10px 0;
      font-size: 18px;
      color: #343a40;
    }

    .product p {
      font-size: 20px;
      margin-bottom: 15px;
      font-weight: 700;
      color: #495057;
    }

    .product-buttons {
      display: flex;
      gap: 10px;
      justify-content: center;
    }

    .add-cart {
      margin: 5px;
      padding: 10px 18px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.2s ease;
      flex: 1;
    }

    .add-cart {
      background: #ffffff;
      color: black;
      border: solid 1px black;
    }

    .add-cart:hover {
      background: #000000;
      color: rgb(255, 255, 255);
      border: none;
    }

    .category-title {
      font-size: 2.8rem;
      text-align: center;
      font-weight: 800;
      padding-bottom: 15px;
      margin-bottom: 1.5em;
      margin-top: 1.5em;
      color: #343a40;
      position: relative;
    }

    .category-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: #000000;
      border-radius: 2px;
    }

    .category-section {
      scroll-margin-top: 120px;
      margin-bottom: 80px;
    }
    
    /* Cart Drawer Styles */
    .overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 99;
    }
    
    .cart-drawer {
      position: fixed;
      top: 0;
      right: -400px;
      width: 380px;
      height: 100%;
      background: white;
      box-shadow: -2px 0 5px rgba(0,0,0,0.1);
      transition: right 0.3s ease;
      z-index: 100;
      display: flex;
      flex-direction: column;
    }
    
    .cart-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      border-bottom: 1px solid #eee;
    }
    
    .cart-header h2 {
      margin: 0;
    }
    
    #close-cart {
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
    }
    
    .cart-items {
      flex: 1;
      overflow-y: auto;
      padding: 20px;
    }
    
    .cart-item {
      display: flex;
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid #f5f5f5;
    }
    
    .cart-item img {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin-right: 15px;
    }
    
    .cart-item-details {
      flex: 1;
    }
    
    .cart-item-details h4 {
      margin: 0 0 5px 0;
      font-size: 16px;
    }
    
    .cart-item-details p {
      margin: 0;
      font-size: 14px;
      color: #666;
    }
    
    .cart-item-actions button {
      background: #ff3b30;
      color: white;
      border: none;
      padding: 5px 10px;
      border-radius: 4px;
      cursor: pointer;
      font-size: 14px;
    }
    
    .cart-total {
      padding: 20px;
      border-top: 1px solid #eee;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    #checkout-btn {
      background: #000;
      color: white;
      border: none;
      padding: 12px 24px;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      transition: background 0.3s;
    }
    
    #checkout-btn:hover {
      background: #333;
    }
    
    .empty-cart {
      text-align: center;
      padding: 40px 20px;
      color: #888;
    }

    .qty-decrease {
        color: rgb(255, 255, 255);
        background-color: #686868;
        padding: 5px 8px 5px 8px;
        border-style:none;
        border-radius: 13px;
    }

      .qty-increase {
        color: rgb(255, 255, 255);
        background-color: #686868;
        padding: 5px 8px 5px 8px;
        border-style:none;
        border-radius: 13px;
    }