
    * { 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;
    }

    .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;
    }

    /* Baby Shop Product Cards */
    .baby-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;
    }
    .baby-product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 28px 36px -12px rgba(0,0,0,0.2);
    }
    .baby-product-card .product-img-wrapper {
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }
    .baby-product-card .product-img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .baby-product-card:hover .product-img { transform: scale(1.07); }
    .baby-product-card .product-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: #e6397c;
      color: white;
      padding: 4px 14px;
      border-radius: 20px;
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
    }
    .baby-product-card .product-actions {
      position: absolute;
      bottom: 12px;
      right: 12px;
      display: flex;
      gap: 8px;
      opacity: 0;
      transition: 0.4s;
    }
    .baby-product-card:hover .product-actions { opacity: 1; }
    .baby-product-card .quick-btn, .baby-product-card .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);
    }
    .baby-product-card .quick-btn:hover, .baby-product-card .wishlist-btn:hover { background: #ff7b9c; color: white; }
    .baby-product-card .product-info {
      padding: 16px;
    }
    .baby-product-card .product-name {
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 4px;
      color: #1e1e2a;
    }
    .baby-product-card .product-brand {
      font-size: 0.8rem;
      color: #6c757d;
      margin-bottom: 6px;
    }
    .baby-product-card .product-description {
      font-size: 0.85rem;
      color: #6c757d;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 8px;
    }
    .baby-product-card .price-container {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 10px;
      flex-wrap: wrap;
    }
    .baby-product-card .price-offer {
      font-size: 1.3rem;
      font-weight: 700;
      color: #e6397c;
    }
    .baby-product-card .price-cancelled {
      font-size: 1rem;
      color: #6c757d;
      text-decoration: line-through;
    }
    .baby-product-card .price-discount {
      background: #ff6b6b;
      color: white;
      padding: 2px 10px;
      border-radius: 20px;
      font-size: 0.7rem;
      font-weight: 600;
    }
    .baby-product-card .btn-add {
      background: linear-gradient(95deg, #e6397c, #ff8cb0);
      border: none;
      color: white;
      font-weight: 600;
      border-radius: 40px;
      padding: 8px 20px;
      transition: 0.4s;
      width: 100%;
    }
    .baby-product-card .btn-add:hover {
      transform: scale(1.02);
      box-shadow: 0 8px 18px #e6397c60;
      color: white;
    }

    /* 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;
    }

    .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; }

    #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) { .baby-product-card .product-img { height: 200px; } }
    @media (max-width: 768px) { .baby-product-card .product-img { height: 180px; } }
    .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; }
    }
