/* Whittall Creations - Visual Enhancements v3.0 */

/* ============================================
   PAGE HERO - FIX OVERLAP
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, #2a1a0f 0%, #3d2317 50%, #5d3a2a 100%);
    padding: 100px 30px 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.93 0 3.5-1.57 3.5-3.5S13.93 53 12 53s-3.5 1.57-3.5 3.5S10.07 60 12 60z" fill="%23ffffff" fill-opacity="0.03"/%3E%3C/svg%3E');
    opacity: 0.5;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.page-hero .lead {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Hero Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 20px 50px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero .lead {
        font-size: 1rem;
    }
}

/* ============================================
   SECTION VISIBILITY FIX
   ============================================ */
section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.categories-section,
.featured-products,
.about-preview,
.testimonials-section,
.newsletter-section {
    padding: 80px 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.fade-in-section {
    opacity: 1 !important;
    transform: none !important;
}

/* ============================================
   ENHANCED HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #2a1a0f 0%, #3d2317 40%, #5d3a2a 100%);
    background-image: 
        linear-gradient(rgba(42, 26, 15, 0.85), rgba(42, 26, 15, 0.9)),
        url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"%3E%3Crect fill="%232a1a0f" width="1200" height="800"/%3E%3Cpath fill="%233d2317" d="M0 400h1200v400H0z" opacity="0.5"/%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(42, 26, 15, 0.7), rgba(42, 26, 15, 0.9)),
        url('data:image/svg+xml,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.93 0 3.5-1.57 3.5-3.5S13.93 53 12 53s-3.5 1.57-3.5 3.5S10.07 60 12 60z" fill="%23ffffff" fill-opacity="0.03"/%3E%3C/svg%3E');
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 40px;
    max-width: 800px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    color: #ffffff;
    opacity: 1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    opacity: 1;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicator */
.hero::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(201, 162, 39, 0.5);
    border-radius: 25px;
    animation: scrollIndicator 2s infinite;
}

@keyframes scrollIndicator {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(10px);
    }
}

/* ============================================
   ENHANCED BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #c9a227 0%, #d4af37 50%, #c9a227 100%);
    color: #2a1a0f;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #c9a227;
    transform: translateY(-3px);
}

/* ============================================
   ENHANCED CATEGORY CARDS
   ============================================ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e8e0d5;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.category-card .category-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.category-card .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #3d2317;
    margin: 20px 20px 10px;
    transition: color 0.3s;
}

.category-card:hover h3 {
    color: #8b5a2b;
}

.category-card p {
    color: #666;
    margin: 0 20px 20px;
    font-size: 0.95rem;
}

/* ============================================
   ENHANCED PRODUCT CARDS
   ============================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e8e0d5;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c9a227, #8b5a2b, #c9a227);
    opacity: 0;
    transition: opacity 0.3s;
}

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

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

.product-card .product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.product-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #3d2317;
    margin-bottom: 8px;
}

.product-card .product-category {
    color: #8b5a2b;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.product-card .product-price {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #3d2317;
    font-weight: 600;
}

/* Add to Cart Button on Product Card */
.product-card form {
    padding: 0 25px 25px;
}

.product-card .btn {
    width: 100%;
    padding: 14px;
}

/* Stock Badges */
.stock-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.stock-badge.low {
    background: #fff3cd;
    color: #856404;
}

.stock-badge.out {
    background: #e2e3e5;
    color: #383d41;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: #3d2317;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c9a227, transparent);
}

/* ============================================
   VIEW ALL BUTTON
   ============================================ */
.view-all {
    text-align: center;
    margin-top: 50px;
}

.view-all .btn {
    padding: 16px 50px;
    font-size: 1.1rem;
}

/* ============================================
   ANIMATIONS ON SCROLL
   ============================================ */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: linear-gradient(135deg, #f5f1eb 0%, #e8e0d5 100%);
    padding: 100px 0;
}

.testimonials-section h2 {
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e8e0d5;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: #c9a227;
    opacity: 0.3;
    font-family: 'Cormorant Garamond', serif;
}

.testimonial-stars {
    color: #c9a227;
    font-size: 1.3rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #3d2317;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #3d2317;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #8b5a2b;
    font-size: 0.95rem;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    background: linear-gradient(135deg, #3d2317 0%, #5d3a2a 100%);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.newsletter-section h2 {
    color: #fff;
    margin-bottom: 15px;
    text-align: center !important;
    display: block;
    width: 100%;
}

.newsletter-section h2::after {
    background: linear-gradient(90deg, transparent, #c9a227, transparent);
    margin: 0 auto;
}

.newsletter-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 300px;
    padding: 16px 24px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #c9a227;
    background: rgba(255,255,255,0.15);
}

.newsletter-form .btn {
    padding: 16px 40px;
}

/* ============================================
   ABOUT PREVIEW SECTION
   ============================================ */
.about-preview {
    padding: 100px 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 25px;
}

.about-text h2::after {
    left: 0;
    transform: none;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a4a42;
    margin-bottom: 30px;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

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

/* ============================================
   RESPONSIVE IMPROVEMENTS
   ============================================ */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: 100%;
    }
}

/* ============================================
   LOADING ANIMATION
   ============================================ */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* ============================================
   SMOOTH SCROLL BEHAVIOR
   ============================================ */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f5f1eb;
}

::-webkit-scrollbar-thumb {
    background: #8b5a2b;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b4423;
}
/* Newsletter Centering Fix */
.newsletter-section {
    text-align: center !important;
}

.newsletter-section .container {
    text-align: center !important;
}

.newsletter-section h2,
.newsletter-section p {
    text-align: center !important;
}

.newsletter-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.newsletter-form {
    justify-content: center !important;
    margin: 0 auto !important;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 500px;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.newsletter-form .btn {
    flex-shrink: 0;
}
.shipping-options { display: flex; flex-direction: column; gap: 12px; margin-top: 10px; }
.shipping-option { display: flex; align-items: center; padding: 15px; border: 2px solid #d4c4a8; border-radius: 8px; cursor: pointer; background: #faf8f5; }
.shipping-option.selected { border-color: #8b5a2b; background: #f5f1eb; }
.shipping-name { font-weight: 600; color: #3d2317; }
.shipping-price { font-weight: 700; color: #8b5a2b; font-family: "Cinzel", serif; }

/* ============================================
   FAQ SECTION STYLES
   ============================================ */
.faq-section {
    padding: 80px 30px;
    background: #f5f1eb;
}

.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #3d2317;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d4c4a8;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-category h2 i {
    color: #8b5a2b;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: #fff;
    border: none;
    text-align: left;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #3d2317;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #faf8f5;
}

.faq-question i {
    color: #8b5a2b;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: #3d2317;
}

.faq-cta {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #3d2317 0%, #5d3a2a 100%);
    border-radius: 12px;
    margin-top: 50px;
}

.faq-cta h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.faq-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

.faq-cta .btn {
    background: #c9a227;
    color: #3d2317;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.faq-cta .btn:hover {
    background: #e0c76a;
    transform: translateY(-2px);
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 20px;
    }
    
    .faq-category h2 {
        font-size: 1.3rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 15px;
    }
    
    .faq-cta {
        padding: 40px 20px;
    }
    
    .faq-cta h3 {
        font-size: 1.5rem;
    }
}
