
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Inter', sans-serif;
      background: linear-gradient(145deg, #ffe6f0 0%, #ffb8d6 100%);
      background-attachment: fixed;
      color: #1e1e2a;
      overflow-x: hidden;
    }
    h1, h2, h3, h4, .logo-text, .hero-title { font-family: 'Playfair Display', serif; }
    html { scroll-behavior: smooth; }
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: #ffd9e8; border-radius: 10px; }
    ::-webkit-scrollbar-thumb { background: #d43f81; border-radius: 10px; }

    .navbar-glass {
      background: rgba(255, 240, 245, 0.92);
      backdrop-filter: blur(14px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.06);
      transition: all 0.3s;
    }
    .navbar-brand img {
      width: 45px;
      height: 45px;
      object-fit: cover;
      border: 2px solid #ff6a9e;
      border-radius: 50%;
      transition: transform 0.4s;
    }
    .navbar-brand:hover img { transform: scale(1.05); }
    .logo-text {
      font-weight: 700;
      font-size: 1.5rem;
      background: linear-gradient(135deg, #b63b6b, #f15f8e);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .nav-link, .dropdown-item {
      font-weight: 500;
      transition: all 0.3s ease;
    }
    .nav-link:hover, .dropdown-item:hover {
      color: #e6397c !important;
      transform: translateY(-2px);
    }
    .icon-btn {
      background: transparent;
      border: none;
      font-size: 1.3rem;
      position: relative;
      transition: 0.3s;
      color: #4a2e38;
    }
    .icon-btn:hover { color: #d43f81; transform: scale(1.1); }
    .cart-badge {
      position: absolute;
      top: -8px;
      right: -12px;
      background: #e6397c;
      color: white;
      font-size: 0.7rem;
      border-radius: 50%;
      padding: 2px 6px;
      font-weight: bold;
    }
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-18px); }
      100% { transform: translateY(0px); }
    }
    .floating-img {
      animation: float 4s ease-in-out infinite;
      max-width: 100%;
      border-radius: 2rem;
      box-shadow: 0 25px 35px -12px rgba(0,0,0,0.2);
    }
    .hero-badge {
      background: rgba(255,255,240,0.9);
      backdrop-filter: blur(4px);
      border-radius: 40px;
      padding: 6px 14px;
      font-size: 0.8rem;
      font-weight: bold;
    }
    .product-card {
      background: white;
      border-radius: 24px;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      box-shadow: 0 12px 26px -8px rgba(0,0,0,0.1);
      height: 100%;
      position: relative;
    }
    .product-card:hover { transform: translateY(-10px); box-shadow: 0 28px 36px -12px rgba(0,0,0,0.2); }
    .product-img-wrapper { overflow: hidden; position: relative; cursor: pointer; }
    .product-img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .product-card:hover .product-img { transform: scale(1.07); }
    .product-actions {
      position: absolute;
      bottom: 12px;
      right: 12px;
      display: flex;
      gap: 8px;
      opacity: 0;
      transition: 0.4s;
    }
    .product-card:hover .product-actions { opacity: 1; }
    .quick-btn, .wishlist-btn {
      background: white;
      border-radius: 50%;
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
      cursor: pointer;
      border: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .quick-btn:hover, .wishlist-btn:hover { background: #ff7b9c; color: white; }
    .category-card {
      border-radius: 28px;
      overflow: hidden;
      position: relative;
      transition: all 0.5s;
      cursor: pointer;
      height: 220px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }
    .category-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s;
    }
    .category-card:hover img { transform: scale(1.1); }
    .category-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 20px;
      color: white;
    }
    .category-overlay h5 { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
    .btn-pink {
      background: linear-gradient(95deg, #e6397c, #ff8cb0);
      border: none;
      color: white;
      font-weight: 600;
      border-radius: 40px;
      padding: 10px 26px;
      transition: 0.4s;
    }
    .btn-pink:hover { transform: scale(1.03); box-shadow: 0 8px 18px #e6397c60; color: white; }
    .testimonial-card {
      background: white;
      border-radius: 28px;
      padding: 24px;
      text-align: center;
      box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    }
    #countdown { font-weight: 800; font-size: 2rem; letter-spacing: 4px; }
    #backToTop {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: #e6397c;
      border-radius: 50%;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      cursor: pointer;
      opacity: 0;
      transition: 0.4s;
      z-index: 99;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    .loader-wrapper {
      position: fixed;
      top:0; left:0; width:100%; height:100%;
      background: #ffc0db;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.5s;
    }
    .loader {
      width: 60px;
      height: 60px;
      border: 6px solid white;
      border-top: 6px solid #e6397c;
      border-radius: 50%;
      animation: spin 0.9s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    footer a {
      text-decoration: none;
      transition: 0.2s;
    }
    footer a:hover { color: #ff80a6 !important; }
    .social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      margin: 0 6px;
      color: white;
      font-size: 1.2rem;
      transition: none;
    }
    .social-icon:hover {
      background: #e6397c;
      color: white;
      transform: none;
      box-shadow: none;
    }
    @media (max-width: 992px) { .hero-title { font-size: 2rem; } .product-img { height: 240px; } }
    @media (max-width: 768px) { .category-card { height: 170px; } }
    .filter-btn {
      background: #fce4ec;
      border-radius: 30px;
      padding: 6px 20px;
      margin: 5px;
      cursor: pointer;
      transition: 0.3s;
      display: inline-block;
      font-weight: 500;
    }
    .filter-btn.active, .filter-btn:hover { background: #e6397c; color: white; }
    .modal-img-big { width: 100%; border-radius: 20px; object-fit: contain; max-height: 85vh; background: #f8f9fa; }
    .view-detail-btn {
      position: absolute;
      bottom: 70px;
      left: 12px;
      background: rgba(0,0,0,0.7);
      color: white;
      border: none;
      border-radius: 30px;
      padding: 5px 12px;
      font-size: 0.75rem;
      opacity: 0;
      transition: 0.3s;
      backdrop-filter: blur(4px);
    }
    .product-card:hover .view-detail-btn { opacity: 1; }
    .modal-close-custom {
      position: absolute;
      top: -15px;
      right: -15px;
      background: white;
      border-radius: 50%;
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      cursor: pointer;
      border: 2px solid #e6397c;
      color: #e6397c;
      transition: 0.2s;
      z-index: 1060;
    }
    .modal-close-custom:hover { background: #e6397c; color: white; }
    @media (max-width: 768px) {
      .modal-close-custom { top: 5px; right: 5px; width: 35px; height: 35px; font-size: 1rem; }
    }
    [data-filter-item] { transition: all 0.3s; }

    /* Category Banner */
    .category-banner {
      background: linear-gradient(135deg, #ffb8d6, #ffe6f0);
      border-radius: 2rem;
      padding: 2.5rem;
      text-align: center;
      margin-bottom: 2rem;
    }
    .category-banner h1 {
      color: #c72862;
      font-weight: 700;
    }
    .category-banner p {
      color: #4a2e38;
      font-size: 1.1rem;
    }



  .category-banner {
    background: linear-gradient(135deg, #4a90d9, #6cb2eb);
    border-radius: 2rem;
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  .category-banner h1 {
    color: #ffffff;
    font-weight: 700;
  }
  .category-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
  }

