/* --- Treateks Fashion Design System & Styling (Light Blue-White Theme) --- */

:root {
    --bg-main: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #fcfdfe;
    --bg-light-blue: #f5f8fc;
    
    --color-primary: #0f172a; /* Dark Slate for Main Text */
    --color-secondary: #475569; /* Slate for Body Text */
    --color-muted: #64748b; /* Muted Slate */
    
    --accent: #0b3b60; /* Original Deep Blue from Tree Logo */
    --accent-hover: #1e5380; /* Slightly lighter steel blue */
    --accent-glow: rgba(11, 59, 96, 0.06);
    
    --gradient-accent: linear-gradient(135deg, #0b3b60 0%, #1e5380 100%);
    --gradient-hero-glow: radial-gradient(circle, rgba(245, 248, 252, 1) 0%, rgba(255, 255, 255, 1) 100%);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    --container-max-width: 1200px;
    --header-height: 80px;
    --border-light: 1px solid rgba(11, 59, 96, 0.08);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--color-primary);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-darker {
    background-color: var(--bg-light-blue);
}

/* Typography Utility Styles */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.section-desc {
    color: var(--color-secondary);
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 540px;
}

.section-desc-center {
    color: var(--color-secondary);
    font-size: 16px;
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.section-desc-large {
    color: var(--color-secondary);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    gap: 8px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(11, 59, 96, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(11, 59, 96, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
}

.btn-outline:hover {
    border-color: var(--accent-hover);
    background: rgba(11, 59, 96, 0.05);
    color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-whatsapp-header {
    border-color: #25d366;
    color: #25d366;
    background: transparent;
}

.btn-whatsapp-header:hover {
    background: rgba(37, 211, 102, 0.08);
    border-color: #1ebd57;
    color: #1ebd57;
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* --- Header Section --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: var(--border-light);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(11, 59, 96, 0.06);
}

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

/* Header Logo Image */
.logo-link {
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.logo-link:hover {
    transform: translateY(-1px);
}

.header-logo-img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 550;
    color: var(--color-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
}

.lang-btn {
    color: var(--color-secondary);
    padding: 4px 8px;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.lang-btn:hover {
    color: var(--accent);
}

.lang-btn.active {
    color: var(--accent);
    background: rgba(11, 59, 96, 0.05);
}

.lang-divider {
    color: var(--color-muted);
    opacity: 0.4;
    font-weight: 400;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-fast);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero-glow);
    overflow: hidden;
    padding: calc(var(--header-height) + 40px) 0 60px;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    -webkit-filter: blur(120px);
    opacity: 0.08;
    z-index: 1;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: -50px;
    right: 5%;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #3b82f6;
    bottom: -150px;
    left: -100px;
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 650px;
}

.hero-tag {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-size: 60px;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.hero-description {
    font-size: 18px;
    color: var(--color-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

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

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 460px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(11, 59, 96, 0.08);
    border: 6px solid #ffffff;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.hero-image-wrapper:hover img {
    transform: scale(1.03);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--color-muted);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 2px;
    animation: scrollMouse 1.5s infinite;
}

.scroll-text {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted);
}

@keyframes scrollMouse {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* --- Stats Section --- */
.stats-section {
    background: var(--bg-light-blue);
    border-top: var(--border-light);
    border-bottom: var(--border-light);
    padding: 60px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 13px;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
}

/* --- About Section (Typography Focused) --- */
.about-content-full {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.about-highlights {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
}

.highlight-box {
    padding: 30px;
    background: var(--bg-card);
    border-radius: 16px;
    border: var(--border-light);
    box-shadow: 0 4px 20px rgba(11, 59, 96, 0.02);
    transition: var(--transition-smooth);
}

.highlight-box:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(11, 59, 96, 0.06);
}

.highlight-icon {
    width: 54px;
    height: 54px;
    background: rgba(11, 59, 96, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.highlight-icon i {
    font-size: 22px;
    color: var(--accent);
}

.highlight-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-family: var(--font-body);
    color: var(--color-primary);
}

.highlight-box p {
    color: var(--color-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* --- Products Section (With AI Images) --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: var(--border-light);
    padding: 16px;
    box-shadow: 0 4px 20px rgba(11, 59, 96, 0.02);
    transform: perspective(1000px) rotateX(var(--rotateX, 0deg)) rotateY(var(--rotateY, 0deg)) scale3d(1, 1, 1);
    transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.15s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.15s ease;
    transform-style: preserve-3d;
    position: relative;
}

.product-card:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 40px rgba(11, 59, 96, 0.12);
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        300px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
        rgba(11, 59, 96, 0.04),
        transparent 80%
    );
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.5s ease;
    opacity: 0;
}

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

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-icon-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    background: var(--accent);
    border: 3px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(11, 59, 96, 0.2);
}

.product-icon-badge i {
    font-size: 16px;
}

.product-content {
    padding: 0 8px 8px;
}

.product-content h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.product-content p {
    color: var(--color-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 70px;
}

.product-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-link i {
    transition: var(--transition-fast);
}

.product-card:hover .product-link i {
    transform: translateX(4px);
    color: var(--accent-hover);
}

/* --- Sustainability Section (Expanded Grid) --- */
.badges-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    text-align: left;
}

.badge-item {
    display: flex;
    flex-direction: column;
    padding: 35px;
    background: var(--bg-card);
    border-radius: 16px;
    border: var(--border-light);
    box-shadow: 0 4px 20px rgba(11, 59, 96, 0.02);
    transition: var(--transition-smooth);
}

.badge-item:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 12px 30px rgba(11, 59, 96, 0.06);
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: rgba(11, 59, 96, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.badge-icon i {
    font-size: 22px;
    color: var(--accent);
}

.badge-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-family: var(--font-body);
    color: var(--color-primary);
}

.badge-item p {
    color: var(--color-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* --- Contact Section --- */
.contact-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
}

.info-details {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-icon {
    width: 52px;
    height: 52px;
    background: rgba(11, 59, 96, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(11, 59, 96, 0.08);
}

.info-icon i {
    font-size: 20px;
    color: var(--accent);
}

.info-icon .fa-whatsapp {
    color: #25d366;
    background: transparent;
}

.info-text span {
    font-size: 11px;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 4px;
}

.info-text a, .info-text p {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
}

.info-text a:hover {
    color: var(--accent);
}

/* Form Styling */
.form-container {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: var(--border-light);
    box-shadow: 0 15px 40px rgba(11, 59, 96, 0.04);
}

.form-container h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.form-group input, .form-group textarea {
    width: 100%;
    background: #f8fafc;
    border: 1px solid rgba(11, 59, 96, 0.1);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #ffffff;
    box-shadow: 0 0 10px rgba(11, 59, 96, 0.1);
}

.form-group textarea {
    height: 140px;
    resize: none;
}

.form-response {
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.form-response.success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: block;
}

.form-response.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
    display: block;
}

/* --- Floating WhatsApp Button --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: whatsappPulse 2s infinite;
}

.floating-whatsapp:hover {
    background-color: #1ebd57;
    transform: scale(1.08) rotate(10deg);
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: #ffffff;
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    border: var(--border-light);
    box-shadow: 0 4px 15px rgba(11, 59, 96, 0.08);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-fast);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* --- Footer (Light theme to blend with logo white background) --- */
.main-footer {
    background: var(--bg-light-blue);
    border-top: var(--border-light);
    padding: 60px 0 30px;
    color: var(--color-primary);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.footer-logo-img {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--color-secondary);
    font-size: 14px;
    margin-top: 16px;
    max-width: 280px;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
}

.footer-links a {
    font-size: 14px;
    color: var(--color-secondary);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-copyright {
    text-align: right;
    font-size: 13px;
    color: var(--color-muted);
}

/* --- Responsive Designs --- */

@media (max-width: 1024px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        height: 380px;
        max-width: 380px;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .highlight-box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .badges-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-links ul {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        gap: 15px 30px;
    }
    
    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .btn-whatsapp-header {
        display: none;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .badges-grid-large {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    /* Navigation Menu for Mobile */
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: #ffffff;
        z-index: 999;
        transition: var(--transition-smooth);
        padding: 50px 30px;
        border-top: var(--border-light);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .nav-link {
        font-size: 18px;
        color: var(--color-primary);
    }
    
    /* Hamburger Active State */
    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-btn.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* --- Added Dynamic & Animated Styles --- */

/* 1. Hero Video Card style */
.hero-card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 2. Infinite Marquee Styles */
.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 3rem;
    background: var(--accent);
    padding: 24px 0;
    border-top: var(--border-light);
    border-bottom: var(--border-light);
    color: #ffffff;
    position: relative;
    z-index: 10;
}

.marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 3rem;
    min-width: 100%;
    animation: scroll-marquee 25s linear infinite;
}

.marquee__group span {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.9;
}

@keyframes scroll-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 3rem));
    }
}

/* 3. Reveal entrance animations styles */
.reveal-init {
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-zoom {
    transform: scale(0.96);
}

.reveal-active {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* 4. Ken Burns slow pan/zoom loop for all images to make them feel "alive" */
@keyframes kenburns-loop {
    0% {
        transform: scale(1.02) translate(0, 0);
    }
    50% {
        transform: scale(1.14) translate(-2%, -1%);
    }
    100% {
        transform: scale(1.02) translate(0, 0);
    }
}

.product-image-wrapper img, .hero-image-wrapper img {
    animation: kenburns-loop 4s ease-in-out infinite;
    will-change: transform;
}


