/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Top Bar */
.top-bar {
    background: #000;
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Header */
.header {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: #000;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #666;
}

.header-icons {
    display: flex;
    gap: 1.5rem;
}

.header-icons a {
    color: #000;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.header-icons a:hover {
    color: #666;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h2 {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #000;
}

.hero-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #000;
    color: white;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #000;
    border: 1px solid #000;
}

.btn-secondary:hover {
    background: #000;
    color: white;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 400px;
    height: 400px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #ddd;
}

/* Latest Arrivals Banner */
.latest-arrivals-banner {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.latest-arrivals-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/baner/Whisk_373b5d4e39.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.latest-arrivals-banner .container {
    position: relative;
    z-index: 2;
}

.latest-arrivals-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.latest-arrivals-banner p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.latest-arrivals-banner .btn {
    font-size: 1.1rem;
    padding: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* New Arrivals Section */
.new-arrivals {
    padding: 4rem 0;
    background: white;
}

.new-arrivals h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #000;
}

.products-carousel {
    position: relative;
    margin-bottom: 3rem;
}

.carousel-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
}

.carousel-slide {
    min-width: 100%;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background: white;
    transition: transform 0.3s ease;
}

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

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8f9fa;
    margin-bottom: 1rem;
}

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

.product-img-main {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
}

.product-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card:hover .product-img-main {
    opacity: 0;
}

.product-card:hover .product-img-hover {
    opacity: 1;
}

.product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #f0f0f0;
    color: #000;
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
}

.product-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-heart:hover {
    background: #000;
    color: white;
}

.product-info h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.price {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: -20px;
    right: -20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.carousel-btn:hover {
    background: #000;
    color: white;
    border-color: #000;
}

.see-all-btn {
    text-align: center;
}

/* Promotional Banners */
.promotional-banners {
    padding: 4rem 0;
    background: white;
}

.banners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.banner {
    background: #f8f9fa;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.banner:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-tag {
    display: inline-block;
    background: #000;
    color: white;
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.banner-image {
    margin-top: 1rem;
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

/* About Section */
.about {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #000;
}

.about-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.scroll-indicator {
    font-size: 1.5rem;
    color: #999;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Product Carousel Sections */
.product-carousel-section {
    padding: 4rem 0;
    background: white;
}

.product-carousel-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #000;
}

.product-carousel-section .products-carousel {
    position: relative;
    margin-bottom: 3rem;
}

.product-carousel-section .carousel-container {
    overflow: hidden;
}

.product-carousel-section .carousel-track {
    display: flex;
    transition: transform 0.3s ease;
}

.product-carousel-section .carousel-slide {
    min-width: 100%;
}

.product-carousel-section .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-carousel-section .product-card {
    background: white;
    transition: transform 0.3s ease;
}

.product-carousel-section .product-card:hover {
    transform: translateY(-5px);
}

.product-carousel-section .product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8f9fa;
    margin-bottom: 1rem;
}

.product-carousel-section .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.product-carousel-section .product-img-main {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
}

.product-carousel-section .product-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-carousel-section .product-card:hover .product-img-main {
    opacity: 0;
}

.product-carousel-section .product-card:hover .product-img-hover {
    opacity: 1;
}

.product-carousel-section .product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #000;
    color: white;
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
}

.product-carousel-section .product-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-carousel-section .product-heart:hover {
    background: #000;
    color: white;
}

.product-carousel-section .product-info h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.product-carousel-section .price {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
}

.product-carousel-section .carousel-controls {
    position: absolute;
    top: 50%;
    left: -20px;
    right: -20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.product-carousel-section .carousel-btn {
    width: 50px;
    height: 50px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.product-carousel-section .carousel-btn:hover {
    background: #000;
    color: white;
    border-color: #000;
}

.product-carousel-section .see-all-btn {
    text-align: center;
}

/* Brands Carousel Section */
.brands-carousel-section {
    padding: 4rem 0;
    background: white;
}

.brands-carousel-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #000;
}

.brands-carousel {
    position: relative;
    margin-bottom: 3rem;
}

.brands-carousel .carousel-container {
    overflow: hidden;
}

.brands-carousel .carousel-track {
    display: flex;
    transition: transform 0.3s ease;
}

.brands-carousel .carousel-slide {
    min-width: 100%;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
    padding: 2rem;
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #000;
    text-decoration: none;
    color: #000;
}

.brand-logo {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.brand-card:hover .brand-logo img {
    filter: grayscale(0%);
}

.brand-name {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brands-carousel .carousel-controls {
    position: absolute;
    top: 50%;
    left: -20px;
    right: -20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.brands-carousel .carousel-btn {
    width: 50px;
    height: 50px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.brands-carousel .carousel-btn:hover {
    background: #000;
    color: white;
    border-color: #000;
}

.brands-carousel-section .see-all-btn {
    text-align: center;
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.blog-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #000;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

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

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

.blog-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #666;
}

.blog-category {
    background: #000;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.blog-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #666;
}

.blog-cta {
    text-align: center;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.contact-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    width: 100%;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    border: 1px solid #f0f0f0;
    min-width: 140px;
    justify-content: center;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-decoration: none;
    color: #333;
}

.contact-method i {
    font-size: 1.2rem;
    color: #007bff;
}

.contact-method span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.faq-section p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #666;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}



/* Footer */
.footer {
    background: #f8f9fa;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #000;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #333;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    text-align: center;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        max-width: 92%;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .latest-arrivals-banner h2 {
        font-size: 2.5rem;
    }
    
    .latest-arrivals-banner p {
        font-size: 1rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-carousel-section .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .brand-card {
        padding: 1.5rem;
    }
    
    .brand-logo {
        width: 100px;
        height: 60px;
    }
    
    .banners-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    

    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 95%;
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .latest-arrivals-banner h2 {
        font-size: 2rem;
    }
    
    .latest-arrivals-banner p {
        font-size: 0.9rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-carousel-section .product-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .brand-card {
        padding: 1rem;
    }
    
    .brand-logo {
        width: 80px;
        height: 50px;
    }
    
    .brand-name {
        font-size: 0.8rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-method {
        min-width: 200px;
    }
    
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .faq-section p {
        font-size: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .carousel-controls {
        left: -10px;
        right: -10px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .faq-section p {
        font-size: 0.9rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
}

/* Product Clickability Enhancements */
.product-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-heart {
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    position: relative;
}

.product-heart:hover {
    transform: scale(1.2);
}

.product-heart.active {
    color: #e74c3c !important;
}

.product-heart.active i {
    color: #e74c3c !important;
}
