/* =========================================
   VINCENT CITRUS | CSS
   ========================================= */

/* --- Variables --- */
:root {
    --color-primary: #c1a273; /* Gold */
    --color-primary-hover: #b08e5c;
    --color-bg-dark: #131b26; /* Navy Blue */
    --color-bg-darker: #0d1219;
    --color-bg-light: #f8f8f8;
    --color-text-dark: #333333;
    --color-text-light: #e0e0e0;
    --color-white: #ffffff;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-bg-light);
    overflow-x: hidden;
}

textarea {
    resize: vertical;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* --- Unified Media System --- */
.media-frame {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #111821;
    aspect-ratio: 4 / 3;
}
.media-frame-wide { aspect-ratio: 16 / 10; }
.media-frame img, .media-frame video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}
.media-video {
    background: #070a0d;
    overflow: hidden;
}
.media-video video {
    background: #070a0d;
    object-fit: contain !important;
    object-position: center center;
}
.media-video.portrait-video {
    aspect-ratio: 9 / 16;
    max-height: 620px;
}
.media-video.landscape-video {
    aspect-ratio: 16 / 9;
}
.showcase-image > .portrait-video,
.showcase-image > div > .portrait-video,
.showcase-image .media-video.portrait-video video {
    width: 100%;
    height: auto !important;
    max-height: 620px;
    aspect-ratio: 9 / 16;
    object-fit: contain !important;
}
.showcase-image .media-video.landscape-video video {
    height: auto !important;
    aspect-ratio: 16 / 9;
    object-fit: contain !important;
}
.media-video { isolation: isolate; }
.about-media { display: grid; gap: 18px; }
.media-kitchen-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.media-card { min-width: 0; }
.media-card .media-frame { margin-bottom: 14px; }
.media-card h4 { margin-bottom: 0; }
.product-showcase .showcase-image { min-width: 0; }
.product-showcase .showcase-image .media-frame { aspect-ratio: 4 / 3; }
.product-showcase .showcase-image .media-frame + .media-frame { margin-top: 15px; }
.gallery-image .media-frame { aspect-ratio: 4 / 3; border-radius: 0; }
.product-image .media-frame { border-radius: 0; }

/* Prevent horizontal clipping and giant inline media on tablets/desktops */
@media (min-width: 993px) {
    .split-hero { min-height: 760px; height: 100vh; }
    .hero-split-image { min-width: 0; }
    .about-media { max-width: 100%; }
}
@media (max-width: 992px) {
    .media-kitchen-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .split-hero { height: auto; min-height: 900px; padding-top: 110px; padding-bottom: 50px; }
    .hero-split-content { padding: 50px 6%; }
    .hero-split-image { min-height: 520px; }
}
@media (max-width: 768px) {
    .section-padding { padding: 58px 0; }
    .media-kitchen-grid { grid-template-columns: 1fr; }
    .media-frame-wide { aspect-ratio: 16 / 10; }
    .hero-floating-cluster { width: 92%; }
    .hero-split-image { min-height: 420px; }
    .wrapper-emerald { width: 62%; left: 19%; top: 22%; }
    .wrapper-red { width: 47%; left: 0; top: 4%; }
    .wrapper-yellow { width: 52%; right: 0; bottom: 1%; }
    .product-showcase .showcase-image .media-frame { aspect-ratio: 4 / 3; }
}

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

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

.bg-dark {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
}

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

/* --- Typography --- */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.section-desc {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    color: inherit;
    opacity: 0.8;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-darker);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 162, 115, 0.4);
}

.btn-gold {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 8px 20px;
}

.btn-gold:hover {
    background-color: var(--color-bg);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 117, 0.2);
}

.btn-full {
    width: 100%;
}

/* --- Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(19, 27, 38, 0.95); /* Transparent Navy */
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 15px 0;
    background-color: rgba(19, 27, 38, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
}

.logo-vc {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    line-height: 1;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--color-white);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--color-primary);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-white);
    transition: var(--transition);
}

/* --- Hero Section --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Split Hero Section --- */
.split-hero {
    display: flex;
    height: 100vh;
    background-color: var(--color-bg-darker);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    z-index: 10;
    text-align: left;
}

.hero-text-wrapper {
    max-width: 650px;
}

.hero-split-image {
    flex: 1;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-floating-cluster {
    position: relative;
    width: 90%;
    max-width: 600px;
    aspect-ratio: 1; /* Makes it a square container */
    z-index: 2;
}

.floating-wrapper {
    position: absolute;
    display: block;
    aspect-ratio: 1;
    animation: float 6.8s ease-in-out infinite;
    transform-origin: center center;
    will-change: transform;
}


.wrapper-emerald {
    top: 23%;
    left: 21%;
    width: 58%;
    z-index: 3;
    animation-delay: 0s;
}

.wrapper-red {
    top: 5%;
    left: 2%;
    width: 44%;
    z-index: 2;
    animation-delay: -2.2s;
}

.wrapper-yellow {
    bottom: 3%;
    right: 2%;
    width: 49%;
    z-index: 4;
    animation-delay: -4.3s;
}

.floating-lime {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 24px 34px rgba(0,0,0,.42));
    border-radius: 0;
    user-select: none;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-primary) 50%, #d8b88a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 30px rgba(193, 162, 115, 0.2);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-style: italic;
    margin-bottom: 3.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Staggered Animations */
.animate-slide-up-1 { opacity: 0; animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards; }
.animate-slide-up-2 { opacity: 0; animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards; }
.animate-slide-up-3 { opacity: 0; animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards; }
.animate-slide-up-4 { opacity: 0; animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s forwards; }

.btn-glow {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-glow:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Skeleton Placeholder (Fallback) */
.image-skeleton {
    width: 100%;
    height: 400px;
    background-color: #2a3441;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-style: italic;
    border-radius: 4px;
}

/* --- Animations & Professional Enhancements --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.slide-left {
    transform: translateX(-40px);
}

.animate-on-scroll.slide-right {
    transform: translateX(40px);
}

.animate-on-scroll.fade-in {
    transform: translateY(0) scale(0.95);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* --- Products Section --- */
.products-grid, .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card, .gallery-item {
    background-color: var(--color-bg-darker);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.product-card:hover, .gallery-item:hover {
    border-color: rgba(193, 162, 115, 0.2);
}

.product-image .image-skeleton {
    height: 300px;
    border-radius: 0;
    background-color: #2a3441;
    color: #888;
}

.product-image, .gallery-image {
    overflow: hidden;
}

.product-image img, .gallery-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-card:hover .product-image img, .gallery-item:hover .gallery-image img {
    /* static, no scale */
}

.product-info {
    padding: 30px;
    background: linear-gradient(180deg, rgba(13,18,25,0) 0%, rgba(13,18,25,1) 15%);
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.product-name {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* --- Kitchen Section --- */
.kitchen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.kitchen-item {
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    padding-bottom: 15px;
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.kitchen-item:hover {
    /* static, no transform or shadow change */
}

.kitchen-item .image-skeleton {
    height: 250px;
    margin-bottom: 15px;
    background-color: #e0e0e0;
    border-radius: 0;
}

.kitchen-item h4 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Contact Section --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-details .icon {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.contact-details a:hover {
    color: var(--color-primary);
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: stretch;
}

.form-floating-lime {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.6));
    animation: float 6s ease-in-out infinite;
}

.form-lime-1 {
    top: -40px;
    right: -40px;
    width: 160px;
    animation-delay: -1.5s;
}

.form-lime-2 {
    bottom: -30px;
    left: -40px;
    width: 130px;
    animation-delay: -4s;
}

.order-form {
    background-color: var(--color-bg-darker);
    padding: 40px;
    border: none;
    position: relative;
    z-index: 2; /* To sit above the limes if they overlap inward */
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(193, 162, 115, 0.2);
}

.form-message {
    margin-top: 15px;
    font-size: 0.9rem;
    text-align: center;
}

.form-message.success {
    color: #4CAF50;
}

.form-message.error {
    color: #F44336;
}

/* --- Footer --- */
.footer {
    background-color: var(--color-bg-darker);
    color: var(--color-text-light);
    padding: 40px 0 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.footer-content {
    margin-bottom: 30px;
}

.footer-bottom {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* --- Media Queries --- */
@media (max-width: 992px) {
    .split-hero {
        flex-direction: column;
    }
    .hero-split-content {
        padding: 120px 5% 40px;
        text-align: center;
        align-items: center;
    }
    .hero-text-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-split-image {
        width: 100%;
        padding: 40px 0;
    }
    .hero-floating-cluster {
        width: 80%;
    }

    .hero-title { font-size: 3.5rem; }
    .about-grid, .contact-container, .order-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--color-bg-darker);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.5);
    }
    
    .nav-menu.active { left: 0; }
    .nav-list { flex-direction: column; padding: 40px 0; gap: 20px; }
    
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.5rem; }
    .hero-tagline { font-size: 1.2rem; }
}

/* --- Language Switcher --- */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.lang-link {
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.6;
}

.lang-link:hover, .lang-link.active {
    opacity: 1;
    color: var(--color-primary);
}

.lang-divider {
    color: var(--color-white);
    opacity: 0.3;
}

@media (max-width: 768px) {
    .lang-switcher {
        margin-left: 0;
        justify-content: center;
        margin-top: 10px;
    }
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-darker);
    border-top: 1px solid var(--color-primary);
    color: var(--color-white);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-text {
    font-size: 0.9rem;
    max-width: 70%;
}

.cookie-text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 15px;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    border-radius: 2px;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-btn.accept {
    background-color: var(--color-primary);
    color: var(--color-bg-darker);
}

.cookie-btn.accept:hover {
    background-color: var(--color-primary-hover);
}

.cookie-btn.reject {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn.reject:hover {
    background-color: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .cookie-text {
        max-width: 100%;
    }
}

/* --- Language Dropdown with Flags --- */
.lang-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 10px;
}

.lang-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

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

.lang-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.lang-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--color-bg-darker);
    min-width: 140px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
    border: 1px solid rgba(193, 162, 115, 0.2);
    z-index: 1000;
    border-radius: 4px;
    margin-top: 5px;
    overflow: hidden;
}

.lang-menu.show {
    display: block;
}

.lang-menu a {
    color: var(--color-text-light);
    padding: 10px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.lang-menu a:hover {
    background-color: rgba(193, 162, 115, 0.1);
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .lang-dropdown {
        margin-left: 0;
        margin-top: 15px;
    }
    .lang-menu {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
}

/* --- Product Showcase (Alternating Layout) --- */
.product-showcase-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 40px;
}

.product-showcase {
    display: flex;
    align-items: center;
    gap: 50px;
}

.product-showcase:nth-child(even) {
    flex-direction: row-reverse;
}

.showcase-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.showcase-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.product-showcase:hover .showcase-image img {
    /* static, no scale */
}

.showcase-content {
    flex: 1;
    padding: 20px;
}

.showcase-content h3 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.showcase-content .price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-text-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.showcase-content .desc {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    opacity: 0.85;
    margin-bottom: 25px;
}

@media (max-width: 992px) {
    .product-showcase {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .product-showcase, .product-showcase:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }
    
    .showcase-image img {
        height: 300px;
    }
}

/* --- Mega Footer --- */
.mega-footer {
    background-color: var(--color-bg-darker);
    color: var(--color-text-light);
    padding: 60px 0 20px 0;
    border-top: 1px solid rgba(193, 162, 115, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-col .footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--color-text-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    margin-top: 10px;
}

.social-icon:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-darker);
    border-color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Call to action for order page */
.cta-box {
    background: rgba(193, 162, 115, 0.05);
    border: 1px solid rgba(193, 162, 115, 0.2);
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    margin: 40px auto;
    max-width: 600px;
}

/* --- Floating WhatsApp Button --- */
.wa-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

/* --- PayPal Button --- */
.btn-paypal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FFC439;
    color: #003087;
    font-weight: 600;
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
    padding: 15px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(255, 196, 57, 0.3);
}

.btn-paypal svg {
    margin-right: 10px;
    height: 24px;
}

.btn-paypal:hover {
    background-color: #F4B828;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 196, 57, 0.4);
}

/* --- Product Gallery Specifics --- */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.gallery-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item:hover {
    border-color: rgba(193,162,115,0.2);
}

.gallery-image {
    width: 100%;
    height: 250px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-content {
    padding: 30px;
}

.gallery-price {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.5rem;
    margin: 15px 0;
}

.wa-float:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
    box-shadow: 2px 2px 10px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

@media (max-width: 768px) {
    .wa-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }
    .wa-float svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 768px) {
    .form-lime-1 {
        width: 100px;
        top: -30px;
        right: -10px;
    }
    .form-lime-2 {
        width: 80px;
        bottom: -20px;
        left: -10px;
    }
}

/* Form validation */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) { border-color: rgba(244, 67, 54, 0.75); }
.form-consent input[type="checkbox"] { accent-color: var(--color-primary); }


/* Final media polish: preserve the full frame of portrait/landscape videos. */
.media-video { display:flex; align-items:center; justify-content:center; }
.media-video.portrait-video { width:min(100%, 390px); margin-inline:auto; aspect-ratio:9/16; }
.media-video.landscape-video { width:100%; aspect-ratio:16/9; }
.media-video video { width:100%; height:100%; object-fit:contain !important; background:#0b0f14; }
.showcase-image .media-video.portrait-video video,
.showcase-image .media-video.landscape-video video { width:100%; height:100% !important; max-height:none; }


/* Final video frame sizing */
.media-frame.media-video { background:#0b0f14; overflow:hidden; }
.media-frame.media-video.portrait-video { aspect-ratio:9/16; max-width:390px; margin-inline:auto; }
.media-frame.media-video.landscape-video { aspect-ratio:16/9; width:100%; }
.media-frame.media-video > video { width:100%; height:100%; object-fit:contain !important; object-position:center; display:block; }
.gallery-image .media-frame.media-video.portrait-video,
.product-showcase .media-frame.media-video.portrait-video { max-width:100%; }


/* =========================
   FINAL MEDIA / RESPONSIVE POLISH
   ========================= */
.media-frame,
.product-image,
.gallery-image,
.showcase-image {
    min-width: 0;
}

.media-frame {
    contain: layout paint;
}

.media-frame img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

/* Videos must always show the complete frame, especially portrait clips. */
.media-frame.media-video {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b0f14;
}

.media-frame.media-video > video,
.media-video > video,
.showcase-image video {
    display: block;
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center;
    background: #0b0f14;
    border-radius: inherit;
}

.media-frame.media-video.landscape-video,
.media-video.landscape-video {
    aspect-ratio: 16 / 9;
}

.media-frame.media-video.portrait-video,
.media-video.portrait-video {
    width: 100%;
    max-width: 390px;
    aspect-ratio: 9 / 16;
    margin-inline: auto;
}

.media-frame.media-video.landscape-video > video,
.media-video.landscape-video > video {
    height: 100% !important;
}

.media-frame.media-video.portrait-video > video,
.media-video.portrait-video > video {
    height: 100% !important;
}

.product-showcase .showcase-image {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    gap: 15px !important;
    align-content: start;
}

.product-showcase .showcase-image > img,
.product-showcase .showcase-image > figure.media-frame:not(.media-video) {
    width: 100%;
    border-radius: 12px;
}

.product-showcase .showcase-image > img {
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
}

.product-showcase .showcase-image > div:has(> video) {
    min-width: 0;
}

@media (max-width: 768px) {
    .media-frame,
    .product-showcase .showcase-image .media-frame {
        border-radius: 10px;
    }

    .media-frame.media-video.portrait-video,
    .media-video.portrait-video {
        max-width: min(100%, 360px);
    }

    .product-showcase .showcase-image > img {
        aspect-ratio: 4 / 3;
    }
}

/* Avoid images/videos sitting behind animated/overflowing decorations. */
.about-media,
.product-showcase,
.product-card,
.gallery-item {
    min-width: 0;
}

img[loading="lazy"] { content-visibility: auto; }


/* Compact 16:9 treatment for videos that are actually landscape media. */
.media-frame.media-video.video-compact,
.media-video.video-compact {
    width: min(100%, 340px);
    max-width: 340px;
    aspect-ratio: 16 / 9;
    height: auto;
    margin-inline: auto;
    overflow: hidden;
    background: transparent;
}

.media-frame.media-video.video-compact > video,
.media-video.video-compact > video,
.showcase-image video.video-compact {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    aspect-ratio: 16 / 9;
    object-fit: cover !important;
    object-position: center center;
    background: transparent !important;
    display: block;
}

/* Remove oversized inline sizing from compact product videos. */
.product-showcase .showcase-image .video-compact {
    max-height: none !important;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .media-frame.media-video.video-compact,
    .media-video.video-compact {
        width: min(100%, 320px);
        max-width: 320px;
    }
}

@media (max-width: 600px) {
    .media-frame.media-video.video-compact,
    .media-video.video-compact {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16 / 9;
    }

    .media-frame.media-video.video-compact > video,
    .media-video.video-compact > video,
    .showcase-image video.video-compact {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}

/* Product page video cards: compact, proportional and fully responsive */
.product-showcase .showcase-image .media-frame.media-video,
.product-showcase .showcase-image > div:has(> video) {
    width: min(100%, 310px) !important;
    max-width: 310px !important;
    margin-inline: auto;
    overflow: hidden;
    border-radius: 12px;
    background: transparent;
}

.product-showcase .showcase-image .media-frame.media-video.landscape-video,
.product-showcase .showcase-image > div:has(> video.landscape-video) {
    aspect-ratio: 16 / 9;
}

.product-showcase .showcase-image .media-frame.media-video.portrait-video,
.product-showcase .showcase-image > div:has(> video.portrait-video) {
    width: min(100%, 250px) !important;
    max-width: 250px !important;
    aspect-ratio: 9 / 16;
}

.product-showcase .showcase-image .media-frame.media-video > video,
.product-showcase .showcase-image > div > video {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    display: block;
    object-fit: cover !important;
    object-position: center;
    background: transparent !important;
}

@media (max-width: 768px) {
    .product-showcase .showcase-image .media-frame.media-video,
    .product-showcase .showcase-image > div:has(> video) {
        width: min(100%, 300px) !important;
        max-width: 300px !important;
    }

    .product-showcase .showcase-image .media-frame.media-video.portrait-video,
    .product-showcase .showcase-image > div:has(> video.portrait-video) {
        width: min(100%, 220px) !important;
        max-width: 220px !important;
    }
}

@media (max-width: 480px) {
    .product-showcase .showcase-image .media-frame.media-video,
    .product-showcase .showcase-image > div:has(> video),
    .product-showcase .showcase-image .media-frame.media-video.portrait-video,
    .product-showcase .showcase-image > div:has(> video.portrait-video) {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ============================================================
   PRODUCTS UX 2026 — compact grid, less scroll, better rhythm
   ============================================================ */
.products-page .section-header {
    max-width: 980px;
    margin-inline: auto;
}

.products-page .section-header .hero-title {
    margin-bottom: 0;
}

.products-quickbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px auto 0;
}

.products-quickbar span,
.products-quickbar__cta {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: .78rem;
    line-height: 1;
    letter-spacing: .01em;
}

.products-quickbar span {
    color: var(--color-text-dark);
    background: rgba(193, 162, 115, .10);
    border: 1px solid rgba(193, 162, 115, .16);
}

.products-quickbar__cta {
    color: var(--color-bg-darker);
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.products-quickbar__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(0,0,0,.10);
    background: var(--color-primary-hover);
}

.products-page .product-showcase-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px !important;
    margin-top: 30px !important;
}

.products-page .product-showcase,
.products-page .product-showcase:nth-child(even) {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch;
    gap: 0 !important;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(20, 32, 26, .10);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,.74);
    box-shadow: 0 8px 28px rgba(18, 28, 22, .07);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}


.products-page .product-showcase-fresh { grid-column: 2; }
.products-page .product-showcase-last { grid-column: 1; }

.products-page .product-showcase::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), rgba(193,162,115,.25));
}

.products-page .product-showcase:hover {
    transform: translateY(-4px);
    border-color: rgba(193,162,115,.34);
    box-shadow: 0 14px 34px rgba(18, 28, 22, .11);
}

.products-page .showcase-image {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 118px;
    align-items: center;
    gap: 10px !important;
    padding: 12px 12px 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    min-width: 0;
}

.products-page .showcase-image > img,
.products-page .showcase-image > figure.media-frame:not(.media-video) {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 3;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 11px;
    object-fit: cover;
}

.products-page .showcase-image > div:has(> video),
.products-page .showcase-image > figure.media-video {
    width: 100% !important;
    max-width: none !important;
    height: auto;
    min-width: 0;
    margin: 0;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 11px;
    background: transparent !important;
}

.products-page .showcase-image > div:has(> video.landscape-video),
.products-page .showcase-image > figure.media-video.landscape-video {
    aspect-ratio: 16 / 9;
}

.products-page .showcase-image > div:has(> video.portrait-video),
.products-page .showcase-image > figure.media-video.portrait-video {
    width: 100% !important;
    aspect-ratio: 9 / 16;
    max-width: 118px !important;
}

.products-page .showcase-image video,
.products-page .showcase-image .media-frame.media-video > video {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    display: block;
    border-radius: inherit;
    background: transparent !important;
    object-fit: cover !important;
    object-position: center;
}

.products-page .showcase-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1 1 auto;
    padding: 13px 15px 15px !important;
    text-align: left;
}

.products-page .showcase-content h3 {
    margin: 0 0 3px;
    font-size: 1.45rem;
    line-height: 1.15;
}

.products-page .showcase-content .price {
    margin: 0 0 7px;
    font-size: .95rem;
}

.products-page .showcase-content .desc {
    margin: 0 0 12px;
    font-size: .9rem;
    line-height: 1.45;
}

.products-page .showcase-content .btn {
    align-self: flex-start;
    margin-top: auto;
    min-height: 38px;
    padding: 9px 14px;
    font-size: .84rem;
}

.products-order-note {
    margin: 26px auto 0;
    max-width: 980px;
    padding: 12px 16px;
    border: 1px solid rgba(193,162,115,.20);
    border-radius: 12px;
    background: rgba(193,162,115,.06);
    text-align: center;
    color: var(--color-text-dark);
}

.products-order-note p {
    margin: 2px 0;
    font-size: .9rem;
    line-height: 1.45;
}

.products-order-note span {
    opacity: .7;
}

@media (max-width: 1120px) {
    .products-page .product-showcase-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .products-page .product-showcase-fresh,
    .products-page .product-showcase-last { grid-column: 1; }

    .products-page .product-showcase-list {
        grid-template-columns: 1fr;
        gap: 16px !important;
        margin-top: 22px !important;
    }

    .products-page .showcase-image {
        grid-template-columns: minmax(0, 1fr) 106px;
        padding: 10px 10px 0;
        gap: 8px !important;
    }

    .products-page .showcase-image > div:has(> video.portrait-video),
    .products-page .showcase-image > figure.media-video.portrait-video {
        max-width: 106px !important;
    }

    .products-page .showcase-content {
        padding: 11px 12px 13px !important;
    }

    .products-page .showcase-content h3 {
        font-size: 1.3rem;
    }

    .products-page .showcase-content .desc {
        font-size: .86rem;
    }
}

@media (max-width: 480px) {
    .products-page .gallery-section,
    .products-page {
        padding-top: 92px !important;
    }

    .products-page .section-header .hero-title {
        font-size: 2.15rem !important;
        line-height: 1.05;
    }

    .products-page .section-desc {
        font-size: .92rem;
        line-height: 1.45;
    }

    .products-quickbar {
        gap: 6px;
        margin-top: 14px;
    }

    .products-quickbar span,
    .products-quickbar__cta {
        min-height: 31px;
        padding: 6px 9px;
        font-size: .70rem;
    }

    .products-page .showcase-image {
        grid-template-columns: minmax(0, 1fr) 92px;
    }

    .products-page .showcase-image > div:has(> video.portrait-video),
    .products-page .showcase-image > figure.media-video.portrait-video {
        max-width: 92px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .products-page .product-showcase,
    .products-quickbar__cta {
        transition: none;
    }
}

/* ==========================================================
   2026 DEPLOY REDESIGN — BLACK / VC BLUE
   Editorial rhythm inspired by premium Mediterranean brands.
   ========================================================== */
:root {
    --color-primary: #8cab45;
    --color-primary-hover: #a3c15a;
    --color-primary-soft: #c5d982;
    --color-bg-dark: #0a1020;
    --color-bg-darker: #03050a;
    --color-bg-light: #f5f7fb;
    --color-text-dark: #101522;
    --color-text-light: #cbd3e7;
    --color-white: #ffffff;
    --color-border: rgba(116, 146, 255, .19);
    --color-panel: #0d1427;
    --font-heading: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-blue: 0 24px 80px rgba(26, 64, 180, .22);
    --radius-lg: 28px;
    --radius-md: 18px;
    --transition: all .35s cubic-bezier(.2,.8,.2,1);
}

::selection { background: var(--color-primary); color: #fff; }
html { scroll-padding-top: 92px; }
body {
    background: var(--color-bg-darker);
    color: var(--color-text-light);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(circle at 12% 4%, rgba(140,171,69,.13), transparent 30rem),
        radial-gradient(circle at 92% 52%, rgba(40,87,230,.08), transparent 34rem),
        #03050a;
}
.container { width: min(90%, 1320px); max-width: 1320px; }
.section-padding { padding: clamp(76px, 9vw, 138px) 0; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); letter-spacing: -.045em; }
p { letter-spacing: -.012em; }

/* Header */
.header,
.header[style] {
    padding: 13px 0 !important;
    background: rgba(3,5,10,.72) !important;
    border-bottom: 1px solid rgba(255,255,255,.07);
    backdrop-filter: blur(18px) saturate(125%);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
}
.header.scrolled {
    padding: 9px 0 !important;
    background: rgba(3,5,10,.94) !important;
    box-shadow: 0 16px 50px rgba(0,0,0,.28);
}
.nav-container { min-height: 62px; }
.logo img { height: 56px !important; width: 56px !important; object-fit: cover !important; border-radius: 50%; }
.logo-vc { color: var(--color-primary); }
.logo-text { font-size: 1rem; letter-spacing: .16em; }
.nav-list { gap: clamp(14px, 2vw, 30px); }
.nav-link {
    color: rgba(255,255,255,.82);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .09em;
}
.nav-link:hover { color: #fff; }
.btn-gold,
.nav-link.btn-gold {
    border: 1px solid rgba(168,200,95,.5);
    background: rgba(140,171,69,.1);
    color: #fff;
    border-radius: 999px;
    padding: 10px 18px;
}
.btn-gold:hover,
.nav-link.btn-gold:hover { background: var(--color-primary); color: #fff; box-shadow: 0 10px 28px rgba(140,171,69,.25); }
.lang-btn {
    min-height: 38px;
    padding: 8px 11px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 999px;
    background: rgba(255,255,255,.045);
    color: #fff;
}
.lang-menu {
    top: calc(100% + 12px);
    background: #0a1020;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    box-shadow: 0 22px 55px rgba(0,0,0,.4);
    overflow: hidden;
}
.lang-menu a { color: #e9edfa; }
.lang-menu a:hover { background: rgba(140,171,69,.15); color: #fff; }

/* Shared buttons */
.btn {
    border-radius: 999px;
    padding: 14px 26px;
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .095em;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 12px 36px rgba(140,171,69,.22);
}
.btn-primary:hover {
    background: var(--color-primary-hover);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(140,171,69,.34);
}
.btn-primary:focus-visible, .nav-link:focus-visible, .lang-btn:focus-visible, a:focus-visible, button:focus-visible {
    outline: 2px solid var(--color-primary-soft);
    outline-offset: 4px;
}

/* Hero */
.hero,
.split-hero {
    min-height: 100svh;
    background:
        radial-gradient(circle at 72% 42%, rgba(68,107,245,.2), transparent 24rem),
        linear-gradient(115deg, #03050a 0%, #050917 52%, #091228 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
}
.split-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); height: auto; align-items: stretch; }
.split-hero::before,
.hero:not(.split-hero)::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .32;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
}
.hero-split-content { padding: 150px 6vw 90px max(5vw, calc((100vw - 1320px)/2)); justify-content: center; }
.hero-text-wrapper { max-width: 760px; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    color: #c5d982;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.hero-eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--color-primary); }
.hero-title,
.hero .hero-title {
    margin: 0 0 18px;
    font-size: clamp(4rem, 8.7vw, 9.2rem);
    line-height: .83;
    letter-spacing: -.075em;
    font-weight: 800;
    color: #fff;
}
.gradient-text {
    background: linear-gradient(105deg, #fff 20%, #d5e3a6 65%, #a8c85f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    margin-bottom: 14px;
    color: #e7efd2;
    font-size: clamp(1.2rem, 2.15vw, 2.25rem);
    font-weight: 650;
    letter-spacing: -.035em;
}
.hero-tagline { max-width: 620px; margin-bottom: 30px; color: rgba(255,255,255,.62); font-size: clamp(1rem, 1.3vw, 1.22rem); font-style: normal; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-split-image { min-height: 760px; position: relative; display: grid; place-items: center; background: transparent; }
.hero-split-image::after {
    content: '';
    width: min(72%, 590px);
    aspect-ratio: 1;
    position: absolute;
    border: 1px solid rgba(98,133,255,.19);
    border-radius: 50%;
    box-shadow: 0 0 0 74px rgba(140,171,69,.035), 0 0 120px rgba(140,171,69,.16);
}
.hero-floating-cluster { width: min(90%, 680px); height: min(72vh, 690px); z-index: 2; }
.floating-wrapper { filter: drop-shadow(0 36px 44px rgba(0,0,0,.38)); will-change: transform; }
.wrapper-emerald { width: 52%; left: 24%; top: 22%; }
.wrapper-red { width: 43%; left: 2%; top: 5%; }
.wrapper-yellow { width: 44%; right: 1%; bottom: 5%; }

/* Legacy localized hero now uses the same visual language */
.hero:not(.split-hero) { display: grid; place-items: center; padding: 150px 0 90px; text-align: center; }
.hero:not(.split-hero) .hero-overlay {
    position: absolute; inset: 0; opacity: .22;
    background: url('/img/vari_tipi.jpg') center/cover no-repeat;
    mix-blend-mode: luminosity;
}
.hero:not(.split-hero) .hero-content { position: relative; z-index: 2; max-width: 1040px; }
.hero:not(.split-hero) .hero-title { font-size: clamp(4rem, 10vw, 9rem); }
.hero:not(.split-hero) .hero-tagline { margin-left: auto; margin-right: auto; }

/* Ticker */
.brand-ticker {
    position: relative;
    z-index: 4;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: #8cab45;
    color: #fff;
}
.brand-ticker__track {
    display: flex;
    width: max-content;
    animation: vcTicker 26s linear infinite;
}
.brand-ticker__set { display: flex; align-items: center; flex-shrink: 0; }
.brand-ticker__set span {
    display: inline-flex;
    align-items: center;
    gap: 26px;
    padding: 14px 17px;
    font-size: .79rem;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
    white-space: nowrap;
}
.brand-ticker__set span::after { content: '✦'; opacity: .65; font-size: .8em; }
@keyframes vcTicker { to { transform: translateX(-50%); } }

/* Sections */
.about,
.kitchen,
.gallery-section,
.section-padding:not(.bg-dark) { background: #f6f8fc; color: var(--color-text-dark); }
.bg-dark,
.products,
.contact,
.order-page-hero { background: #050914; color: #fff; }
.section-header { margin-bottom: clamp(38px, 5vw, 70px); }
.section-title {
    margin-bottom: 20px;
    color: inherit;
    font-size: clamp(2.5rem, 5vw, 5.5rem);
    line-height: .94;
    font-weight: 800;
    letter-spacing: -.06em;
}
.section-desc { max-width: 760px; color: inherit; opacity: .63; font-size: clamp(1rem, 1.3vw, 1.18rem); line-height: 1.65; }
.about-grid { grid-template-columns: minmax(0,.86fr) minmax(0,1.14fr); gap: clamp(45px, 8vw, 120px); align-items: center; }
.about-text p { font-size: clamp(1rem, 1.32vw, 1.2rem); color: #3f495e; line-height: 1.75; }
.media-frame { border-radius: var(--radius-lg); background: #0a1020; box-shadow: 0 18px 50px rgba(5,8,18,.13); }
.about-media .media-frame:nth-child(2) { width: 78%; margin-left: auto; margin-top: -52px; border: 8px solid #f6f8fc; }

/* Product cards */
.products-grid, .gallery-grid { gap: 18px; }
.product-card, .gallery-item {
    background: #0c1325;
    color: #fff;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: none;
    transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .45s ease, box-shadow .45s ease;
}
.product-card:hover, .gallery-item:hover { transform: translateY(-8px); border-color: rgba(95,132,255,.45); box-shadow: var(--shadow-blue); }
.product-image, .gallery-image { height: auto; aspect-ratio: 4 / 3; overflow: hidden; }
.product-image img, .gallery-image img { width: 100%; height: 100%; object-fit: cover; }
.product-info, .gallery-content { padding: 26px; }
.product-name { margin-bottom: 10px; color: #fff; font-size: clamp(1.4rem, 2vw, 2rem); font-weight: 750; }
.product-price, .gallery-price { color: #a8c85f; font-weight: 800; }
.product-desc { color: rgba(255,255,255,.6); line-height: 1.65; }

/* Kitchen editorial tiles */
.kitchen-grid { gap: 18px; }
.kitchen-item {
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid #e7eaf2;
    box-shadow: 0 14px 40px rgba(19,28,50,.07);
}
.kitchen-item .media-frame { margin: 0; border-radius: 0; box-shadow: none; }
.kitchen-item h4 { margin: 0; padding: 18px 20px 22px; color: #111827; font-size: 1.15rem; }
.kitchen-item:hover { transform: translateY(-6px); box-shadow: 0 22px 52px rgba(19,28,50,.12); }

/* CTA */
.contact { position: relative; overflow: hidden; }
.contact::before { content:''; position:absolute; width:520px; height:520px; border-radius:50%; right:-180px; top:-220px; background:rgba(140,171,69,.18); filter:blur(1px); }
.contact .container { position: relative; z-index: 2; }
.cta-box {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 58px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(116,146,255,.2);
    background: linear-gradient(135deg, rgba(140,171,69,.16), rgba(255,255,255,.025));
    box-shadow: inset 0 1px rgba(255,255,255,.05);
}
.cta-box p { max-width: 760px; margin: 0 auto; color: rgba(255,255,255,.72); font-size: clamp(1rem, 1.4vw, 1.2rem); }

/* Order page */
.order-page-hero { padding: 175px 0 82px; position: relative; overflow: hidden; }
.order-page-hero::after { content:''; position:absolute; width:470px; aspect-ratio:1; right:-100px; top:-180px; border-radius:50%; border:1px solid rgba(140,171,69,.22); box-shadow:0 0 0 80px rgba(140,171,69,.035); }
.order-page-hero .container { position:relative; z-index:2; }
.order-page-hero .hero-title { font-size: clamp(3.5rem, 7vw, 7rem) !important; }
.order-grid { gap: clamp(25px, 5vw, 70px); align-items: center; }
.order-image img { border-radius: var(--radius-lg) !important; box-shadow: 0 22px 58px rgba(7,11,25,.16) !important; }
.contact-form-wrapper,
.contact-form-wrapper[style] {
    padding: clamp(26px, 4vw, 48px) !important;
    border-radius: var(--radius-lg) !important;
    background: #0b1223 !important;
    border: 1px solid rgba(90,124,241,.16);
    box-shadow: 0 26px 80px rgba(2,5,13,.28) !important;
}
.form-group label { color: #dfe5f8; font-size: .78rem; font-weight: 750; letter-spacing: .045em; }
.form-group input, .form-group textarea {
    color: #fff;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 14px 15px;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(140,171,69,.12); background: rgba(255,255,255,.065); }
.form-consent { color: #aeb8d2 !important; }
.form-consent a { color: #b7cf74; text-decoration: underline; }
.form-message { min-height: 26px; margin-top: 12px; }
.form-message.info { color: #c5d982; }
.form-whatsapp-fallback { display:inline-flex; margin-top:10px; color:#c7d2fe; text-decoration:underline; font-weight:700; }
.btn-paypal { border-radius: 999px; }

/* Product detail/list pages */
.products-page,
.products-page .gallery-section { background: #f6f8fc !important; color: #121827; }
.products-page .product-showcase {
    background: #fff;
    border: 1px solid #e8ebf2;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 42px rgba(11,19,37,.07);
}
.products-page .product-showcase::before { background: linear-gradient(90deg, var(--color-primary), rgba(140,171,69,.08)); }
.products-page .product-showcase:hover { border-color: rgba(140,171,69,.33); box-shadow: 0 22px 54px rgba(11,19,37,.11); }
.products-page .showcase-content h3 { color: #111827; }
.products-page .showcase-content .price { color: #7fa33d; }
.products-page .showcase-content .desc { color: #536078; }
.products-quickbar span, .products-quickbar__cta { border-color: rgba(140,171,69,.2) !important; background: rgba(140,171,69,.07) !important; color: #4f6827 !important; }
.products-order-note { border-color: rgba(140,171,69,.2); background: rgba(140,171,69,.06); }

/* Footer */
.mega-footer {
    padding: 84px 0 30px;
    background: #020307;
    border-top: 1px solid rgba(255,255,255,.07);
    color: #fff;
}
.footer-grid { gap: 48px; }
.footer-col h4 { color: #fff; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-col h4::after { background: var(--color-primary); }
.footer-col p, .footer-col ul li { color: rgba(255,255,255,.5); }
.footer-col ul li a { color: rgba(255,255,255,.67); }
.footer-col ul li a:hover { color: #b7cf74; }
.footer-col img { border-radius: 18px; }
.footer-bottom { border-top-color: rgba(255,255,255,.08); color: rgba(255,255,255,.4); }
.social-icon { background: rgba(140,171,69,.12); color: #b7cf74; border: 1px solid rgba(140,171,69,.2); }
.social-icon:hover { background: var(--color-primary); color:#fff; }
.wa-float { box-shadow: 0 12px 34px rgba(0,0,0,.28); }

/* Legal pages */
.legal-page { background: #f6f8fc; color: #1a2233; }
.legal-content { background: #fff; border: 1px solid #e8ebf2; border-radius: var(--radius-lg); box-shadow: 0 14px 44px rgba(12,20,40,.07); }

/* Reveal motion */
.animate-on-scroll { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.animate-on-scroll.slide-left { transform: translate(-36px, 18px); }
.animate-on-scroll.slide-right { transform: translate(36px, 18px); }
.animate-on-scroll.is-visible { opacity: 1; transform: none; }

@media (max-width: 992px) {
    .header, .header[style] { padding: 9px 0 !important; }
    .nav-container { min-height: 56px; }
    .logo img { height: 50px !important; width: 50px !important; }
    .hamburger { display: block; position: relative; z-index: 1002; padding: 8px; }
    .bar { background: #fff; border-radius: 99px; }
    .nav-menu {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100dvh;
        display: grid;
        place-items: center;
        padding: 104px 28px 44px;
        background: rgba(3,5,10,.985);
        transform: translateX(100%);
        transition: transform .42s cubic-bezier(.2,.8,.2,1);
        overflow-y: auto;
    }
    .nav-menu.active { transform: translateX(0); }
    .nav-list { flex-direction: column; gap: 16px; width: min(100%, 440px); }
    .nav-list li { width: 100%; text-align: center; }
    .nav-link { display: block; padding: 11px; font-size: clamp(1.2rem,4vw,1.6rem); letter-spacing: -.02em; text-transform: none; }
    .nav-link.btn-gold { padding: 14px 20px; }
    .lang-dropdown { width: 100%; }
    .lang-btn { width: 100%; justify-content: center; }
    .lang-menu { position: static; width: 100%; margin-top: 8px; box-shadow: none; }
    body.menu-open { overflow: hidden; }

    .split-hero { grid-template-columns: 1fr; min-height: 0; padding-top: 82px; }
    .hero-split-content { padding: 80px 6vw 32px; min-height: 56svh; text-align: center; align-items: center; }
    .hero-eyebrow { justify-content: center; }
    .hero-title, .hero .hero-title { font-size: clamp(4rem, 16vw, 7rem); }
    .hero-tagline { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-split-image { min-height: 480px; }
    .hero-floating-cluster { height: 450px; }
    .about-grid { grid-template-columns: 1fr; gap: 42px; }
    .about-media .media-frame:nth-child(2) { width: 86%; margin-top: -30px; }
    .order-grid { grid-template-columns: 1fr; }
    .order-image { max-width: 720px; margin: 0 auto; }
}

@media (max-width: 700px) {
    .section-padding { padding: 72px 0; }
    .container { width: min(91%, 1320px); }
    .hero:not(.split-hero) { min-height: 88svh; padding-top: 125px; }
    .hero-split-content { min-height: 54svh; padding-top: 62px; }
    .hero-split-image { min-height: 390px; }
    .hero-floating-cluster { width: 94%; height: 360px; }
    .wrapper-emerald { width: 58%; left: 21%; top: 20%; }
    .wrapper-red { width: 48%; left: 0; top: 1%; }
    .wrapper-yellow { width: 49%; right: 0; bottom: 0; }
    .hero-split-image::after { width: 64%; box-shadow: 0 0 0 42px rgba(140,171,69,.03), 0 0 80px rgba(140,171,69,.12); }
    .brand-ticker__set span { padding: 11px 13px; font-size: .68rem; }
    .products-grid, .gallery-grid { grid-template-columns: 1fr; }
    .product-card, .gallery-item, .media-frame, .kitchen-item, .cta-box { border-radius: 21px; }
    .product-info, .gallery-content { padding: 22px; }
    .order-page-hero { padding-top: 130px; }
    .form-floating-lime { display: none; }
    .mega-footer { padding-top: 64px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    .brand-ticker__track { animation: none; }
    .animate-on-scroll { opacity: 1; transform: none; }
}


/* ==========================================================
   CLIENT REVISION 2026-08-26
   - Hero limes grouped closer together
   - Products return to full-width alternating editorial rows
   ========================================================== */

/* Bring the three floating fruits closer without changing their motion language. */
.hero-floating-cluster {
    width: min(84%, 640px);
}
.wrapper-red {
    top: 9%;
    left: 10%;
    width: 45%;
}
.wrapper-emerald {
    top: 21%;
    left: 22%;
    width: 58%;
}
.wrapper-yellow {
    right: 9%;
    bottom: 8%;
    width: 49%;
}

/* Product page: use almost the full viewport and one alternating row per product. */
.products-page .gallery-section > .container {
    width: min(96%, 1680px);
    max-width: 1680px;
}
.products-page .product-showcase-list {
    display: flex !important;
    flex-direction: column !important;
    gap: clamp(28px, 4vw, 58px) !important;
    width: 100%;
    margin-top: 42px !important;
}
.products-page .product-showcase,
.products-page .product-showcase:nth-child(even) {
    display: grid !important;
    grid-template-columns: minmax(0, 1.22fr) minmax(320px, .78fr) !important;
    align-items: stretch !important;
    gap: 0 !important;
    width: 100%;
    min-height: clamp(430px, 35vw, 620px);
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 26px;
}
.products-page .product-showcase:nth-child(even) .showcase-image {
    grid-column: 2;
    grid-row: 1;
}
.products-page .product-showcase:nth-child(even) .showcase-content {
    grid-column: 1;
    grid-row: 1;
}
.products-page .product-showcase-fresh,
.products-page .product-showcase-last {
    grid-column: auto !important;
}
.products-page .showcase-image,
.products-page .product-showcase .showcase-image[style] {
    display: grid !important;
    grid-template-columns: minmax(0, 1.45fr) minmax(150px, .55fr) !important;
    grid-template-rows: 1fr !important;
    align-items: stretch !important;
    gap: 12px !important;
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 12px !important;
    overflow: hidden;
}
.products-page .showcase-image > img,
.products-page .showcase-image > figure.media-frame:not(.media-video),
.products-page .showcase-image > div:has(> video),
.products-page .showcase-image > figure.media-video,
.products-page .showcase-image > div:has(> video.portrait-video),
.products-page .showcase-image > figure.media-video.portrait-video,
.products-page .showcase-image > div:has(> video.landscape-video),
.products-page .showcase-image > figure.media-video.landscape-video {
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    aspect-ratio: auto !important;
    border-radius: 16px !important;
    overflow: hidden;
}
.products-page .showcase-image > img,
.products-page .showcase-image > figure.media-frame:not(.media-video) img,
.products-page .showcase-image video,
.products-page .showcase-image .media-frame.media-video > video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
.products-page .showcase-content {
    justify-content: center;
    padding: clamp(30px, 4vw, 72px) !important;
}
.products-page .showcase-content h3 {
    font-size: clamp(2rem, 3vw, 3.5rem);
    margin-bottom: 10px;
}
.products-page .showcase-content .price {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    margin-bottom: 18px;
}
.products-page .showcase-content .desc {
    max-width: 620px;
    font-size: clamp(.98rem, 1.15vw, 1.12rem);
    line-height: 1.65;
    margin-bottom: 28px;
}

/* Keep translated product galleries visually aligned with the same full-width rhythm. */
.products-page .gallery-grid {
    display: flex !important;
    flex-direction: column;
    gap: clamp(28px, 4vw, 58px) !important;
    margin-top: 42px;
}
.products-page .gallery-grid .gallery-item {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(320px, .78fr);
    min-height: clamp(390px, 32vw, 560px);
    width: 100%;
    border-radius: 26px;
    background: #fff;
    color: #111827;
    border: 1px solid #e8ebf2;
    box-shadow: 0 14px 42px rgba(11,19,37,.07);
}
.products-page .gallery-grid .gallery-item:nth-child(even) .gallery-image {
    grid-column: 2;
    grid-row: 1;
}
.products-page .gallery-grid .gallery-item:nth-child(even) .gallery-content {
    grid-column: 1;
    grid-row: 1;
}
.products-page .gallery-grid .gallery-image {
    aspect-ratio: auto;
    height: 100%;
    min-height: 0;
    padding: 12px;
}
.products-page .gallery-grid .gallery-image .media-frame {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
}
.products-page .gallery-grid .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.products-page .gallery-grid .gallery-content,
.products-page .gallery-grid .gallery-content.text-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(30px, 4vw, 68px);
    text-align: left;
}
.products-page .gallery-grid .product-name { color: #111827; font-size: clamp(2rem, 3vw, 3.25rem); }
.products-page .gallery-grid .product-desc { color: #536078; max-width: 620px; }
.products-page .gallery-grid .gallery-price { color: #7fa33d; margin-bottom: 20px; }

@media (max-width: 992px) {
    .hero-floating-cluster { width: min(82%, 580px); }
    .wrapper-red { left: 10%; top: 8%; }
    .wrapper-yellow { right: 9%; bottom: 8%; }

    .products-page .product-showcase,
    .products-page .product-showcase:nth-child(even),
    .products-page .gallery-grid .gallery-item {
        grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr) !important;
        min-height: 420px;
    }
    .products-page .showcase-image,
    .products-page .product-showcase .showcase-image[style] {
        grid-template-columns: minmax(0, 1.3fr) minmax(120px, .7fr) !important;
    }
}

@media (max-width: 700px) {
    .hero-floating-cluster { width: 86%; height: 350px; }
    .wrapper-red { width: 47%; left: 8%; top: 7%; }
    .wrapper-emerald { width: 59%; left: 21%; top: 20%; }
    .wrapper-yellow { width: 48%; right: 8%; bottom: 7%; }

    .products-page .gallery-section > .container { width: min(92%, 1680px); }
    .products-page .product-showcase-list,
    .products-page .gallery-grid { gap: 22px !important; margin-top: 28px !important; }
    .products-page .product-showcase,
    .products-page .product-showcase:nth-child(even),
    .products-page .gallery-grid .gallery-item {
        display: flex !important;
        flex-direction: column !important;
        min-height: 0;
        border-radius: 22px;
    }
    .products-page .product-showcase:nth-child(even) .showcase-image,
    .products-page .product-showcase:nth-child(even) .showcase-content,
    .products-page .gallery-grid .gallery-item:nth-child(even) .gallery-image,
    .products-page .gallery-grid .gallery-item:nth-child(even) .gallery-content {
        grid-column: auto;
        grid-row: auto;
    }
    .products-page .showcase-image,
    .products-page .product-showcase .showcase-image[style] {
        grid-template-columns: minmax(0, 1.35fr) minmax(88px, .65fr) !important;
        min-height: 300px;
        padding: 9px !important;
        gap: 8px !important;
    }
    .products-page .showcase-content,
    .products-page .gallery-grid .gallery-content,
    .products-page .gallery-grid .gallery-content.text-center {
        padding: 24px !important;
    }
    .products-page .showcase-content h3,
    .products-page .gallery-grid .product-name { font-size: clamp(1.75rem, 9vw, 2.4rem); }
    .products-page .gallery-grid .gallery-image { min-height: 285px; padding: 9px; }
}

/* =========================================================
   PRODUCTS PAGE V3 — clear alternating text/media composition
   1st: text left + photo/video right
   2nd: photo/video left + text right
   Media always fully visible (no aggressive cropping)
   ========================================================= */
.products-page .product-showcase-list {
    gap: clamp(32px, 4.2vw, 68px) !important;
}

.products-page .product-showcase,
.products-page .product-showcase:nth-child(even) {
    grid-template-columns: minmax(310px, .72fr) minmax(0, 1.28fr) !important;
    min-height: clamp(500px, 39vw, 650px) !important;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .09);
    box-shadow: 0 24px 70px rgba(6, 13, 30, .10);
}

/* Odd rows: copy on the left, media on the right. */
.products-page .product-showcase:nth-child(odd) .showcase-content {
    grid-column: 1 !important;
    grid-row: 1 !important;
}
.products-page .product-showcase:nth-child(odd) .showcase-image {
    grid-column: 2 !important;
    grid-row: 1 !important;
}

/* Even rows: media on the left, copy on the right. */
.products-page .product-showcase:nth-child(even) .showcase-image {
    grid-column: 1 !important;
    grid-row: 1 !important;
}
.products-page .product-showcase:nth-child(even) .showcase-content {
    grid-column: 2 !important;
    grid-row: 1 !important;
}

/* Give the media side more room on the alternating rows too. */
.products-page .product-showcase:nth-child(even) {
    grid-template-columns: minmax(0, 1.28fr) minmax(310px, .72fr) !important;
}

.products-page .showcase-image,
.products-page .product-showcase .showcase-image[style] {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    grid-template-rows: 1fr !important;
    gap: clamp(10px, 1vw, 16px) !important;
    align-items: stretch !important;
    min-width: 0;
    min-height: 0;
    height: 100% !important;
    padding: clamp(10px, 1vw, 16px) !important;
    background: linear-gradient(145deg, #070b14 0%, #0a1428 100%);
}

/* Portrait clips get a slightly narrower video column; landscape clips get more width. */
.products-page .showcase-image:has(video.portrait-video) {
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr) !important;
}
.products-page .showcase-image:has(video.landscape-video) {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr) !important;
}

.products-page .showcase-image > img,
.products-page .showcase-image > figure.media-frame:not(.media-video),
.products-page .showcase-image > div:has(> video),
.products-page .showcase-image > figure.media-video,
.products-page .showcase-image > div:has(> video.portrait-video),
.products-page .showcase-image > figure.media-video.portrait-video,
.products-page .showcase-image > div:has(> video.landscape-video),
.products-page .showcase-image > figure.media-video.landscape-video {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
    border-radius: 18px !important;
    background: #050914 !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.055);
}

.products-page .showcase-image > img,
.products-page .showcase-image > figure.media-frame:not(.media-video) > img,
.products-page .showcase-image video,
.products-page .showcase-image .media-frame.media-video > video {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    border-radius: 16px !important;
    background: #050914 !important;
}

.products-page .showcase-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    min-width: 0;
    padding: clamp(38px, 4.2vw, 78px) !important;
    background:
        radial-gradient(circle at 18% 12%, rgba(127,163,61,.07), transparent 34%),
        #ffffff;
}
.products-page .showcase-content h3 {
    max-width: 12ch;
    font-size: clamp(2.25rem, 3.5vw, 4.35rem) !important;
    line-height: .98;
    letter-spacing: -.045em;
}
.products-page .showcase-content .desc {
    max-width: 540px !important;
    font-size: clamp(1rem, 1.1vw, 1.18rem) !important;
    line-height: 1.7 !important;
}

@media (max-width: 1100px) {
    .products-page .product-showcase,
    .products-page .product-showcase:nth-child(even) {
        grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr) !important;
        min-height: 470px !important;
    }
    .products-page .product-showcase:nth-child(even) {
        grid-template-columns: minmax(0, 1.22fr) minmax(280px, .78fr) !important;
    }
    .products-page .showcase-image:has(video.portrait-video) {
        grid-template-columns: minmax(0, 1.12fr) minmax(170px, .88fr) !important;
    }
}

@media (max-width: 760px) {
    .products-page .product-showcase,
    .products-page .product-showcase:nth-child(even) {
        display: flex !important;
        flex-direction: column !important;
        min-height: 0 !important;
    }

    /* On phones lead with the media so both photo and video are immediately visible. */
    .products-page .product-showcase .showcase-image,
    .products-page .product-showcase:nth-child(odd) .showcase-image,
    .products-page .product-showcase:nth-child(even) .showcase-image {
        order: 1 !important;
        min-height: clamp(300px, 92vw, 430px) !important;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    }
    .products-page .product-showcase .showcase-content,
    .products-page .product-showcase:nth-child(odd) .showcase-content,
    .products-page .product-showcase:nth-child(even) .showcase-content {
        order: 2 !important;
    }
    .products-page .showcase-image:has(video.portrait-video) {
        grid-template-columns: minmax(0, 1.12fr) minmax(105px, .88fr) !important;
    }
    .products-page .showcase-image:has(video.landscape-video) {
        grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr) !important;
    }
    .products-page .showcase-content {
        padding: 28px 24px 32px !important;
    }
    .products-page .showcase-content h3 {
        max-width: none;
        font-size: clamp(2rem, 10vw, 2.75rem) !important;
    }
}

@media (max-width: 480px) {
    .products-page .showcase-image,
    .products-page .product-showcase .showcase-image[style] {
        min-height: 270px !important;
        padding: 8px !important;
        gap: 8px !important;
    }
    .products-page .showcase-image:has(video.portrait-video),
    .products-page .showcase-image:has(video.landscape-video) {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    }
}


/* --- WhatsApp assistance bubble --- */
.wa-assist-bubble {
    position: fixed;
    left: 116px;
    bottom: 48px;
    z-index: 99;
    max-width: 300px;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.97);
    color: #17301f;
    border: 1px solid rgba(23, 48, 31, 0.12);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
    font-size: 0.88rem;
    line-height: 1.35;
    font-weight: 650;
    text-decoration: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform .25s ease, box-shadow .25s ease;
}

.wa-assist-bubble::before {
    content: "";
    position: absolute;
    left: -9px;
    bottom: 17px;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.97);
    border-left: 1px solid rgba(23, 48, 31, 0.12);
    border-bottom: 1px solid rgba(23, 48, 31, 0.12);
    transform: rotate(45deg);
}

.wa-assist-bubble:hover,
.wa-assist-bubble:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
    .wa-float {
        left: 20px;
        bottom: 24px;
        width: 56px;
        height: 56px;
    }
    .wa-assist-bubble {
        left: 88px;
        right: 16px;
        bottom: 28px;
        max-width: 250px;
        padding: 10px 13px;
        font-size: 0.78rem;
        border-radius: 14px;
    }
    .wa-assist-bubble::before {
        bottom: 14px;
    }
}


/* --- V20 Responsive language/navigation hardening --- */
/*
   On phones and tablets the language selector lives inside the fullscreen
   navigation. Older mobile rules left a translateX(-50%) on the dropdown
   even after it became position:static, shifting the language list off-screen.
   These rules make the selector a safe, scroll-friendly accordion instead.
*/
@media (max-width: 992px) {
    .nav-menu {
        /* Safe centering: when content is taller than the viewport it starts
           from the top instead of being clipped above/below the scroll area. */
        place-items: initial;
        justify-items: center;
        align-items: start;
        padding-top: calc(88px + env(safe-area-inset-top, 0px));
        padding-right: max(22px, env(safe-area-inset-right, 0px));
        padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
        padding-left: max(22px, env(safe-area-inset-left, 0px));
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .nav-list {
        width: min(100%, 440px);
        margin-block: auto;
        min-width: 0;
    }

    .lang-dropdown {
        width: 100%;
        max-width: 100%;
        margin: 0;
        min-width: 0;
    }

    .lang-btn {
        width: 100%;
        min-height: 46px;
        justify-content: center;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .lang-menu,
    .lang-menu.show {
        position: static;
        inset: auto;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-shadow: none;
    }

    .lang-menu {
        display: block;
        max-height: 0;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        pointer-events: none;
        transition: max-height .3s ease, opacity .2s ease, margin-top .3s ease, visibility 0s linear .3s;
    }

    .lang-menu.show {
        max-height: 320px;
        margin-top: 8px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: max-height .3s ease, opacity .2s ease, margin-top .3s ease;
    }

    .lang-menu a {
        min-height: 44px;
        justify-content: center;
        padding: 10px 14px;
        touch-action: manipulation;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        padding-right: max(16px, env(safe-area-inset-right, 0px));
        padding-left: max(16px, env(safe-area-inset-left, 0px));
    }

    .nav-list {
        gap: 12px;
    }

    .lang-menu a {
        font-size: .95rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lang-menu,
    .lang-menu.show {
        transition: none !important;
    }
}
