/* ============================================
   KITPOINT — 2026 Premium Design System
   ============================================ */

/* ─── CSS Custom Properties ─────────────────── */
:root {
    /* Colors — derived from Kitpoint logo red pin */
    --c-bg-primary: #0e0e0e;
    --c-bg-secondary: #1a1a1a;
    --c-bg-tertiary: #2d2d2d;
    --c-bg-card: rgba(30, 30, 30, 0.6);

    --c-text-primary: #f0f0f0;
    --c-text-secondary: #8a8a8a;
    --c-text-muted: #555;

    --c-accent: #D32F2F;
    --c-accent-light: #EF5350;
    --c-accent-dark: #B71C1C;
    --c-accent-glow: rgba(211, 47, 47, 0.15);

    --c-metallic: #b5b5b5;
    --c-metallic-dark: #6b6b6b;

    --c-border: rgba(255, 255, 255, 0.06);
    --c-border-hover: rgba(255, 255, 255, 0.12);

    --c-glass: rgba(255, 255, 255, 0.03);
    --c-glass-border: rgba(255, 255, 255, 0.08);

    /* Typography */
    --f-heading: 'Outfit', sans-serif;
    --f-body: 'Inter', sans-serif;

    /* Spacing */
    --s-xs: 0.25rem;
    --s-sm: 0.5rem;
    --s-md: 1rem;
    --s-lg: 1.5rem;
    --s-xl: 2rem;
    --s-2xl: 3rem;
    --s-3xl: 4rem;
    --s-4xl: 6rem;
    --s-5xl: 8rem;

    /* Borders */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --t-fast: 0.2s;
    --t-normal: 0.4s;
    --t-slow: 0.6s;
    --t-slower: 0.8s;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.2);
    --shadow-lg: 0 16px 64px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 60px var(--c-accent-glow);

    /* Layout */
    --container-max: 1280px;
    --header-h: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--f-body);
    font-weight: 400;
    color: var(--c-text-primary);
    background: var(--c-bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ─── Container ─────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--s-lg);
}

@media (min-width: 768px) {
    .container { padding: 0 var(--s-2xl); }
}

/* ─── Buttons ───────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-sm);
    padding: 14px 32px;
    font-family: var(--f-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--t-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--c-accent), var(--c-accent-dark));
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(211, 47, 47, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(211, 47, 47, 0.5);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--ghost {
    background: rgba(255,255,255,0.06);
    color: var(--c-text-primary);
    border: 1px solid var(--c-border-hover);
    backdrop-filter: blur(10px);
}

.btn--ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--c-accent);
    color: var(--c-accent);
}

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

.btn--outline:hover {
    background: var(--c-accent);
    color: var(--c-bg-primary);
}

.btn--full {
    width: 100%;
}

/* ─── Section Shared ────────────────────────── */
.section-tag {
    display: inline-block;
    font-family: var(--f-heading);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: var(--s-md);
    padding: 6px 16px;
    border: 1px solid var(--c-accent);
    border-radius: var(--radius-full);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--f-heading);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--s-lg);
}

.section-desc {
    color: var(--c-text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}


/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: all var(--t-normal) var(--ease-smooth);
    background: transparent;
}

.header.scrolled {
    background: rgba(14, 14, 14, 0.85);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid var(--c-border);
    height: 70px;
}

.header__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--s-lg);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.header__logo {
    z-index: 10;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity var(--t-fast) var(--ease-smooth);
}

.logo-img:hover {
    opacity: 0.8;
}

.logo-img--footer {
    height: 32px;
}

/* Navigation */
.header__nav {
    display: none;
}

@media (min-width: 1024px) {
    .header__nav {
        display: flex;
    }
}

.nav__list {
    display: flex;
    gap: var(--s-2xl);
    align-items: center;
}

.nav__link {
    font-family: var(--f-heading);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-text-secondary);
    padding: var(--s-sm) 0;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c-accent);
    transition: width var(--t-normal) var(--ease-out);
}

.nav__link:hover {
    color: var(--c-text-primary);
}

.nav__link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(30px);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: var(--s-sm) 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--t-fast) var(--ease-out);
    box-shadow: var(--shadow-lg);
    z-index: 100;
}

.dropdown:hover > .dropdown-menu,
.dropdown-submenu:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--c-text-primary);
    font-family: var(--f-body);
    font-size: 0.9rem;
    transition: background var(--t-fast), color var(--t-fast);
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--c-accent);
}

/* Sub-dropdown */
.dropdown-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-submenu > a::after {
    content: "›";
    font-size: 1.2rem;
    margin-left: 10px;
}

.sub-menu {
    top: 0;
    left: 100%;
    margin-left: 1px;
}

/* Header Actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: var(--s-md);
}

.lang-switch {
    font-family: var(--f-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    background: none;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    color: var(--c-text-secondary);
    cursor: pointer;
    transition: all var(--t-fast);
}

.lang-switch__active {
    color: var(--c-accent);
}

.lang-switch__divider {
    margin: 0 2px;
    opacity: 0.3;
}

.lang-switch:hover {
    border-color: var(--c-accent);
}

.header__cta {
    display: none;
    font-family: var(--f-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px 24px;
    background: var(--c-accent);
    color: #ffffff;
    border-radius: var(--radius-full);
    transition: all var(--t-normal) var(--ease-out);
}

@media (min-width: 1024px) {
    .header__cta { display: inline-flex; }
}

.header__cta:hover {
    background: var(--c-accent-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(211, 47, 47, 0.4);
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

@media (min-width: 1024px) {
    .hamburger { display: none; }
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--c-text-primary);
    transition: all var(--t-normal) var(--ease-out);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(14, 14, 14, 0.98);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--t-slow) var(--ease-out);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu__inner {
    text-align: center;
    transform: translateY(20px);
    transition: transform var(--t-slow) var(--ease-out);
}

.mobile-menu.active .mobile-menu__inner {
    transform: translateY(0);
}

.mobile-menu__link {
    display: block;
    font-family: var(--f-heading);
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 0.04em;
    padding: var(--s-md) 0;
    color: var(--c-text-primary);
    transition: color var(--t-fast);
}

.mobile-menu__link:hover {
    color: var(--c-accent);
}

.mobile-menu__sub {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--s-sm) var(--s-lg);
    padding: var(--s-sm) 0 var(--s-lg);
}

.mobile-menu__sublink {
    font-family: var(--f-body);
    font-size: 0.9rem;
    color: var(--c-text-secondary);
    padding: 6px 16px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-full);
    transition: all var(--t-fast);
}

.mobile-menu__sublink:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
}

.mobile-menu__cta {
    display: inline-flex;
    margin-top: var(--s-2xl);
    padding: 14px 40px;
    font-family: var(--f-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--c-accent);
    color: #ffffff;
    border-radius: var(--radius-full);
}


/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__parallax-bg {
    position: absolute;
    inset: -60px;
    z-index: 0;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    filter: brightness(0.35) saturate(0.8);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(14,14,14,0.7) 0%, rgba(14,14,14,0.3) 40%, rgba(14,14,14,0.8) 100%),
        linear-gradient(90deg, rgba(14,14,14,0.6) 0%, transparent 50%);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: calc(var(--header-h) + var(--s-3xl)) var(--s-lg) var(--s-3xl);
}

@media (min-width: 768px) {
    .hero__content {
        padding: calc(var(--header-h) + var(--s-5xl)) var(--s-2xl) var(--s-5xl);
    }
}

.hero__badge {
    margin-bottom: var(--s-xl);
}

.hero__badge span {
    display: inline-block;
    font-family: var(--f-heading);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-accent);
    padding: 8px 20px;
    border: 1px solid rgba(211, 47, 47, 0.3);
    border-radius: var(--radius-full);
    background: rgba(211, 47, 47, 0.05);
}

.hero__title {
    font-family: var(--f-heading);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: var(--s-xl);
}

.hero__title-line {
    display: block;
    font-size: clamp(2.5rem, 7vw, 5rem);
    letter-spacing: -0.03em;
}

.hero__title-accent {
    color: var(--c-accent);
    font-size: clamp(2.8rem, 8vw, 5.5rem);
}

.hero__subtitle {
    font-size: 1.05rem;
    color: var(--c-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--s-2xl);
    max-width: 520px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-md);
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: var(--s-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s-md);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--c-accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

.hero__scroll-indicator span {
    font-family: var(--f-heading);
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-text-secondary);
}

/* Hero Floating Elements */
.hero__floating {
    display: none;
}

@media (min-width: 1024px) {
    .hero__floating {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 40%;
        z-index: 1;
        pointer-events: none;
    }
}

.hero__float-item {
    position: absolute;
    border-radius: var(--radius-lg);
    will-change: transform;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    transition: transform 0.1s linear;
}

.hero__float-1 {
    width: 280px;
    top: 20%;
    right: 10%;
    animation: floatSlow 8s ease-in-out infinite;
}

.hero__float-2 {
    width: 200px;
    top: 50%;
    right: 30%;
    animation: floatSlow 10s ease-in-out infinite 1s;
}

.hero__float-3 {
    width: 220px;
    top: 65%;
    right: 5%;
    animation: floatSlow 9s ease-in-out infinite 2s;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

/* ============================================
   PRODUCTS GRID
   ============================================ */
.products {
    padding: var(--s-5xl) 0;
    position: relative;
}

.products__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-lg);
    margin-top: var(--s-3xl);
}

@media (min-width: 600px) {
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-card--featured {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .products__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--s-xl);
    }
    .product-card--featured {
        grid-column: span 1;
    }
}

/* Product Card */
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all var(--t-normal) var(--ease-out);
    cursor: pointer;
}

.product-card:hover {
    border-color: var(--c-border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 0 80px rgba(211, 47, 47, 0.06);
}

/* Card Visual */
.product-card__visual {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.product-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow) var(--ease-out);
}

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

.product-card__glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--c-accent-glow), transparent 70%);
    filter: blur(50px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity var(--t-normal) var(--ease-out);
    pointer-events: none;
}

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

/* Card Info */
.product-card__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--s-lg) var(--s-xl);
    border-top: 1px solid var(--c-border);
    gap: var(--s-md);
}

.product-card__name {
    font-family: var(--f-heading);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    color: var(--c-text-primary);
    margin: 0;
    line-height: 1.3;
}

.product-card__sub {
    display: block;
    font-size: 0.72rem;
    color: var(--c-text-secondary);
    letter-spacing: 0.04em;
    margin-top: 2px;
    opacity: 0.7;
}

.product-card__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--c-border);
    color: var(--c-text-secondary);
    transition: all var(--t-normal) var(--ease-out);
    flex-shrink: 0;
}

.product-card__arrow svg {
    width: 18px;
    height: 18px;
    transition: transform var(--t-normal) var(--ease-out);
}

.product-card:hover .product-card__arrow {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: #ffffff;
}

.product-card:hover .product-card__arrow svg {
    transform: translateX(3px);
}


/* ============================================
   STATS
   ============================================ */
.stats {
    padding: var(--s-4xl) 0;
    background: var(--c-bg-secondary);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-2xl);
}

@media (min-width: 768px) {
    .stats__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-number {
    font-family: var(--f-heading);
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--c-accent);
    line-height: 1;
}

.stat-plus {
    font-family: var(--f-heading);
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--c-accent);
}

.stat-label {
    display: block;
    margin-top: var(--s-sm);
    font-size: 0.8rem;
    color: var(--c-text-secondary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}


/* ============================================
   ABOUT
   ============================================ */
.about {
    position: relative;
    padding: var(--s-5xl) 0;
    overflow: hidden;
}

.about__parallax-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(211,47,47,0.04) 0%, transparent 60%);
    will-change: transform;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .about__grid {
        grid-template-columns: 1.3fr 0.7fr;
    }
}

.about__text {
    color: var(--c-text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--s-lg);
}

.about__brands {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-md);
    margin-top: var(--s-xl);
}

.brand-badge {
    background: var(--c-glass);
    border: 1px solid var(--c-glass-border);
    border-radius: var(--radius-md);
    padding: var(--s-md) var(--s-xl);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all var(--t-normal) var(--ease-out);
}

.brand-badge:hover {
    border-color: var(--c-accent);
    background: var(--c-accent-glow);
}

.brand-badge span {
    display: block;
    font-family: var(--f-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--c-text-primary);
}

.brand-badge small {
    font-size: 0.7rem;
    color: var(--c-text-secondary);
    letter-spacing: 0.04em;
}

/* About Card */
.about__card {
    background: var(--c-glass);
    border: 1px solid var(--c-glass-border);
    border-radius: var(--radius-xl);
    padding: var(--s-3xl);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.about__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(211,47,47,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.about__highlight {
    text-align: center;
    position: relative;
}

.about__highlight-number {
    display: block;
    font-family: var(--f-heading);
    font-weight: 900;
    font-size: 4rem;
    color: var(--c-accent);
    line-height: 1;
    margin-bottom: var(--s-md);
}

.about__highlight-text {
    color: var(--c-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}


/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: var(--s-5xl) 0;
    background: var(--c-bg-secondary);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-3xl);
}

@media (min-width: 1024px) {
    .contact__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact__desc {
    color: var(--c-text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--s-2xl);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--s-xl);
}

.contact-item {
    display: flex;
    gap: var(--s-md);
    align-items: flex-start;
}

.contact-item__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: var(--c-accent);
    background: var(--c-accent-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.contact-item strong {
    display: block;
    font-family: var(--f-heading);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.contact-item span,
.contact-item a {
    color: var(--c-text-secondary);
    font-size: 0.9rem;
}

.contact-item a:hover {
    color: var(--c-accent);
}

/* Contact Form */
.contact__form-wrap {
    background: var(--c-glass);
    border: 1px solid var(--c-glass-border);
    border-radius: var(--radius-xl);
    padding: var(--s-2xl);
    backdrop-filter: blur(20px);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-lg);
}

@media (min-width: 600px) {
    .contact-form {
        grid-template-columns: 1fr 1fr;
    }
    .form-group--full {
        grid-column: 1 / -1;
    }
    .contact-form .btn {
        grid-column: 1 / -1;
    }
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 16px 16px 8px;
    font-family: var(--f-body);
    font-size: 0.9rem;
    color: var(--c-text-primary);
    outline: none;
    transition: all var(--t-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--c-accent);
    background: rgba(211,47,47,0.04);
}

.form-group label {
    position: absolute;
    left: 16px;
    top: 14px;
    font-size: 0.85rem;
    color: var(--c-text-secondary);
    pointer-events: none;
    transition: all var(--t-fast) var(--ease-smooth);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 4px;
    font-size: 0.65rem;
    color: var(--c-accent);
    letter-spacing: 0.04em;
}

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


/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--c-bg-primary);
    border-top: 1px solid var(--c-border);
    padding-top: var(--s-4xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-2xl);
    padding-bottom: var(--s-3xl);
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 1.5fr repeat(3, 1fr);
    }
}

.footer__logo {
    display: inline-block;
    margin-bottom: var(--s-md);
}

.footer__tagline {
    color: var(--c-text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer__links h3,
.footer__contact h3 {
    font-family: var(--f-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--s-lg);
    color: var(--c-text-primary);
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: var(--s-sm);
}

.footer__links a {
    color: var(--c-text-secondary);
    font-size: 0.85rem;
    transition: color var(--t-fast), padding-left var(--t-fast);
}

.footer__links a:hover {
    color: var(--c-accent);
    padding-left: 6px;
}

.footer__contact p {
    color: var(--c-text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: var(--s-sm);
}

.footer__contact a {
    display: block;
    color: var(--c-text-secondary);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.footer__contact a:hover {
    color: var(--c-accent);
}

.footer__bottom {
    border-top: 1px solid var(--c-border);
    padding: var(--s-lg) 0;
}

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

.footer__bottom p {
    font-size: 0.75rem;
    color: var(--c-text-muted);
}


/* ============================================
   ANIMATIONS
   ============================================ */

/* Scroll Reveal */
[data-anim] {
    opacity: 0;
    transition: opacity var(--t-slower) var(--ease-out), transform var(--t-slower) var(--ease-out);
}

[data-anim="fade-up"] {
    transform: translateY(40px);
}

[data-anim="fade-right"] {
    transform: translateX(-40px);
}

[data-anim="fade-left"] {
    transform: translateX(40px);
}

[data-anim].visible {
    opacity: 1;
    transform: translate(0, 0);
}


/* ============================================
   RESPONSIVE FINE-TUNING
   ============================================ */
@media (max-width: 480px) {
    .hero__title-line {
        font-size: 2.2rem;
    }
    .hero__title-accent {
        font-size: 2.5rem;
    }
    /* Fix: Make the header logo more compact on very narrow screen widths to ensure all header elements fit */
    .header__logo .logo-img {
        height: 22px !important;
    }
}

@media (min-width: 1440px) {
    :root {
        --container-max: 1400px;
    }
}

/* Light Theme Variables */
[data-theme="light"] {
    --c-bg-primary: #ffffff;
    --c-bg-secondary: #f4f4f5;
    --c-bg-tertiary: #e4e4e7;
    --c-bg-card: rgba(255, 255, 255, 0.9);

    --c-text-primary: #1a1a1a;
    --c-text-secondary: #4a4a4a;
    --c-text-muted: #737373;

    --c-border: rgba(0, 0, 0, 0.1);
    --c-border-hover: rgba(0, 0, 0, 0.2);

    --c-glass: rgba(0, 0, 0, 0.03);
    --c-glass-border: rgba(0, 0, 0, 0.08);

    --c-accent-glow: rgba(211, 47, 47, 0.1);
}

[data-theme="light"] .header.scrolled {
    background: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
}

[data-theme="light"] .dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .mobile-menu {
    background: rgba(255, 255, 255, 0.98);
}

[data-theme="light"] .product-card {
    background: #ffffff;
}

[data-theme="light"] .hero__overlay {
    background: 
        linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.3) 40%, rgba(255,255,255,0.9) 100%),
        linear-gradient(90deg, rgba(255,255,255,0.8) 0%, transparent 50%);
}

[data-theme="light"] .hero__title-line {
    color: #1a1a1a;
}
[data-theme="light"] .hero__subtitle {
    color: #4a4a4a;
}

/* References Logos styling */
.references__grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 2rem;
}

.references__item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    min-width: 0;
}

.references__item img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .references__grid {
        gap: 0.5rem;
    }
    .references__item {
        height: 35px;
    }
}

/* Declarative Theme Switcher Styling */
#theme-switch .theme-option {
    cursor: pointer;
    transition: color 0.3s ease;
}

#theme-switch .theme-option:first-child {
    color: var(--c-text-secondary);
}

#theme-switch .theme-option:last-child {
    color: var(--c-accent);
}

[data-theme="light"] #theme-switch .theme-option:first-child {
    color: var(--c-accent) !important;
}

[data-theme="light"] #theme-switch .theme-option:last-child {
    color: var(--c-text-secondary) !important;
}

[data-theme="dark"] #theme-switch .theme-option:first-child {
    color: var(--c-text-secondary) !important;
}

[data-theme="dark"] #theme-switch .theme-option:last-child {
    color: var(--c-accent) !important;
}

/* Premium Minibar Slider ve Görsel Düzenleyici */
.product-slider-container {
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 400px !important;
    height: 340px !important;
    margin: 0 auto !important;
    max-width: 100%;
}

.product-image-box,
.product-slider-container > div:not(.slider-btn) {
    position: relative;
    border-radius: var(--radius-xl) !important;
    overflow: hidden !important;
    background: #ffffff !important;
    box-shadow: var(--shadow-lg) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid var(--c-border) !important;
    padding: 24px !important; /* Premium spacing around images */
    width: 100% !important;   /* Fill the slider container fully */
    height: 100% !important;  /* Fill the slider container fully */
    aspect-ratio: auto !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 767px) {
    .product-slider-container {
        width: 280px !important;
        height: 240px !important;
    }
    .product-image-box,
    .product-slider-container > div:not(.slider-btn) {
        width: 100% !important;
        height: 100% !important;
        padding: 16px !important;
    }
    /* Fix: Override inline min-height of gallery box on mobile to prevent vertical overflow/overlap with heading */
    .gallery-box {
        min-height: auto !important;
    }
    /* Fix: Position slider navigation buttons inside the card on mobile to prevent clipping/overflow */
    .slider-btn.prev {
        left: 10px !important;
    }
    .slider-btn.next {
        right: 10px !important;
    }
    /* Fix: Compact header items to prevent overflow on mobile devices */
    .header__actions {
        gap: 0.4rem !important;
    }
    #theme-switch, 
    #lang-switch {
        margin-right: 4px !important;
        padding: 4px 6px !important;
        font-size: 0.7rem !important;
    }
    #theme-switch span,
    #lang-switch span {
        font-size: 0.7rem !important;
    }
    #theme-switch .lang-switch__divider {
        margin: 0 3px !important;
    }
    .hamburger {
        padding: 4px !important;
        margin-left: 4px !important;
    }
}

.product-image-box:hover,
.product-slider-container > div:not(.slider-btn):hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow) !important;
}

.slider-main-img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-height: 100% !important; /* Fill container height fully while keeping aspect ratio */
    max-width: 100% !important;  /* Fill container width fully while keeping aspect ratio */
    object-fit: contain !important;
    transition: opacity 0.3s ease !important;
}

.slider-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    background: var(--c-accent) !important;
    color: #fff !important;
    border: none !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    font-size: 1.2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
    transition: background 0.2s, transform 0.2s !important;
}

.slider-btn:hover {
    background: var(--c-accent-dark) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.slider-btn.prev {
    left: -20px !important;
}

.slider-btn.next {
    right: -20px !important;
}

/* Görsel kolonunu dikey ve yatayda ortalama */
.prod-section__visual {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
}

/* Ensure all product thumbnails, gallery thumbnails, and color/options blocks have a white background */
.prod-thumb,
.gallery-thumb,
.retro-colors-grid div,
.mini-options-grid div:not(.option-en-overlay),
.options-grid div,
.dimensions-section div {
    background: #ffffff !important;
}

.mini-options-grid .option-en-overlay {
    background: #de0617 !important;
    color: #fff !important;
}

/* English specific styling to prevent navigation menu wrapping */
html[data-lang="en"] .nav__list {
    gap: 0.7rem;
}
html[data-lang="en"] .nav__link {
    font-size: 0.75rem;
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .nav__list {
        gap: 0.7rem;
    }
    .nav__link {
        font-size: 0.72rem;
    }
    .header__actions {
        gap: 0.7rem;
    }
    
    html[data-lang="en"] .nav__list {
        gap: 0.55rem;
    }
    html[data-lang="en"] .nav__link {
        font-size: 0.7rem;
    }
    html[data-lang="en"] .header__actions {
        gap: 0.5rem;
    }
    html[data-lang="en"] .header__cta {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.75rem;
    }
}

/* ============================================
   FLOATING WHATSAPP WIDGET
   ============================================ */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    pointer-events: auto;
}

.whatsapp-icon-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
}

.whatsapp-widget:hover .whatsapp-icon-btn {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-bubble {
    position: absolute;
    right: 75px;
    background: var(--c-bg-card, #1e1e1e);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--c-border, rgba(255,255,255,0.08));
    color: var(--c-text-primary, #ffffff);
    padding: 12px 20px;
    border-radius: 20px 20px 4px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg, 0 10px 30px rgba(0,0,0,0.5));
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.5s;
}

.whatsapp-bubble::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: var(--c-bg-card, #1e1e1e);
    border-right: 1px solid var(--c-border, rgba(255,255,255,0.08));
    border-top: 1px solid var(--c-border, rgba(255,255,255,0.08));
}

.whatsapp-widget.show-bubble .whatsapp-bubble {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Fix: Make all product images in detail and category sliders fit inside their containers without getting cropped */
.product-slider-container img,
.product-image img,
.product-image-box img,
.slider-main-img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
}

/* ─── Blog linki: EN modda gizle (İngilizce blog içeriği yok) ─── */
[data-lang="en"] .nav__blog-item,
[data-lang="en"] .nav__blog-link {
    display: none !important;
}

/* ─── Minibar opsiyon kartları: EN kırmızı overlay ─── */
.option-img-wrap {
    position: relative;
    display: block;
    width: 100%;
    overflow: visible !important;
    background: transparent !important;
}
.option-img-wrap img {
    display: block;
    width: 100%;
}
.option-en-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #de0617 !important;
    color: #fff !important;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 7px 8px;
    text-align: center;
    border-radius: 0 0 8px 8px;
    letter-spacing: 0.01em;
    display: none !important;
    z-index: 10;
}
[data-lang="en"] .option-en-overlay {
    display: block !important;
}
