 
        :root {
            --primary-pink: #e91e63;
            --light-pink: #fce4ec;
            --dark-pink: #c2185b;
            --text-dark: #2c2c2c;
            --text-light: #666;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --border-color: #e0e0e0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
        }

        /* Header */
        .header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }
        

        .navbar {
            padding: 1rem 0;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-pink) !important;
            text-decoration: none;
        }

        .navbar-brand i {
            margin-right: 8px;
        }

        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-pink) !important;
        }

        .btn-shop {
            background: var(--primary-pink);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-shop:hover {
            background: var(--dark-pink);
            color: white;
            transform: translateY(-2px);
        }

        @media (max-width: 991.98px) {
        .navbar-collapse {
            max-height: 80vh; /* Adjust as needed */
            overflow-y: auto;
           }
        }


        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
            padding: 120px 0 0px;
            min-height: 600px;
            display: flex;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-content .discount {
            color: var(--primary-pink);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .hero-content p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            max-width: 500px;
        }

        .btn-primary {
            background: var(--primary-pink);
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: var(--dark-pink);
            transform: translateY(-2px);
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
        }

        /* Collections Section */
        .collections {
            padding: 120px;
            background: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title .subtitle {
            color: var(--primary-pink);
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
        }
        @media (min-width: 992px) {
        .collections {
        background: #fff !important;
           }
        }

        /* Filter Tabs */
        .filter-tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: transparent;
            border: 2px solid var(--border-color);
            color: var(--text-light);
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: var(--primary-pink);
            border-color: var(--primary-pink);
            color: white;
        }

        /* Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 3rem;
        }

        /* Enhanced Product Cards */
        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
            height: 100%;
            border: 1px solid #f0f0f0;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-color: var(--primary-pink);
        }

        .product-image {
            position: relative;
            overflow: hidden;
            height: 280px;
            background: var(--light-gray);
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.08);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(45deg, var(--primary-pink), var(--dark-pink));
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            z-index: 2;
            box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
        }

        .product-actions {
            position: absolute;
            top: 15px;
            right: 15px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            opacity: 0;
            transition: all 0.3s ease;
            transform: translateX(10px);
        }

        .product-card:hover .product-actions {
            opacity: 1;
            transform: translateX(0);
        }

        .action-btn {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.95);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-dark);
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
        }

        .action-btn:hover {
            background: var(--primary-pink);
            color: white;
            transform: scale(1.1);
        }

        .product-info {
            padding: 25px 20px;
        }

        .product-info {
           margin-bottom: 16px;
           padding-bottom: 16px; 
}

        .product-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        .stars {
            color: #ffc107;
            font-size: 0.9rem;
        }

        .rating-count {
            color: var(--text-light);
            font-size: 0.85rem;
            font-weight: 500;
        }

        .product-title {
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-dark);
            line-height: 1.4;
            min-height: 50px;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }

        .current-price {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-pink);
        }

        .original-price {
            font-size: 1rem;
            color: var(--text-light);
            text-decoration: line-through;
            font-weight: 500;
        }

        .add-to-cart {
            width: 100%;
            background: linear-gradient(45deg, var(--light-pink), #fce4ec);
            color: var(--primary-pink);
            border: 2px solid transparent;
            padding: 14px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .add-to-cart:hover {
            background: linear-gradient(45deg, var(--primary-pink), var(--dark-pink));
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
        }

        .add-to-cart.added {
            background: linear-gradient(45deg, #4caf50, #45a049);
            color: white;
        }

        /* Size Options */
        .size-options {
            display: flex;
            gap: 8px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .size-option {
            width: 35px;
            height: 35px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
            color: var(--text-dark);
        }

        .size-option:hover,
        .size-option.active {
            border-color: var(--primary-pink);
            background: var(--primary-pink);
            color: white;
            transform: scale(1.05);
        }

        .size-option.unavailable {
            opacity: 0.4;
            cursor: not-allowed;
            position: relative;
        }

        .size-option.unavailable::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 10%;
            right: 10%;
            height: 2px;
            background: #ccc;
            transform: rotate(-45deg);
        }

        /* Color Options */
        .color-options {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            align-items: center;
        }

        .color-option {
            width: 25px;
            height: 25px;
            border-radius: 50%;
            cursor: pointer;
            border: 3px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }

        .color-option:hover,
        .color-option.active {
            border-color: var(--primary-pink);
            transform: scale(1.15);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .color-option.black { background-color: #2c2c2c; }
        .color-option.white { background-color: #ffffff; border: 1px solid #ddd; }
        .color-option.pink { background-color: #ff69b4; }
        .color-option.red { background-color: #dc3545; }
        .color-option.nude { background-color: #f5deb3; }
        .color-option.champagne { background-color: #f7e7ce; }
        .color-option.purple { background-color: #8e44ad; }
        .color-option.navy { background-color: #2c3e50; }

        .color-label {
            font-size: 0.8rem;
            color: var(--text-light);
            margin-left: 5px;
        }

        /* Product Features */
        .product-features {
            display: flex;
            gap: 8px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .feature-tag {
            background: var(--light-pink);
            color: var(--primary-pink);
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .feature-tag.comfort {
            background: #e8f5e8;
            color: #4caf50;
        }

        .feature-tag.premium {
            background: #fff3e0;
            color: #ff9800;
        }

        .feature-tag.bestseller {
            background: #e3f2fd;
            color: #2196f3;
        }

        /* Material Info */
        .material-info {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 10px;
            font-style: italic;
        }

        /* Stock Status */
        .stock-status {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 10px;
            font-size: 0.85rem;
        }

        .stock-indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .stock-indicator.in-stock {
            background: #4caf50;
        }

        .stock-indicator.low-stock {
            background: #ff9800;
        }

        .stock-indicator.out-of-stock {
            background: #f44336;
        }

        /* Quick Actions */
        .quick-actions {
            display: flex;
            gap: 8px;
            margin-top: 10px;
        }

        .quick-action-btn {
            flex: 1;
            padding: 8px;
            border: 1px solid var(--border-color);
            background: white;
            border-radius: 6px;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .quick-action-btn:hover {
            border-color: var(--primary-pink);
            color: var(--primary-pink);
        }

        .quick-action-btn.active {
            background: var(--primary-pink);
            color: white;
            border-color: var(--primary-pink);
        }

        /* Special Offers Section */
        .special-offers {
            padding: 80px 0;
            background: var(--light-gray);
        }

        .offer-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

        .offer-card:hover {
            transform: translateY(-5px);
        }

        .offer-image {
            height: 200px;
            overflow: hidden;
        }

        .offer-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .offer-content {
            padding: 20px;
        }

        .offer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .offer-description {
            color: var(--text-light);
            margin-bottom: 15px;
        }

        .btn-offer {
            background: var(--primary-pink);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .btn-offer:hover {
            background: var(--dark-pink);
            color: white;
            transform: translateY(-2px);
        }

        /* Newsletter Section */
        .newsletter {
            background: linear-gradient(135deg, var(--primary-pink) 0%, var(--dark-pink) 100%);
            padding: 80px 0;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .newsletter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('/placeholder.svg?height=400&width=800') center/cover;
            opacity: 0.1;
        }

        .newsletter-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .newsletter h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .newsletter p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 15px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
        }

        .newsletter-form button {
            background: white;
            color: var(--primary-pink);
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Blog Section */
        .blog {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .blog-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-5px);
        }

        .blog-image {
            height: 200px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-content {
            padding: 20px;
        }

        .blog-date {
            color: var(--primary-pink);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .blog-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .blog-excerpt {
            color: var(--text-light);
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .read-more {
            color: var(--primary-pink);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .read-more:hover {
            color: var(--dark-pink);
        }

        /* Footer */
        .footer {
            background: #1a1a1a;
            color: white;
            padding: 60px 0 30px;
        }

        .footer h5 {
            color: var(--primary-pink);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 10px;
        }

        .footer ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer ul li a:hover {
            color: var(--primary-pink);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background: var(--primary-pink);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--dark-pink);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid #333;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #999;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .product-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .filter-tabs {
                justify-content: center;
            }
            
            .filter-btn {
                margin: 5px;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 100px 0 0px;
            }
            
            .hero-content h1 {
                font-size: 1.8rem;
            }
            
            .product-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 15px;
            }
            
            .collections,
            .special-offers,
            .newsletter,
            .blog {
                padding: 60px 0;
            }
        }

        /* Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Shopping Cart Dropdown */
        .btn-cart-toggle {
            background: transparent;
            border: none;
            color: var(--text-dark);
            font-size: 1.2rem;
            position: relative;
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .btn-cart-toggle:hover {
            background: var(--light-pink);
            color: var(--primary-pink);
        }

        .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--primary-pink);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 0.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        .cart-dropdown {
            width: 350px;
            max-height: 400px;
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border-radius: 15px;
            padding: 0;
            overflow: hidden;
        }

        .cart-header {
            background: var(--light-pink);
            padding: 15px 20px;
            border-bottom: 1px solid var(--border-color);
        }

        .cart-header h6 {
            margin: 0;
            color: var(--text-dark);
            font-weight: 600;
        }

        .cart-items {
            max-height: 250px;
            overflow-y: auto;
            padding: 10px 0;
        }

        .empty-cart {
            text-align: center;
            padding: 40px 20px;
            color: var(--text-light);
        }

        .empty-cart i {
            font-size: 2rem;
            margin-bottom: 10px;
            opacity: 0.5;
        }

        .cart-item {
            display: flex;
            align-items: center;
            padding: 10px 20px;
            border-bottom: 1px solid #f0f0f0;
        }

        .cart-item:last-child {
            border-bottom: none;
        }

        .cart-item-image {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            overflow: hidden;
            margin-right: 12px;
        }

        .cart-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-title {
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 5px;
            color: var(--text-dark);
        }

        .cart-item-price {
            color: var(--primary-pink);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .cart-item-remove {
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            padding: 5px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .cart-item-remove:hover {
            background: #ffebee;
            color: #f44336;
        }

        .cart-footer {
            background: var(--light-gray);
            padding: 15px 20px;
            border-top: 1px solid var(--border-color);
        }

        .cart-total {
            text-align: center;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .btn-checkout {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            font-weight: 600;
        }

        /* Mobile Menu Fix */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: white;
                padding: 20px;
                border-radius: 15px;
                margin-top: 15px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                padding: 12px 0;
                border-bottom: 1px solid #f0f0f0;
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
            
            .btn-shop {
                margin-top: 15px;
                display: inline-block;
                text-align: center;
            }
            
            .dropdown {
                margin: 15px 0;
            }
            
            .cart-dropdown {
                position: static !important;
                transform: none !important;
                width: 100%;
                margin-top: 10px;
            }
        }

        /* Notification Styles */
        .notification {
            position: fixed;
            top: 100px;
            right: 20px;
            background: white;
            padding: 15px 20px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 9999;
            transform: translateX(400px);
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary-pink);
        }

        .notification.show {
            transform: translateX(0);
        }

        .notification.success {
            border-left-color: #4caf50;
        }

        .notification.success i {
            color: #4caf50;
        }

        .notification.info {
            border-left-color: #2196f3;
        }

        .notification.info i {
            color: #2196f3;
        }

        .notification i {
            font-size: 1.2rem;
        }
  