* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
        
        body {
            /*font-family: 'Montserrat', sans-serif;*/
            /*background: #0a0a0a;
            color: #fff;*/
            overflow-x: hidden;
        }
        
        /* ===== NAVBAR (EXACT IMAGE STYLE) ===== */
        .navbar {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #d4af37;
            /*padding:20px 0;*/
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
        }
        
        /* Logo - EXACT IMAGE STYLE */
       /* .logos {
            font-family: "Rubik Microbe", system-ui;
            font-size: 28px;
            font-weight: 700;
            color: #d4af37;
            letter-spacing: 2px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }*/
        
/*        .logo-icon {
            width: 35px;
            height: 35px;
            background: #d4af37;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-weight: bold;
        }*/
        
        /* Navigation Menu - EXACT CATEGORIES */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            color: #fff;
            text-decoration: none;
            font-size:18px;
            font-weight:bold;
            /*font-family: "Bebas Neue", sans-serif;*/
             font-style: normal;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 10px 0;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #d4af37;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover {
            color: #d4af37;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(20, 20, 20, 0.95);
            backdrop-filter: blur(10px);
            min-width: 220px;
            padding: 15px 0;
            border-radius: 8px;
            border: 1px solid #d4af37;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-item {
            display: block;
            padding: 12px 25px;
            color: #fff;
            text-decoration: none;
            font-size: 13px;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }
        
        .dropdown-item:hover {
            background: rgba(212, 175, 55, 0.1);
            color: #d4af37;
            border-left-color: #d4af37;
            padding-left: 30px;
        }
        
        /* Nav Icons */
        .nav-icons {
            display: flex;
            align-items: center;
            gap: 25px;
        }
        
        .nav-icon {
            color: #fff;
            font-size: 18px;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-icon:hover {
            color: #d4af37;
            transform: translateY(-2px);
        }
        
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #d4af37;
            color: #000;
            font-size: 11px;
            font-weight: bold;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* ===== HERO SECTION (EXACT IMAGE STYLE) ===== */
        /*.hero-section {
            min-height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                        url('img/mango.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 100px;
            position: relative;
            overflow: hidden;
        }*/
        
        .hero-content {
            max-width: 900px;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        /* Elegant perfumes by */
        .hero-subtitle {
            font-size: 18px;
            letter-spacing: 8px;
            color: #d4af37;
            text-transform: uppercase;
            margin-bottom: 20px;
            font-weight: 300;
            opacity: 0;
            animation: fadeInUp 1s ease 0.5s forwards;
        }
        
        /* MAAZ SAFDER FRAGRANCE */
        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 86px;
            font-weight: 700;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.7s forwards;
        }
        
        /* Scentsation of the Scentury! */
        .hero-tagline {
            font-size: 24px;
            color: #d4af37;
            font-style: italic;
            letter-spacing: 3px;
            margin-bottom: 50px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.9s forwards;
        }
        
        /* CTA Buttons */
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            opacity: 0;
            animation: fadeInUp 1s ease 1.1s forwards;
        }
        
        .btn-primary, .btn-secondary {
            padding: 15px 40px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary {
            background: linear-gradient(45deg, #d4af37, #f8de7e);
            color: #000;
            border: none;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }
        
        .btn-secondary {
            background: transparent;
            color: #fff;
            border: 2px solid #d4af37;
        }
        
        .btn-secondary:hover {
            background: #d4af37;
            color: #000;
            transform: translateY(-3px);
        }
        
        /* Animated Elements */
        .floating-perfume {
            position: absolute;
            font-size: 24px;
            color: rgba(212, 175, 55, 0.3);
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-perfume:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .floating-perfume:nth-child(2) {
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }
        
        .floating-perfume:nth-child(3) {
            bottom: 30%;
            left: 15%;
            animation-delay: 4s;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }
        
        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: #d4af37;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0;
            animation: fadeIn 1s ease 1.5s forwards;
        }
        
        .scroll-indicator::after {
            content: '';
            position: absolute;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 40px;
            background: #d4af37;
            animation: scrollBounce 2s infinite;
        }
        
        @keyframes scrollBounce {
            0%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(10px);
            }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .nav-menu {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-title {
                font-size: 60px;
            }
            
            .hero-tagline {
                font-size: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-container {
                padding: 0 20px;
            }
            
            .hero-title {
                font-size: 48px;
            }
            
            .hero-subtitle {
                font-size: 14px;
                letter-spacing: 5px;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-primary, .btn-secondary {
                width: 250px;
                text-align: center;
            }
        }
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f5f0;
    color: #333;
    line-height: 1.6;
}

/*.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}*/

/* Header Styles */
/*.main-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 15px 0;
    text-align: center;
}

.header-top {
    border-bottom: 2px solid #d4af37;
}

.tagline {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: #d4af37;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.slogan {
    font-size: 18px;
    font-style: italic;
    color: #d4af37;
    margin-top: 5px;
}*/

/* Products Section */
/*.products-section {
    margin: 40px 0;
}
*/


/*.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-image {
    height: 250px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.reviews {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.review-count {
    background: #f8f5f0;
    padding: 3px 8px;
    border-radius: 12px;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #2d2d2d;
    margin-bottom: 5px;
    min-height: 45px;
}

.product-volume {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-add-to-cart, .btn-buy-now {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-add-to-cart {
    background: #2d2d2d;
    color: #fff;
}

.btn-add-to-cart:hover {
    background: #d4af37;
    transform: translateY(-2px);
}

.btn-buy-now {
    background: transparent;
    color: #2d2d2d;
    border: 2px solid #d4af37;
}

.btn-buy-now:hover {
    background: #d4af37;
    color: #fff;
    transform: translateY(-2px);
}*/

/* Trending Section */
.section-title {
     font-family: "Bebas Neue", sans-serif;
    font-size: 4rem;
    color:white;
    font-weight: normal;
    text-align: center;
    letter-spacing:2px;
    margin-bottom: 30px;
    position: relative;
     animation: zoomPulse 2.5s ease-in-out infinite;
     /*border: solid red 3px;*/
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: #d4af37;
}
.trending-title {
    color : white ;
}

.trending-title .star {
    color: goldenrod;
    font-size: 22px;
    animation: zoomPulse 1.8s ease-in-out infinite;
}

.trending-title .left-star {
    animation-delay: 0s;
}

.trending-title .right-star {
    animation-delay: 0.4s;
}
@keyframes zoomPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

.trending-section {
    background:black;
    background:linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('img/mango2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    padding-top:40px;
    height:20rem;
    margin: 50px 0;
}

.trending-products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.trending-product h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    margin-bottom: 10px;
    color:white;
}

.trending-product .price {
    font-size:2rem;
    font-weight: 700;
    color: #d4af37;
}

/* Signature Section */
.signature-section {
    background: linear-gradient(rgba(45,45,45,0.9), rgba(45,45,45,0.9)), url('images/signature-bg.jpg');
    background-size: cover;
    color: #fff;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    margin: 50px 0;
}

.signature-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #d4af37;
    margin-bottom: 10px;
}

.signature-tag {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: #fff;
}

.signature-desc {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.8;
}

.btn-signature {
    background: #d4af37;
    color: #2d2d2d;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-signature:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Feedback Section */
.feedback-section {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 50px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feedback-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #2d2d2d;
    margin-bottom: 10px;
}

.feedback-section p {
    color: #666;
    margin-bottom: 30px;
}

.feedback-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.qr-placeholder {
    width: 150px;
    height: 150px;
    background: #f8f5f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 2px dashed #d4af37;
}

.qr-placeholder i {
    font-size: 50px;
    color: #d4af37;
    margin-bottom: 10px;
}

.qr-placeholder span {
    font-size: 12px;
    color: #666;
}

.btn-review {
    background: #2d2d2d;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-review:hover {
    background: #d4af37;
    transform: translateY(-3px);
}


/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    background: #2d2d2d;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
}

.close-cart {
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
}

.cart-items {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid goldenrod;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image img {
    max-width: 70%;
    max-height: 70%;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #d4af37;
    font-weight: 700;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.quantity-btn {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item {
    color: #ff4444;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    margin-top: 5px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.total-price {
    color: #d4af37;
}

.btn-checkout {
    width: 100%;
    padding: 15px;
    background: #d4af37;
    color: #2d2d2d;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
}

.btn-checkout:hover {
    background: #2d2d2d;
    color: #fff;
}

/* Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
}

.cart-overlay.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .trending-products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feedback-content {
        flex-direction: column;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .signature-content h2 {
        font-size: 28px;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
}

