:root {
    --primary-gold: #D4AF37;
    --primary-gold-dark: #b5952f;
    --bg-black: #050505;
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --text-white: #f4f4f4;
    --text-gray: #a0a0a0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 100px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.align-center {
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--bg-black);
    border: 1px solid var(--primary-gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--text-white);
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--bg-black);
}

.btn-gold {
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    padding: 8px 20px;
}

.btn-gold:hover {
    background-color: var(--primary-gold);
    color: var(--bg-black);
}

.btn-text {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-text:hover {
    gap: 12px;
}

/* Navigation */
.navbar {
    position: fixed !important;
    /* Force Overlay */
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s;
    padding: 20px 0;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    height: 60px;
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    /* Fallback */
    height: 100dvh;
    /* Mobile full screen fix */
    background: #050505;
    position: relative;
    top: 0;
    /* Ensure it starts at top */
    margin-top: 0;
    /* No margin pushing it down */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Force fit to screen (Stretch) as requested */
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transform: none;
    /* Disable initial scale */
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    animation: none;
    /* Disable KenBurns to prevent cropping */
}

@keyframes kenBurns {
    0% {
        transform: scale(1.05);
        /* Start slightly zoomed */
    }

    100% {
        transform: scale(1.25);
        /* Gentle zoom in */
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Lighter gradient to show the landscape */
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero .subtitle {
    display: block;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1rem;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 9vw, 6rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #ddd;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    /* Moved up slightly */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--text-white);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.scroll-down:hover {
    opacity: 1;
    color: var(--primary-gold);
}

.scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

/* Features */
.features {
    background-color: var(--bg-dark);
    margin-top: -50px;
    /* Overlap effect */
    position: relative;
    z-index: 2;
    padding-top: 50px;
    padding-bottom: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.05);
    /* Slight gold tint */
    border-color: var(--primary-gold);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* About Section */
.bg-dark {
    background-color: var(--bg-dark);
}

.section-subtitle {
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.about h2,
.products h2,
.contact h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-img {
    position: relative;
}

/* About Slider */
.about-slider {
    position: relative;
    width: 100%;
    /* Aspect ratio fallback or rely on content */
    aspect-ratio: 1/1;
    /* Or use min-height if preferred to match image ratio */
    overflow: hidden;
    border-radius: 4px;
}

.about-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.9);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.about-slide.active {
    opacity: 1;
    position: relative;
    /* Keep relative to flow in document if needed, or absolute if explicitly sized container */
}

/* Override absolute for first item to give height if not using aspect-ratio */
.about-slider .about-slide:first-child {
    position: relative;
}

.about-slider .about-slide:not(:first-child) {
    position: absolute;
}

.img-accent {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-gold);
    z-index: -1;
    display: none;
    /* Hidden on mobile by default */
}

@media (min-width: 768px) {
    .img-accent {
        display: block;
    }
}

.about-list {
    list-style: none;
    margin: 30px 0;
}

.about-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-list i {
    color: var(--primary-gold);
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    background: var(--bg-darker);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.3);
}

.product-img {
    height: 300px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s, opacity 0.5s ease;
    /* Ensure images stack properly */
    position: absolute;
    top: 0;
    left: 0;
}

/* Front Image (Default Visible) */
.product-img .img-front {
    z-index: 2;
    opacity: 1;
}

/* Back Image (Default Hidden) */
.product-img .img-back {
    z-index: 1;
    opacity: 0;
}

/* Hover Effects (Desktop) & Tap (Mobile if treated as active/hover) */
/* Scale effect remains for container content */
.product-card:hover .product-img .img-front {
    opacity: 0;
    transform: scale(1.05);
}

.product-card:hover .product-img .img-back {
    opacity: 1;
    transform: scale(1.05);
    z-index: 3;
}

/* General hover scale for single images (like Molido) */
.product-card:hover .product-img img:not(.img-front):not(.img-back) {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-gold);
    color: #000;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-info {
    padding: 30px;
    text-align: center;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 15px 0 25px;
}

.btn-sm {
    padding: 10px 25px;
    border: 1px solid var(--text-gray);
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-sm:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #000;
}

/* Wholesale Parallax */
/* Wholesale Parallax */
.wholesale {
    background: url('assets/images/product-bulk.png') no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.content-relative {
    position: relative;
    z-index: 1;
}

.wholesale h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
}

.wholesale p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.bg-darker {
    background-color: var(--bg-darker);
}

.contact-info .info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item h4 {
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item p {
    color: var(--text-gray);
}

.social-links {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
    border-radius: 50%;
}

.social-links a:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #000;
    transform: translateY(-3px);
}

/* Form */
.contact-form {
    background: var(--bg-dark);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.02);
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-white);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary-gold);
    border: none;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--text-white);
}

/* Footer */
footer {
    background: #000;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    opacity: 0.8;
}

footer p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Animations */
.fade-in,
.fade-in-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-up {
    transform: translateY(30px);
}

.fade-in-left {
    transform: translateX(-50px);
}

.fade-in-right {
    transform: translateX(50px);
}

.visible {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: clamp(3rem, 10vw, 4.5rem);
    }
}

@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background: transparent;
        /* Overlay initially */
    }

    .navbar.scrolled {
        background: rgba(5, 5, 5, 0.95);
    }

    .grid-2,
    .grid-3:not(.product-category .grid-3),
    .grid-4 {
        grid-template-columns: 1fr;
    }

    /* Mobile Product Carousel */
    .product-category .grid-3 {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 30px;
        /* Space for scrollbar or visual padding */
        scroll-snap-type: x mandatory;
        /* Hide Scrollbar but keep functionality */
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE 10+ */
    }

    .product-category .grid-3::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .product-category .product-card {
        min-width: 280px;
        /* Fixed width for cards in carousel */
        flex: 0 0 85%;
        /* Take up most of screen width */
        scroll-snap-align: center;
    }

    .section-padding {
        padding: 60px 0;
    }

    h2 {
        font-size: 2rem !important;
        /* Prevent huge headers */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-darker);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        width: 44px;
        /* Accessible touch target */
        height: 44px;
        align-self: center;
        /* Force vertical center in flex container */
        margin-right: 0;
        font-size: 2rem;
        /* Larger icon */
        color: var(--primary-gold);
        /* Match branding */
        background: transparent;
        cursor: pointer;
    }

    .about-img {
        display: none;
    }

    /* Hide img on mobile for better text focus? Or keep it? keep it but no accents */
    .about-img {
        display: block;
        margin-bottom: 30px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .features {
        margin-top: 0;
        /* Remove overlap on mobile */
        padding-top: 40px;
    }

    .feature-card {
        margin-bottom: 20px;
    }

    /* WhatsApp Button Mobile Fix */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
        /* Ensure it doesn't cover too much */
    }

    /* Hero fix */
    .hero {
        min-height: 100vh;
    }
}

/* --- New Sections Styles --- */

/* Process Section Premium */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

.process-grid {
    margin-top: 80px;
    position: relative;
    padding-bottom: 20px;
}

/* Connector Line (Desktop) */
@media (min-width: 992px) {
    .process-grid::before {
        content: '';
        position: absolute;
        top: 40px;
        /* Adjust based on icon center */
        left: 10%;
        /* Start line a bit in */
        right: 10%;
        /* End line a bit in */
        height: 1px;
        background: linear-gradient(90deg,
                transparent 0%,
                var(--primary-gold) 20%,
                var(--primary-gold) 80%,
                transparent 100%);
        z-index: 0;
        opacity: 0.5;
        box-shadow: 0 0 10px var(--primary-gold);
    }
}

.process-step {
    padding: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: var(--bg-dark);
    /* Matches section bg to hide line */
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Create a mask for the line */
    box-shadow: 0 0 0 15px var(--bg-darker);
    transition: all 0.5s ease;
}

.process-step:hover .process-icon {
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 0 0 15px var(--bg-darker);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(0, 0, 0, 0));
}

.process-icon i {
    font-size: 2rem;
    color: var(--primary-gold);
    transition: transform 0.5s, color 0.3s;
}

.process-step:hover .process-icon i {
    transform: scale(1.15) rotate(5deg);
    color: #fff;
    text-shadow: 0 0 15px var(--primary-gold);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: var(--bg-black);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.process-step:hover .step-number {
    background: var(--primary-gold);
    color: #000;
    transform: scale(1.2);
}

.process-step h4 {
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.process-step:hover h4 {
    color: var(--primary-gold);
}

.process-step p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Stats Section */
.parallax-stats {
    background: url('assets/images/product-bulk.png') no-repeat center center/cover;
    /* Fallback/Reused image */
    background-attachment: fixed;
    position: relative;
    padding: 80px 0;
}

.stat-item {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(5px);
}

.stat-number {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Modern Footer */
.footer-modern {
    background: linear-gradient(to bottom, #080808, #000);
    padding: 80px 0 30px;
    border-top: 2px solid var(--primary-gold);
    /* Gold accent top */
    font-size: 0.95rem;
    color: var(--text-gray);
    position: relative;
}

/* Optional: Gold Glow effect */
.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.footer-content {
    margin-bottom: 60px;
    text-align: center;
    /* Center everything by default */
}

.footer-brand {
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center flex items (logo, social) */
}

.footer-brand .footer-logo {
    height: 70px;
    /* Slightly larger */
    margin-bottom: 20px;
    filter: brightness(1.1);
}

.footer-brand p {
    margin: 25px 0;
    line-height: 1.8;
    opacity: 0.8;
    max-width: 300px;
    /* Limit width for readability if centered */
    margin-left: auto;
    margin-right: auto;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
    /* Center social icons */
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center links in their columns */
}

.footer-links h4,
.contact-list li {
    margin-bottom: 20px;
    font-family: var(--font-heading);
    color: var(--primary-gold);
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-family: var(--font-body);
    margin-bottom: 15px;
    align-items: flex-start;
}

.contact-list i {
    color: var(--primary-gold);
    margin-top: 4px;
}

.footer-newsletter h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

/* Decorative underline for titles */
.footer-links h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--primary-gold);
    margin: 10px auto 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-radius: 2px 0 0 2px;
    outline: none;
}

.newsletter-form button {
    background: var(--primary-gold);
    color: #000;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    border-radius: 0 2px 2px 0;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--text-white);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mission & Vision */
.mb-4 {
    margin-bottom: 25px;
}

.mt-4 {
    margin-top: 30px;
}

.mv-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.mv-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-left: 3px solid var(--primary-gold);
    padding: 20px 25px;
    border-radius: 0 4px 4px 0;
    transition: var(--transition);
}

.mv-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.mv-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.mv-header i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    background: rgba(212, 175, 55, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.mv-header h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-white);
}

.mv-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

/* 3D Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
    /* Increased height */
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 2000px;
    /* Increased perspective for less distortion */
    overflow: hidden;
    margin-top: 40px;
}

.carousel-3d {
    position: relative;
    width: 300px;
    /* Slightly wider */
    height: 400px;
    /* Taller */
    transform-style: preserve-3d;
    transition: transform 1s ease-in-out;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    /* Increased Z distance to space them out */
    transform: rotateY(calc(var(--i) * var(--theta, 72deg))) translateZ(var(--radius, 500px));
    background: transparent;
    border-radius: 10px;
    transition: 0.5s;
    user-select: none;
    /* Removed reflection for flip effect compatibility or adjusted later */
    transform-style: preserve-3d;
    /* Essential for flipping */
}

/* Flip Effect Container - Hover handled by inner faces */

/* Faces container sizing */
.product-face {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 350px !important;
    /* Force face to be the visual size of product */
    backface-visibility: hidden;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-face.front {
    transform: rotateY(0deg);
    z-index: 2;
}

.product-face.back {
    transform: rotateY(180deg);
    position: relative;
    /* Context for overlay */
    height: 350px !important;
    /* Explicitly ensure back face is also 350px */
}

.carousel-item:hover .product-face.front {
    transform: rotateY(-180deg);
}

.carousel-item:hover .product-face.back {
    transform: rotateY(0deg);
}


/* Fix for all images in carousel, whether inside a face or direct */
.carousel-item>img,
.product-face img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    /* Allow natural aspect ratio */
    max-width: 100%;
    /* Constrain to container width */
    height: 350px;
    /* Force consistent height */
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

/* Adjust back image size to match front image visual scale */
.product-face.back img {
    height: 270px;
    /* Reduced from 350px because photo is cropped tighter */
    width: auto;
}





.bag-label-overlay {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 60% !important;
    /* Adjust based on bag size */
    height: auto !important;
    transform: translate(-50%, -50%);
    object-fit: contain !important;
    filter: none !important;
    /* No drop shadow on the sticker itself, usually */
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
    mix-blend-mode: normal;
    /* Labels are usually stickers, so they cover */
}

.carousel-caption {
    position: absolute;
    bottom: 0px;
    /* Slight offset if needed */
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 1;
    z-index: 10;
    /* Ensure it stays above faces */
    transform: translateZ(20px);
    /* Push it forward in 3D space so faces don't clip it */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.6) 80%, transparent 100%);
    padding: 20px 10px 10px;
    border-radius: 0 0 10px 10px;
    border: none;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    pointer-events: none;
    /* Let clicks pass through if needed, but button needs clicks */
}

.carousel-caption a {
    pointer-events: auto;
    /* Re-enable clicks for the button */
}

/* Remove hover dependency and z-index hack */
.carousel-item:hover .carousel-caption {
    bottom: 0;
}

.carousel-caption h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--primary-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.carousel-caption p {
    font-size: 0.85rem;
    margin-bottom: 5px;
    color: #ddd;
}

.carousel-caption .price {
    font-weight: bold;
    font-size: 1rem;
    color: #fff;
    display: block;
    margin-bottom: 8px;
    /* Added spacing */
}

.btn-product-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    /* WhatsApp official green */
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-product-wa:hover {
    background: #128C7E;
    /* Darker green */
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

.btn-product-wa i {
    font-size: 1.1rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 100;
    transition: var(--transition);
}

/* Bulk/Wholesale Section */
.bulk-section {
    background-color: #0b0b0b;
    position: relative;
    overflow: hidden;
}

/* Subtle background accent */
.bulk-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.bulk-wrapper {
    position: relative;
    z-index: 1;
}

.bulk-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.bulk-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.bulk-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-gold);
}

.bulk-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    background: rgba(0, 0, 0, 0.3);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.bulk-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-white);
}

.bulk-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

.bulk-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bulk-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.bulk-image:hover img {
    transform: scale(1.05);
}

.bulk-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    border: 1px solid var(--primary-gold);
    padding: 10px 20px;
    border-radius: 4px;
    text-align: center;
    color: var(--primary-gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.bulk-badge span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bulk-badge strong {
    display: block;
    font-size: 1.1rem;
    color: #fff;
}

.bulk-logo-overlay {
    position: absolute;
    width: 20% !important;
    /* Slightly smaller to fit better */
    z-index: 5;
    opacity: 0.85;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4)) contrast(1.2);
    mix-blend-mode: multiply;
    /* Better for "ink on fabric" look */
    pointer-events: none;
}

/* Central Sack */
.logo-1 {
    top: 55%;
    left: 42%;
    transform: translate(-50%, -50%) rotate(-5deg);
}

/* Left Sack */
.logo-2 {
    top: 65%;
    left: 18%;
    transform: translate(-50%, -50%) rotate(5deg) skewY(5deg);
    width: 18% !important;
}

/* Right Sack / Background Sack */
.logo-3 {
    top: 45%;
    left: 65%;
    transform: translate(-50%, -50%) rotate(-10deg) skewX(-5deg);
    width: 16% !important;
}

.bulk-image:hover .bulk-logo-overlay {
    opacity: 1;
}

.carousel-btn:hover {
    background: var(--primary-gold);
    color: #000;
}

.prev {
    left: 10%;
}

.next {
    right: 10%;
}

/* Mobile Adjustments for Carousel */
/* Mobile Adjustments for Carousel: Restoring 3D Desktop Look, Scaled Down */
@media (max-width: 768px) {
    .carousel-container {
        perspective: 600px;
        height: 600px;
        /* Increased vertical space */
        overflow: visible;
        padding-bottom: 20px;
        /* Add breathing room */
    }

    .carousel-section {
        position: relative;
        z-index: 5;
        /* Ensure above bulk section */
    }

    .carousel-3d {
        /* Restore 3D layout */
        width: 200px;
        height: 400px;
        /* Much taller card */
        top: 20px;
        transform-style: preserve-3d !important;
        display: block;
        /* Reset from flex */
        margin: 0 auto;
    }

    .carousel-item {
        /* Restore 3D item placement */
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: rotateY(calc(var(--i) * var(--theta))) translateZ(220px) !important;
        border: none;
        background: transparent;
        border-radius: 10px;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Images scaled down */
    .carousel-item>img,
    .product-face img,
    .product-face {
        height: 240px !important;
        top: 0;
    }

    .product-face.back img {
        height: 200px !important;
    }

    /* Caption: Style matches desktop exactly */
    .carousel-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.5) 80%, transparent);
        padding: 10px 5px;
        border-radius: 0 0 10px 10px;
        border: none;
        box-shadow: none;
        transform: translateZ(20px);
        /* Layering */
        pointer-events: auto !important;
    }

    .carousel-caption h3 {
        font-size: 1rem;
        margin-bottom: 2px;
    }

    .carousel-caption p {
        font-size: 0.8rem;
        margin-bottom: 3px;
    }

    .carousel-caption .price {
        margin-bottom: 5px;
        font-size: 0.95rem;
        display: block;
    }

    .btn-product-wa {
        width: 90%;
        /* Make it wider for easy tapping */
        display: inline-flex;
        justify-content: center;
        /* Center content */
        align-items: center;
        padding: 8px 12px;
        font-size: 0.8rem;
        margin-top: 5px;
        /* Clear space from price */
        white-space: nowrap;
        /* Prevent wrap */
    }

    /* Controls visible */
    .prev,
    .next {
        display: block;
        top: 50%;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1rem;
    }

    .prev {
        left: 5px;
    }

    .next {
        right: 5px;
    }

    /* Hide Inactive Captions for Cleanliness */
    .carousel-item:not(.active) .carousel-caption {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .carousel-item.active .carousel-caption {
        opacity: 1;
        visibility: visible;
    }
}

/* Testimonials Section */
.mb-5 {
    margin-bottom: 50px;
}

.testimonial-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Big Quote Icon Background */
.quote-icon {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.05);
    font-family: var(--font-heading);
    line-height: 1;
    pointer-events: none;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .quote-icon {
    transform: translateY(-5px) scale(1.1);
    color: rgba(212, 175, 55, 0.08);
}

.stars {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #e0e0e0;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    object-fit: cover;
}

.author-info h5 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 2px;
    font-weight: 600;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--primary-gold);
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.7rem;
}

/* WhatsApp Interactive Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* Auto-show animation: 5s total cycle */
    animation: tooltip-auto-show 5s infinite;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #fff;
}

/* Pause animation on widget hover so it doesn't flicker while chatting */
.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 0;
    animation: none;
}

@keyframes tooltip-auto-show {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    5% {
        opacity: 1;
        transform: translateX(0);
    }

    25% {
        opacity: 1;
        transform: translateX(0);
    }

    30% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 0;
        transform: translateX(20px);
    }
}

.whatsapp-chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    transform-origin: bottom right;
}

/* Show chat box on widget hover */
.whatsapp-widget:hover .whatsapp-chat-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: #128C7E;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: #fff;
}

.chat-info {
    display: flex;
    flex-direction: column;
}

.chat-title {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}

.chat-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
}

.chat-body {
    padding: 15px;
    background: #f0f2f5;
}

#wa-msg {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin-bottom: 10px;
    resize: none;
    outline: none;
    color: #333;
}

#wa-msg:focus {
    border-color: #128C7E;
}

.btn-chat-send {
    width: 100%;
    background: #25D366;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-chat-send:hover {
    background: #128C7E;
}

/* Clients / Logos Section */
/* Clients / Allies Section Premium */
.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: stretch;
    /* Stretch to equal height */
    margin-top: 50px;
}

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    width: 200px;
    border-radius: 8px;
    transition: all 0.4s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.4);
}

.client-logo:hover::before {
    opacity: 1;
}

.client-logo i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    /* Icons now gold by default */
    transition: all 0.4s ease;
    z-index: 1;
}

.client-logo span {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    z-index: 1;
    text-align: center;
}

.client-logo:hover i {
    color: var(--primary-gold);
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.client-logo:hover span {
    color: var(--text-white);
    letter-spacing: 2px;
}

/* --- Pages (Legal & FAQ) --- */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.6), var(--bg-black)), url('assets/images/hero_roasted.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-bottom: 0;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    ;
    color: var(--text-white);
    margin-top: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.page-header .section-subtitle {
    margin-bottom: 10px;
    opacity: 0.9;
}

.legal-content {
    background: var(--bg-black);
    padding: 60px 0 100px;
    position: relative;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-dark);
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.legal-content h2,
.legal-content h3 {
    color: var(--primary-gold);
    font-family: var(--font-heading);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h2 {
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding-bottom: 15px;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--text-white);
}

.legal-content p,
.legal-content li {
    font-size: 1.05rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 20px;
    margin-bottom: 30px;
}

.legal-content li::marker {
    color: var(--primary-gold);
}

.legal-content strong {
    color: var(--text-white);
}

/* FAQ Specifics */
.faq-accordion details {
    background: var(--bg-darker);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.faq-accordion details[open] {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.02);
}

.faq-accordion summary {
    padding: 25px;
    cursor: pointer;
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 1.2rem;
    position: relative;
    list-style: none;
    transition: color 0.3s;
    outline: none;
}

.faq-accordion summary:hover {
    color: var(--primary-gold);
}

.faq-accordion summary::-webkit-details-marker {
    display: none;
}

.faq-accordion summary::after {
    content: '\f078';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 25px;
    color: var(--primary-gold);
    transition: transform 0.3s;
    transform: rotate(0deg);
    /* Explicit start state */
}

/* Fix for rotation state */
.faq-accordion details[open] summary::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 30px;
    color: var(--text-gray);
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5px;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .content-container {
        padding: 30px 20px;
    }

    .page-header {
        padding: 140px 0 60px;
    }
}

/* Coffee Smoke Animation */
.smoke-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Behind content but above bg */
    pointer-events: none;
    overflow: hidden;
}

.vapor {
    position: absolute;
    bottom: -100px;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 200, 200, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    animation: rise 15s infinite ease-in;
}

/* Individual Vapor instances randomization */
.vapor:nth-child(1) {
    left: 10%;
    width: 400px;
    height: 400px;
    animation-duration: 22s;
    animation-delay: 0s;
}

.vapor:nth-child(2) {
    left: 30%;
    width: 250px;
    height: 250px;
    animation-duration: 18s;
    animation-delay: 2s;
}

.vapor:nth-child(3) {
    left: 50%;
    width: 350px;
    height: 350px;
    animation-duration: 25s;
    animation-delay: 5s;
}

.vapor:nth-child(4) {
    left: 70%;
    width: 300px;
    height: 300px;
    animation-duration: 20s;
    animation-delay: 1s;
}

.vapor:nth-child(5) {
    left: 90%;
    width: 450px;
    height: 450px;
    animation-duration: 28s;
    animation-delay: 4s;
}

.vapor:nth-child(6) {
    left: 20%;
    width: 200px;
    height: 200px;
    animation-duration: 15s;
    animation-delay: 8s;
}

.vapor:nth-child(7) {
    left: 60%;
    width: 500px;
    height: 500px;
    animation-duration: 30s;
    animation-delay: 10s;
}

.vapor:nth-child(8) {
    left: 80%;
    width: 300px;
    height: 300px;
    animation-duration: 24s;
    animation-delay: 12s;
}

.vapor:nth-child(9) {
    left: 40%;
    width: 280px;
    height: 280px;
    animation-duration: 19s;
    animation-delay: 15s;
}

.vapor:nth-child(10) {
    left: 5%;
    width: 350px;
    height: 350px;
    animation-duration: 26s;
    animation-delay: 7s;
}

@keyframes rise {
    0% {
        transform: translateY(100vh) scale(0.8) translateX(0);
        opacity: 0;
    }

    15% {
        opacity: 0.3;
        /* Visually visible entrance */
    }

    50% {
        opacity: 0.5;
        transform: translateY(50vh) scale(1.2) translateX(30px);
    }

    85% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-20vh) scale(1.5) translateX(-30px);
        opacity: 0;
    }
}


/* --- Custom Cursor --- */
html,
body {
    cursor: none !important;
    /* Hide default cursor */
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    pointer-events: none;
    font-size: 24px;
    color: var(--primary-gold);
    transform: translate(-50%, -50%);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.1s ease, color 0.2s ease;
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.2) rotate(-10deg);
    color: #fff;
    filter: drop-shadow(0 0 5px var(--primary-gold));
}

/* Interactive Cursor Smoke */
.cursor-smoke {
    position: fixed;
    /* High contrast white for visibility */
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 30%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    filter: blur(2px);
    /* Sharper blur for clearer smoke */
    animation: smokeDrift 2s ease-out forwards;
}

@keyframes smokeDrift {
    0% {
        opacity: 0.8;
        /* Higher starting opacity */
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0;
        /* Move UP significantly and expand */
        transform: translate(calc(-50% + var(--drift, 0px)), -120px) scale(3, 4);
    }
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cup-wrapper {
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}

.cup-icon {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.05);
    /* Empty cup color */
    background: linear-gradient(to top, var(--primary-gold) 50%, rgba(255, 255, 255, 0.05) 50%);
    background-size: 100% 200%;
    background-position: 0 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fillCup 2.5s ease-in-out infinite;
}

@keyframes fillCup {
    0% {
        background-position: 0 0;
        /* Empty */
    }

    50% {
        background-position: 0 100%;
        /* Full */
    }

    100% {
        background-position: 0 100%;
        /* Stay full briefly */
    }
}

/* Steam for Preloader */
.steam-loader span {
    position: absolute;
    top: -20px;
    background: #fff;
    /* White steam */
    border-radius: 50%;
    filter: blur(4px);
    width: 6px;
    height: 6px;
    opacity: 0;
    animation: steamRise 2s infinite ease-out;
}

.steam-loader span:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.steam-loader span:nth-child(2) {
    left: 50%;
    animation-delay: 0.5s;
}

.steam-loader span:nth-child(3) {
    left: 80%;
    animation-delay: 1s;
}

@keyframes steamRise {
    0% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }

    30% {
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        transform: translateY(-40px) scale(3);
    }
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInText 1s ease-out forwards 0.5s;
}

@keyframes fadeInText {
    to {
        opacity: 1;
    }
}

.loading-line {
    width: 0;
    height: 3px;
    background: var(--primary-gold);
    margin: 0 auto;
    border-radius: 2px;
    animation: loadLine 2.5s ease-in-out infinite;
    box-shadow: 0 0 15px var(--primary-gold);
}

@keyframes loadLine {
    0% {
        width: 0;
        opacity: 0.5;
    }

    50% {
        width: 120px;
        opacity: 1;
    }

    100% {
        width: 0;
        opacity: 0.5;
        transform: translateX(120px);
        opacity: 0;
    }
}