:root {
    --bg-dark: #050505;
    --text-main: #ffffff;
    --text-muted: #aaaaaa;
    --accent: #d4af37; /* A subtle luxury gold/copper accent instead of cyan for a more classic premium feel */
    --accent-light: rgba(212, 175, 55, 0.2);
    --font-main: 'Rubik', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    cursor: none;
    direction: rtl;
}

/* ── Splash Screen ─────────────────────────────────────── */
.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.splash-img-el {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 1;
}

.splash-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.splash-title {
    position: relative;
    z-index: 3;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 700;
    letter-spacing: 0.25em;
    color: #fff;
    margin-top: 8vh;
    text-shadow: 0 4px 30px rgba(0,0,0,0.9);
}

.splash-scroll-hint {
    position: relative;
    z-index: 3;
    margin-bottom: 6vh;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    letter-spacing: 0.15em;
    font-weight: 300;
    animation: scroll-bounce 2.5s ease-in-out infinite;
}

/* ── Fixed Nav ─────────────────────────────────────────── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 4rem;
    transition: background 0.5s ease, padding 0.4s ease;
}

.site-nav.scrolled {
    background: rgba(5, 5, 5, 0.88);
    backdrop-filter: blur(18px);
    padding: 1.2rem 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-brand {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.nav-links a:hover { color: #fff; }

::selection {
    background: var(--accent);
    color: #000;
}

/* Custom Cursor */
.cursor {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    top: 0;
    left: 0;
    transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
    box-shadow: 0 0 6px rgba(255,255,255,0.4);
}

.cursor.hovering {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 12px rgba(255,255,255,0.2);
}

/* ── Hero Section ─────────────────────────────────────── */
.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Video background (replaces static image when hero.mp4 is present) */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.main-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 150% auto;
    background-position: 8% center;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to left, rgba(0,0,0,0.93) 0%, rgba(0,0,0,0.65) 42%, rgba(0,0,0,0.12) 100%),
        radial-gradient(ellipse at 80% 50%, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.5) 100%);
    z-index: -1;
}

/* Film grain texture */
.grain {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 128px;
}

/* Floating Ice Particles */
.particles {
    position: fixed;
    inset: 0;
    z-index: 99;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: -8px;
    background: rgba(200, 235, 255, 0.7);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: particle-float linear infinite;
}

@keyframes particle-float {
    0%   { transform: translateY(0)     rotate(0deg);   opacity: 0; }
    8%   {                                               opacity: 1; }
    92%  {                                               opacity: 1; }
    100% { transform: translateY(-105vh) rotate(400deg); opacity: 0; }
}

/* Morphing Ice Crystal — sits behind the TEXT column (right side) */
.ice-morph-wrap {
    position: fixed;
    width: 100vw;
    height: 65vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.ice-morph {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(170, 225, 255, 0.08) 0%,
        rgba(200, 240, 255, 0.04) 50%,
        rgba(130, 200, 250, 0.06) 100%
    );
    border: 1px solid rgba(190, 230, 255, 0.20);
    box-shadow:
        inset 0 0 60px rgba(160, 220, 255, 0.05),
        0 0 80px rgba(130, 200, 255, 0.08);
    clip-path: polygon(50% 0%, 82% 18%, 100% 50%, 82% 82%, 50% 100%, 18% 82%, 0% 50%, 18% 18%);
    animation: ice-morph-outer 12s ease-in-out infinite;
}

.ice-morph-inner {
    position: absolute;
    inset: 18%;
    background: linear-gradient(
        315deg,
        rgba(210, 245, 255, 0.06) 0%,
        rgba(180, 230, 255, 0.03) 100%
    );
    border: 1px solid rgba(210, 240, 255, 0.12);
    clip-path: polygon(50% 0%, 82% 18%, 100% 50%, 82% 82%, 50% 100%, 18% 82%, 0% 50%, 18% 18%);
    animation: ice-morph-outer 12s ease-in-out infinite reverse;
    animation-delay: -3s;
}

.ice-morph-core {
    position: absolute;
    inset: 38%;
    background: radial-gradient(circle, rgba(230, 248, 255, 0.10) 0%, transparent 70%);
    border: 1px solid rgba(220, 245, 255, 0.15);
    clip-path: polygon(50% 0%, 82% 18%, 100% 50%, 82% 82%, 50% 100%, 18% 82%, 0% 50%, 18% 18%);
    animation: ice-morph-outer 9s ease-in-out infinite;
    animation-delay: -6s;
}

@keyframes ice-morph-outer {
    0%, 100% {
        clip-path: polygon(50% 0%, 82% 18%, 100% 50%, 82% 82%, 50% 100%, 18% 82%, 0% 50%, 18% 18%);
    }
    16% {
        clip-path: polygon(56% 2%, 88% 24%, 98% 54%, 76% 86%, 46% 100%, 12% 78%, 2% 46%, 24% 14%);
    }
    33% {
        clip-path: polygon(44% 4%, 84% 14%, 100% 48%, 86% 84%, 54% 98%, 14% 86%, 0% 52%, 14% 18%);
    }
    50% {
        clip-path: polygon(52% 0%, 80% 22%, 96% 52%, 80% 88%, 48% 100%, 20% 84%, 4% 48%, 22% 16%);
    }
    66% {
        clip-path: polygon(48% 3%, 86% 18%, 100% 46%, 82% 82%, 52% 100%, 16% 82%, 0% 54%, 18% 20%);
    }
    83% {
        clip-path: polygon(53% 1%, 83% 21%, 99% 53%, 79% 85%, 47% 100%, 17% 83%, 1% 47%, 21% 17%);
    }
}

/* Scroll-down indicator */
.scroll-down {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    animation: scroll-bounce 2.5s ease-in-out infinite;
    transition: color 0.3s;
}

.scroll-down:hover { color: rgba(255,255,255,0.9); }

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(7px); }
}

/* Hero grid (was content-grid) */
.hero-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 4rem 4rem;
    align-items: center;
    z-index: 10;
    margin-top: 4rem;
}

/* Text Column */
.text-column {
    padding-left: 4rem;
}

/* Brand Label above headline */
.brand-label {
    font-size: clamp(1.1rem, 1.8vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.35em;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.8rem;
    display: block;
}

/* Word spans for clip-path animation */
.word {
    display: inline-block;
}

.main-headline {
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    background: linear-gradient(110deg, #ffffff 25%, #b8e4ff 48%, #ffffff 55%, #cceeff 75%, #ffffff 90%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ice-shimmer 9s linear infinite;
}

@keyframes ice-shimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.separator {
    width: 60px;
    height: 2px;
    background-color: var(--accent);
    margin-bottom: 2rem;
}

.sub-headline {
    font-size: clamp(1.5rem, 2vw, 2.2rem);
    font-weight: 300;
    line-height: 1.4;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.target-audience {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Fixed lead form tab — sticks to left viewport edge */
.form-tab {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;
    display: flex;
    flex-direction: row;
    align-items: center;
    direction: ltr;
    transition: align-items 0s;
}

.form-tab.expanded {
    align-items: stretch;
}

/* Tab handle */
.form-tab-btn {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0.8rem 0.5rem 0.6rem;
    background: rgba(5, 8, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-left: none;
    border-radius: 0 8px 8px 0;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-main);
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.25s ease, background 0.25s ease,
                border-color 0.25s ease, border-radius 0.35s ease;
    box-shadow: 2px 0 16px rgba(0,0,0,0.5);
}

.form-tab-btn:hover {
    color: #fff;
    background: rgba(5, 8, 15, 0.97);
    border-color: rgba(255, 255, 255, 0.75);
}

.form-tab-label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    font-weight: 400;
    direction: rtl;
}

.form-tab-arrow {
    transition: transform 0.4s ease;
    opacity: 0.6;
    flex-shrink: 0;
}

/* Expanded — stretch to form height, flat right edge */
.form-tab.expanded .form-tab-btn {
    border-radius: 0;
    color: #fff;
    border-color: rgba(255,255,255,0.55);
}

.form-tab.expanded .form-tab-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

/* Slide panel — opens to the right */
.form-slide {
    overflow: hidden;
    max-width: 0;
    opacity: 0;
    overflow-y: auto;
    transition: max-width 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.45s ease;
}

.form-tab.expanded .form-slide {
    max-width: 400px;
    opacity: 1;
}

/* Flat left edge where form meets tab */
.form-tab.expanded .form-container {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left-color: transparent;
}

.form-container {
    background: rgba(4, 6, 10, 0.88);
    backdrop-filter: blur(32px) saturate(1.4);
    -webkit-backdrop-filter: blur(32px) saturate(1.4);
    padding: 2.2rem 2.4rem;
    border-radius: 0 12px 12px 0;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-left: none;
    width: 100%;
    max-width: 400px;
    box-shadow:
        4px 0 32px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(200, 235, 255, 0.08);
    direction: rtl;
    text-align: right;
}

.form-title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
}

.form-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    font-weight: 300;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.input-group {
    position: relative;
}

.input-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--text-main);
    font-family: var(--font-main);
    font-weight: 300;
    text-align: right;
    direction: rtl;
}

.input-group input:focus {
    outline: none;
    border-bottom-color: transparent;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.focus-line {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: width 0.4s ease;
}

.input-group input:focus ~ .focus-line {
    width: 100%;
}

.submit-btn {
    background: var(--text-main);
    color: var(--bg-dark);
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: var(--font-main);
    cursor: pointer;
    margin-top: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════
   PRODUCTS SECTION
═══════════════════════════════════════════════════════ */
.products-section {
    background: transparent;
    padding: 8rem 4rem;
}

.products-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 7rem;
}

.section-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

/* Category Headers */
.category-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.category-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.4;
}

/* Two rows */
.products-row {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.products-row-horeca {
    grid-template-columns: 1fr 1fr 1fr;
}

.products-row-retail {
    grid-template-columns: 1fr 1fr 1fr;
}

/* Product Card */
.product-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #0d0d0f;
    cursor: pointer;
}

.product-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.products-row-horeca .product-img-wrap {
    aspect-ratio: 16 / 10;
}

.products-row-retail .product-img-wrap {
    aspect-ratio: 1 / 1;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.products-row-retail .product-img-wrap img {
    object-fit: contain;
    background-color: #0d0d0f;
}

img.contain-img {
    object-fit: contain !important;
    background-color: #0d0d0f;
    transform: scale(1.18);
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-card:hover .product-img-wrap img.contain-img {
    transform: scale(1.24);
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.15) 100%);
    transition: opacity 0.4s;
}

.product-card-info {
    padding: 1.2rem 1.5rem 1.6rem;
    text-align: center;
}

.product-tag {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
}

/* Card entrance animation states */
.product-card {
    opacity: 0;
    transform: translateY(40px);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════ */
.contact-section {
    background: transparent;
    padding: 8rem 4rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.contact-inner {
    max-width: 700px;
    margin: 0 auto;
}

.contact-title {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    margin: 1rem 0;
}

.contact-sub {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 3rem;
}

.contact-cta {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.contact-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
    background: transparent;
    padding: 6rem 2rem 4rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.distributor-title {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.distributor-name {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: #fff;
}

.distributor-desc {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.footer-logos {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.footer-logos img {
    max-width: 400px;
    height: auto;
    border-radius: 8px;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .site-nav { padding: 1.5rem 2rem; }
    .site-nav.scrolled { padding: 1rem 2rem; }

    .hero-section {
        height: auto;
        min-height: 100vh;
    }

    .overlay {
        background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.97) 100%);
    }

    .grain { opacity: 0.03; }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 2rem 5rem;
        margin-top: 5rem;
    }

    .text-column {
        padding-left: 0;
        text-align: center;
    }

    .brand-label { letter-spacing: 0.25em; }

    .separator { margin: 0 auto 2rem auto; }

    .form-tab.expanded .form-slide { max-width: calc(100vw - 3.5rem); }

    .form-container { padding: 3rem 2rem; }

    .scroll-down { display: none; }

    .cursor { display: none; }

    body { cursor: auto; }

    .products-section { padding: 5rem 1.5rem; }

    .products-row-horeca { grid-template-columns: 1fr; }
    .products-row-retail  { grid-template-columns: 1fr 1fr; }
    .contact-section { padding: 5rem 2rem; }
}

@media (max-width: 600px) {
    .products-row-retail { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}
