/* RETOOLS — Modern Hardware Design System */

:root {
    --brand: #8B1538;
    --brand-dark: #6B0F2A;
    --brand-glow: rgba(139, 21, 56, 0.18);
    --ink: #0B1221;
    --ink-soft: #151D2E;
    --muted: #6B7280;
    --line: rgba(11, 18, 33, 0.08);
    --glass: rgba(255, 255, 255, 0.72);
    --radius: 14px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 8px 30px rgba(11,18,33,.07);
    --shadow-lg: 0 20px 50px rgba(11,18,33,.12);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; box-sizing: border-box; }

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: #F7F7F8;
    color: var(--ink);
    letter-spacing: -0.01em;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

/* Typography */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand);
}
.eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
}
.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--ink);
}
.section-desc {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 36rem;
}

/* Glass */
.glass {
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,.5);
}
.glass-dark {
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,.08);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 12px;
    padding: 0.85rem 1.5rem;
    transition: all 0.3s var(--ease);
    cursor: pointer;
}
.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 4px 14px var(--brand-glow);
}
.btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--brand-glow);
}
.btn-dark {
    background: var(--ink);
    color: #fff;
}
.btn-dark:hover { background: #262626; transform: translateY(-1px); }
.btn-ghost {
    background: rgba(255,255,255,.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}
.btn-outline:hover { border-color: var(--ink); background: #fff; }

/* Product card */
.product-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,0,0,.08);
}
.product-card .img-wrap {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(145deg, #fafafa 0%, #f0f0f0 100%);
    overflow: hidden;
}
.product-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    transition: transform 0.6s var(--ease);
}
.product-card:hover .img-wrap img { transform: scale(1.06); }
.product-card .badge-row {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    z-index: 5;
    pointer-events: none;
}
.product-card .badge {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.2rem 0.45rem;
    border-radius: 6px;
    line-height: 1.2;
    white-space: nowrap;
}
.product-card .card-body {
    padding: 0.875rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-card .card-body h3 {
    min-height: 2.5rem;
}
.product-card .card-footer {
    margin-top: auto;
    padding-top: 0.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
    min-height: 2.75rem;
}
.product-card .price-block {
    min-height: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.product-card .sold-out-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}
.product-card .actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    background: linear-gradient(to top, rgba(0,0,0,.5), transparent);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.35s var(--ease);
}
.product-card:hover .actions { opacity: 1; transform: translateY(0); }
@media (max-width: 768px) {
    .product-card .actions { opacity: 1; transform: none; background: none; position: static; padding: 0 1rem 1rem; }
}

/* Category card */
.cat-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
    display: block;
}
.cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 50%, transparent 100%);
    z-index: 1;
    transition: opacity 0.4s;
}
.cat-card:hover::after { opacity: 0.9; }
.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.cat-card:hover img { transform: scale(1.08); }

/* Hero */
.hero-gradient {
    background-color: #0A0A0A;
    background-image:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(225,29,46,.22) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(255,255,255,.05) 0%, transparent 50%),
        linear-gradient(135deg, #0A0A0A 0%, #141414 45%, #1a1a1a 55%, #0A0A0A 100%);
    color: #fff;
}
.hero-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}
.hero-section { padding-bottom: 2.5rem; position: relative; }
@media (min-width: 1024px) { .hero-section { padding-bottom: 3rem; } }
.hero-compact .hero-content {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
}
@media (min-width: 1024px) {
    .hero-compact .hero-content {
        padding-top: 2.25rem;
        padding-bottom: 2.25rem;
    }
}
.hero-content { position: relative; z-index: 2; }
.hero-slide-title {
    font-size: clamp(1.75rem, 3.8vw, 2.875rem);
    letter-spacing: -0.02em;
}
.hero-title-accent {
    color: #fff;
    position: relative;
    display: inline-block;
}
.hero-title-accent::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.08em;
    height: 0.28em;
    background: linear-gradient(90deg, rgba(225,29,46,.55), rgba(225,29,46,.15));
    border-radius: 2px;
    z-index: -1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
}
.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 8px rgba(225,29,46,.6);
    flex-shrink: 0;
}
.hero-lead {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(255,255,255,.58);
    max-width: 28rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
    .hero-lead { font-size: 1rem; }
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.hero-btn-outline {
    border: 1px solid rgba(255,255,255,.18) !important;
    background: rgba(255,255,255,.04) !important;
}
.hero-btn-outline:hover {
    background: rgba(255,255,255,.1) !important;
    border-color: rgba(255,255,255,.28) !important;
}
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0;
    list-style: none;
}
.hero-pills li {
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255,255,255,.55);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stat-card {
    padding: 0.875rem 0.75rem;
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    text-align: center;
    transition: border-color 0.25s, background 0.25s;
}
@media (min-width: 640px) {
    .hero-stat-card { text-align: left; padding: 1rem; }
}
.hero-stat-card:hover {
    background: rgba(255,255,255,.06);
    border-color: rgba(225,29,46,.2);
}
.hero-stat-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
}
@media (min-width: 640px) {
    .hero-stat-value { font-size: 1.5rem; }
}
.hero-stat-label {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,.4);
    margin-top: 0.25rem;
}

/* Hero featured products */
.hero-featured {
    background: linear-gradient(145deg, rgba(20,20,20,.95) 0%, rgba(12,12,12,.98) 100%);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 1.5rem;
    padding: 1.25rem;
    box-shadow: 0 24px 48px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.06);
}
@media (min-width: 1024px) {
    .hero-featured { padding: 1.5rem; }
}
.hero-featured-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}
.hero-featured-label {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--brand);
    margin-bottom: 0.25rem;
}
.hero-featured-title {
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
}
.hero-featured-actions {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex-shrink: 0;
}
.hero-featured-all {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,.5);
    padding: 0.375rem 0.625rem;
    margin-right: 0.25rem;
    transition: color 0.2s;
}
.hero-featured-all:hover { color: #fff; }
.hero-featured-arrow {
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.hero-featured-arrow:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.2);
}
.hero-featured-track {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
}
.hero-featured-card {
    flex: 0 0 min(72%, 200px);
    scroll-snap-align: start;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}
@media (min-width: 640px) {
    .hero-featured-card { flex: 0 0 180px; }
}
@media (min-width: 1024px) {
    .hero-featured-card { flex: 0 0 calc(50% - 0.375rem); }
}
.hero-featured-card:hover {
    transform: translateY(-3px);
    border-color: rgba(225,29,46,.35);
    box-shadow: 0 12px 32px rgba(0,0,0,.35);
}
.hero-featured-card-img {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
    overflow: hidden;
}
.hero-featured-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.75rem;
    transition: transform 0.35s var(--ease);
}
.hero-featured-card:hover .hero-featured-card-img img {
    transform: scale(1.05);
}
.hero-featured-tag {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.45rem;
    border-radius: 6px;
    background: var(--brand);
    color: #fff;
}
.hero-featured-hover {
    position: absolute;
    inset: auto 0 0 0;
    padding: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-align: center;
    color: #fff;
    background: linear-gradient(transparent, rgba(0,0,0,.75));
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s, transform 0.25s;
}
.hero-featured-card:hover .hero-featured-hover {
    opacity: 1;
    transform: translateY(0);
}
.hero-featured-card-body {
    padding: 0.75rem;
}
.hero-featured-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,.88);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.05em;
}
.hero-featured-prices {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.5rem;
}
.hero-featured-price {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--brand);
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
}
.hero-featured-price-old {
    font-size: 0.6875rem;
    color: rgba(255,255,255,.35);
    text-decoration: line-through;
}

/* Hero slider */
.hero-slider-viewport {
    overflow: hidden;
}
.hero-slider-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-slide {
    flex: 0 0 100%;
    min-width: 100%;
}
.hero-slider-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.hero-slider-arrow {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.06);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.hero-slider-arrow:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.25);
}
.hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.hero-slider-dot {
    width: 1.5rem;
    height: 3px;
    border-radius: 999px;
    border: none;
    padding: 0;
    background: rgba(255,255,255,.2);
    cursor: pointer;
    transition: width 0.3s, background 0.3s;
}
.hero-slider-dot.active {
    width: 2rem;
    background: var(--brand);
}

/* Hero banner görseli (admin slider) */
.hero-banner-visual {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(15,15,15,.85);
    aspect-ratio: 16 / 10;
    max-height: 320px;
    box-shadow: 0 24px 48px rgba(0,0,0,.35);
}
.hero-banner-visual-track {
    display: flex;
    height: 100%;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-banner-visual-slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
}
.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-banner-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}

.btn-sm {
    padding: 0.65rem 1.15rem;
    font-size: 0.8125rem;
    border-radius: 10px;
}

/* legacy — kept for reference */
.hero-product-panel { display: none; }

/* Trust strip — no overlap with hero */
.trust-section {
    margin-top: -1.25rem;
    position: relative;
    z-index: 10;
}
@media (min-width: 1024px) {
    .trust-section { margin-top: -1.5rem; }
}

.trust-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    margin-inline: -1rem;
    padding-inline: 1rem;
    padding-bottom: 0.25rem;
}
.trust-scroll-track {
    display: flex;
    gap: 0.75rem;
    width: max-content;
}
.trust-scroll .trust-item {
    flex: 0 0 min(76vw, 260px);
    scroll-snap-align: start;
}
@media (min-width: 1024px) {
    .trust-scroll {
        overflow: visible;
        margin-inline: 0;
        padding-inline: 0;
        padding-bottom: 0;
        scroll-snap-type: none;
    }
    .trust-scroll-track {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        width: 100%;
        gap: 1rem;
    }
    .trust-scroll .trust-item {
        flex: none;
        width: auto;
    }
}

/* B2B banner */
.b2b-banner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    text-align: center;
}
@media (min-width: 1024px) {
    .b2b-banner {
        grid-template-columns: 1.2fr 0.8fr;
        text-align: left;
    }
    .b2b-banner .b2b-actions {
        justify-content: flex-end;
    }
}
.b2b-banner .b2b-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* Footer grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 3rem;
    }
}
@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 2rem;
    }
}

/* Site container — unified width */
.site-container {
    width: 100%;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 1024px) {
    .site-container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
.hero-grid {
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 48px 48px;
}

/* Trust strip */
.trust-item {
    padding: 1.25rem;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    transition: all 0.3s var(--ease);
}
.trust-item:hover {
    border-color: rgba(225,29,46,.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #FEF2F2, #FEE2E2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
}

/* Section spacing */
.section { padding: 5rem 0; }
@media (max-width: 768px) { .section { padding: 3rem 0; } }

/* Header shell — duyuru + header birlikte yapışır */
.site-top {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--ink);
}

.site-header {
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 64px;
}
@media (min-width: 1024px) {
    .header-row { min-height: 72px; gap: 1.25rem; }
}
.nav-link {
    color: rgba(255,255,255,.7);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.2s;
    white-space: nowrap;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-link.active { color: #fff; background: rgba(225,29,46,.2); color: #fff; }
.search-input {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    color: #fff;
    border-radius: 14px;
    transition: all 0.25s;
}
.search-input::placeholder { color: rgba(255,255,255,.4); }
.search-input:focus {
    background: rgba(255,255,255,.12);
    border-color: rgba(225,29,46,.5);
    outline: none;
    box-shadow: 0 0 0 3px var(--brand-glow);
}

/* Footer */
.site-footer {
    flex-shrink: 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    color: rgba(255,255,255,.55);
    margin-top: auto;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 40rem);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(225,29,46,.35), transparent);
}
.site-footer a:hover { color: #fff; }

/* Auth card */
.auth-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
}
.input-field {
    width: 100%;
    height: 2.75rem;
    padding: 0 1rem;
    background: #F7F7F8;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 0.9rem;
    transition: all 0.2s;
}
textarea.input-field { height: auto; min-height: 6rem; resize: vertical; padding-top: 0.75rem; padding-bottom: 0.75rem; }
.input-field:focus {
    outline: none;
    background: #fff;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-glow);
}

/* Utilities */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.skeleton {
    background: linear-gradient(90deg, #eee 25%, #e5e5e5 50%, #eee 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s infinite;
}
@keyframes skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.7s var(--ease) forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
/* Ensure hero text visible even if animation doesn't run */
.hero-gradient .animate-fade-up {
    animation-fill-mode: forwards;
}
.hero-gradient .eyebrow::before {
    background: var(--brand);
}
.hero-gradient .gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #fecaca 45%, var(--brand) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (prefers-reduced-motion: reduce) {
    .animate-fade-up, .delay-1, .delay-2, .delay-3 {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

#main-image-container.zoomed img { transform: scale(2); cursor: zoom-out; }
.copy-btn.copied { color: #16a34a; }

/* Toast */
.toast {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.85rem 1.25rem;
    background: var(--ink);
    color: #fff;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    animation: fadeUp 0.4s var(--ease);
}

/* Brand marquee */
.brand-marquee {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.brand-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 64px;
    padding: 0 1.5rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    color: rgba(255,255,255,.8);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    transition: all 0.3s var(--ease);
}
.brand-pill:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(225,29,46,.4);
    color: #fff;
    transform: translateY(-2px);
}

/* Brand navigation strip */
.brand-nav-strip {
    background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.2) 100%);
    border-top: 1px solid rgba(255,255,255,.05);
    backdrop-filter: blur(12px);
}
.brand-nav-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.brand-nav-label {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,.28);
    flex-shrink: 0;
    padding-right: 0.25rem;
}
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.scrollbar-hide::-webkit-scrollbar { display: none; }

.brand-nav-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 1rem;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.75);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.25s var(--ease);
    flex-shrink: 0;
}
.brand-nav-item:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(225,29,46,.4);
    color: #fff;
    transform: translateY(-1px);
}
.brand-nav-item.active {
    background: rgba(225,29,46,.2);
    border-color: rgba(225,29,46,.5);
    color: #fff;
}
.brand-nav-all {
    color: var(--brand) !important;
    border-color: rgba(225,29,46,.3) !important;
    background: rgba(225,29,46,.08) !important;
}

/* ─── Motoparcacin.com Corporate Design ─── */
.font-display { font-family: 'Plus Jakarta Sans', Inter, sans-serif; }

.brand-logo-icon {
    position: relative;
    overflow: hidden;
}
.brand-logo-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.22) 50%, transparent 60%);
    transform: translateX(-120%);
    transition: transform 0.6s var(--ease);
}
.brand-logo:hover .brand-logo-icon::after {
    transform: translateX(120%);
}

.announcement-bar {
    position: relative;
    overflow: hidden;
    margin: 0;
    background: linear-gradient(90deg, #b91826 0%, var(--brand) 45%, #b91826 100%);
    border-bottom: 1px solid rgba(0,0,0,.12);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
}
.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.875rem;
    flex-wrap: wrap;
    min-height: 34px;
    padding: 0.375rem 0;
    position: relative;
    z-index: 1;
}
.announcement-sep {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,.25);
}
.announcement-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
    animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.hero-orb {
    animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-delay { animation-delay: -4s; }
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(12px, -16px) scale(1.05); }
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #fca5a5 50%, var(--brand) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(225,29,46,.35), transparent);
    margin: 0 auto;
    max-width: 12rem;
}

.corp-stat-number {
    font-variant-numeric: tabular-nums;
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
}

.trust-item {
    position: relative;
    overflow: hidden;
}
.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--brand);
    border-radius: 0 2px 2px 0;
    transition: height 0.35s var(--ease);
}
.trust-item:hover::before { height: 100%; }

.product-card {
    position: relative;
}
.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(225,29,46,0), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
    z-index: 1;
}
.product-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(225,29,46,.25), transparent, rgba(225,29,46,.1));
}

.btn-primary {
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}
.btn-primary:hover::after { transform: translateX(100%); }

.site-top,
.site-header {
    transition: box-shadow 0.3s, background 0.3s;
}
.site-header.is-scrolled,
.site-top.is-scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,.25);
}

.corp-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}
.corp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.7);
}

/* Minimum sepet ilerleme çubuğu */
.min-order-progress-bar {
    height: 6px;
    border-radius: 999px;
    background: #f3f4f6;
    overflow: hidden;
}
.min-order-progress-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--brand), #ff6b6b);
    transition: width 0.4s var(--ease);
}

/* Floating actions (WhatsApp) */
.floating-actions {
    position: fixed;
    right: 1.25rem;
    bottom: calc(1.25rem + var(--safe-bottom, 0px));
    z-index: 48;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}
.floating-actions .whatsapp-fab {
    position: static;
    right: auto;
    bottom: auto;
}

/* WhatsApp floating button */
.whatsapp-fab {
    position: fixed;
    right: 1.25rem;
    bottom: calc(1.25rem + var(--safe-bottom, 0px));
    z-index: 48;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem 0.75rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,.12);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
    overflow: visible;
}
.whatsapp-fab:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0,0,0,.15);
    color: #fff;
}
.whatsapp-fab-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.whatsapp-fab-icon svg { width: 1.25rem; height: 1.25rem; }
.whatsapp-fab-pulse {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #25D366;
    opacity: 0.35;
    animation: waPulse 2.5s ease-out infinite;
    pointer-events: none;
}
@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.35; }
    70% { transform: scale(1.15); opacity: 0; }
    100% { transform: scale(1.15); opacity: 0; }
}
@media (max-width: 1023px) {
    body.has-mobile-nav .floating-actions {
        bottom: calc(var(--mobile-nav-h) + var(--safe-bottom) + 1rem);
    }
    body.has-mobile-nav:has(.cart-sticky-checkout.visible) .floating-actions {
        bottom: calc(var(--mobile-nav-h) + var(--safe-bottom) + 4.75rem);
    }
    body.has-mobile-nav .whatsapp-fab {
        bottom: calc(var(--mobile-nav-h) + var(--safe-bottom) + 1rem);
    }
    body.has-mobile-nav:has(.cart-sticky-checkout.visible) .whatsapp-fab {
        bottom: calc(var(--mobile-nav-h) + var(--safe-bottom) + 4.75rem);
    }
    .whatsapp-fab-label { display: none; }
    .whatsapp-fab { padding: 0.875rem; border-radius: 50%; }
}
@media (min-width: 1024px) {
    .whatsapp-fab-pulse { display: none; }
}

/* Page loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}
.page-loader.is-active { opacity: 1; }
.page-loader-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--brand), #ff6b6b);
    transition: width 0.25s ease;
    box-shadow: 0 0 10px rgba(225,29,46,.4);
}
.page-loader.is-active .page-loader-bar { width: 75%; }
.page-loader.is-done .page-loader-bar { width: 100%; transition: width 0.15s ease; }

.section-sm { padding: 3rem 0; }
@media (max-width: 768px) { .section-sm { padding: 2.25rem 0; } }

/* Why cards */
.why-grid {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    margin-inline: -1rem;
    padding-inline: 1rem;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
}
.why-grid::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) {
    .why-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        overflow: visible;
        margin-inline: 0;
        padding-inline: 0;
        padding-bottom: 0;
        scroll-snap-type: none;
        gap: 1rem;
    }
}
.why-card {
    flex: 0 0 min(80vw, 280px);
    scroll-snap-align: start;
}
@media (min-width: 1024px) {
    .why-card { flex: none; width: auto; }
}
.why-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1.25rem;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.why-card:hover {
    border-color: rgba(225,29,46,.15);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.why-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(225,29,46,.08);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.875rem;
}

/* Reviews carousel */
.reviews-carousel { overflow: hidden; }
.reviews-carousel-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.review-card {
    flex: 0 0 calc(100% - 0px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    padding: 1.25rem;
    min-height: 200px;
}
@media (min-width: 640px) { .review-card { flex: 0 0 calc(50% - 0.5rem); } }
@media (min-width: 1024px) { .review-card { flex: 0 0 calc(33.333% - 0.67rem); } }
.reviews-nav-btn {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
.reviews-nav-btn:hover { border-color: var(--brand); color: var(--brand); }

/* Product page */
.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}
.product-badge--stock { background: #ecfdf5; color: #047857; }
.product-badge--out { background: #fef2f2; color: #b91c1c; }
.product-badge--delivery { background: #eff6ff; color: #1d4ed8; }
.product-badge--shipping { background: rgba(225,29,46,.08); color: var(--brand); }
.compat-chip {
    display: inline-flex;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 500;
    background: #f5f5f5;
    color: #404040;
    border: 1px solid #ebebeb;
}
.compat-chip--more {
    cursor: pointer;
    background: rgba(225,29,46,.06);
    color: var(--brand);
    border-color: rgba(225,29,46,.15);
}
.btn-whatsapp-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(37,211,102,.35);
    background: rgba(37,211,102,.08);
    color: #128C7E;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.btn-whatsapp-outline:hover {
    background: rgba(37,211,102,.14);
    border-color: rgba(37,211,102,.5);
    color: #0f766e;
}

/* Cart & checkout */
.empty-state-card {
    text-align: center;
    padding: 4rem 1.5rem;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid var(--line);
}
.free-ship-bar span { background: linear-gradient(90deg, #10b981, #34d399); }
.checkout-steps-mini {
    display: flex;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.checkout-steps-mini > div {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: #f5f5f5;
    color: #a3a3a3;
}
.checkout-steps-mini > div span {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    background: #e5e5e5;
}
.checkout-steps-mini > div.active {
    background: rgba(225,29,46,.08);
    color: var(--brand);
}
.checkout-steps-mini > div.active span { background: var(--brand); color: #fff; }
.checkout-steps-mini > div.done {
    background: #ecfdf5;
    color: #047857;
}
.checkout-steps-mini > div.done span { background: #10b981; color: #fff; }
.checkout-steps-page { max-width: 28rem; }

.bank-copy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 0.75rem;
}
.bank-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.65rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.bank-copy-btn:hover { background: rgba(255,255,255,.12); }
.bank-copy-btn.copied { color: #86efac; border-color: rgba(134,239,172,.4); }
.copy-label { font-size: 0.65rem; }

/* Contact & FAQ */
.contact-info-card,
.contact-form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    padding: 1.5rem;
}
.contact-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.65rem;
    background: rgba(225,29,46,.08);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    shrink: 0;
}
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0.875rem;
    overflow: hidden;
}
.faq-item summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--brand);
    font-weight: 400;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
    padding: 0 1.25rem 1rem;
    font-size: 0.875rem;
    color: #737373;
    line-height: 1.6;
}

/* ─── Professional Header & Footer ─── */
.header-utility {
    display: none;
    background: #040404;
    border-bottom: 1px solid rgba(255,255,255,.04);
}
@media (min-width: 1024px) {
    .header-utility { display: block; }
}
.header-utility-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 34px;
    font-size: 0.6875rem;
    color: rgba(255,255,255,.4);
}
.header-utility-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.header-utility-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: rgba(255,255,255,.5);
    transition: color 0.2s;
}
.header-utility-link:hover { color: #fff; }
.header-utility-note { letter-spacing: 0.02em; }

.header-main-nav { align-items: center; gap: 0.125rem; }
.header-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255,255,255,.62);
    border-radius: 10px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
}
.header-nav-link:hover { color: #fff; background: rgba(255,255,255,.06); }
.header-nav-link.active {
    color: #fff;
    box-shadow: inset 0 -2px 0 var(--brand);
    border-radius: 0;
    background: transparent;
}

.header-nav-dropdown { position: relative; }
.header-nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 13.75rem;
    background: #121212;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 0.375rem;
    box-shadow: 0 24px 48px rgba(0,0,0,.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 60;
}
.header-nav-dropdown:hover .header-nav-dropdown-menu,
.header-nav-dropdown:focus-within .header-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header-nav-dropdown-item {
    display: block;
    padding: 0.5625rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255,255,255,.58);
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
}
.header-nav-dropdown-item:hover { background: rgba(255,255,255,.06); color: #fff; }
.header-nav-dropdown-all {
    margin-top: 0.25rem;
    padding-top: 0.625rem;
    border-top: 1px solid rgba(255,255,255,.06);
    color: var(--brand) !important;
    font-weight: 600;
}

.header-actions { display: flex; align-items: center; gap: 0.375rem; flex-shrink: 0; }
.header-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    color: rgba(255,255,255,.72);
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    transition: all 0.2s;
}
.header-icon-btn:hover {
    color: #fff;
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.14);
}
.header-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: 40px;
    padding: 0 1rem;
    border-radius: 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    border: 1px solid rgba(255,255,255,.08);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.header-cart-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(225,29,46,.35);
    color: #fff;
}
.header-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: #fff;
    color: var(--brand);
    font-size: 0.625rem;
    font-weight: 800;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--brand-dark);
}

.flash-banner {
    padding: 0.75rem 0;
    font-size: 0.875rem;
    font-weight: 500;
}
.flash-banner--success { background: #ecfdf5; color: #065f46; border-bottom: 1px solid #a7f3d0; }
.flash-banner--error { background: #fef2f2; color: #991b1b; border-bottom: 1px solid #fecaca; }

.footer-cta {
    border-bottom: 1px solid rgba(255,255,255,.06);
    background: linear-gradient(135deg, rgba(225,29,46,.08) 0%, rgba(10,10,10,.6) 50%, #0a0a0a 100%);
}
.footer-cta-inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 2rem 0;
}
@media (min-width: 768px) {
    .footer-cta-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 2.25rem 0;
    }
}
.footer-cta-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand);
    margin-bottom: 0.375rem;
}
.footer-cta-title {
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
}
@media (min-width: 768px) {
    .footer-cta-title { font-size: 1.375rem; }
}
.footer-cta-desc {
    font-size: 0.8125rem;
    color: rgba(255,255,255,.4);
    margin-top: 0.375rem;
    max-width: 28rem;
}
.footer-cta-actions { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.1);
    color: #fff;
    background: rgba(255,255,255,.05);
    transition: background 0.2s, border-color 0.2s;
}
.footer-cta-btn:hover { background: rgba(255,255,255,.1); color: #fff; }
.footer-cta-btn--brand { background: var(--brand); border-color: transparent; }
.footer-cta-btn--brand:hover { background: var(--brand-dark); }
.footer-cta-btn--wa {
    background: rgba(37,211,102,.1);
    border-color: rgba(37,211,102,.22);
    color: #4ade80;
}
.footer-cta-btn--wa:hover { background: rgba(37,211,102,.18); color: #86efac; }

.footer-trust-band {
    border-bottom: 1px solid rgba(255,255,255,.05);
    padding: 1.25rem 0;
}
.footer-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
}
@media (min-width: 768px) {
    .footer-trust-grid { grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
}
.footer-trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.375rem;
    padding: 0.875rem 0.5rem;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 12px;
}
.footer-trust-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    background: rgba(225,29,46,.1);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-trust-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}
.footer-trust-sub {
    font-size: 0.6875rem;
    color: rgba(255,255,255,.38);
}

.footer-main { padding: 2.5rem 0 2rem; }
@media (min-width: 1024px) {
    .footer-main { padding: 3rem 0 2rem; }
}
.footer-col--brand { padding-bottom: 1rem; }
.footer-about-text {
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(255,255,255,.4);
    margin-top: 1.25rem;
    max-width: 20rem;
}
.footer-col-title {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
}
.footer-links { display: flex; flex-direction: column; gap: 0.125rem; }
.footer-link {
    display: inline-flex;
    align-items: center;
    padding: 0.3125rem 0;
    font-size: 0.875rem;
    color: rgba(255,255,255,.42);
    transition: color 0.2s, transform 0.2s;
}
.footer-link:hover { color: #fff; transform: translateX(3px); }
.footer-link--accent { color: var(--brand); font-weight: 600; margin-top: 0.25rem; }
.footer-link--accent:hover { color: #fca5a5; }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}
.footer-contact-icon {
    width: 2.375rem;
    height: 2.375rem;
    border-radius: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-contact-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,.32);
    margin-bottom: 0.125rem;
}
.footer-contact-value {
    font-size: 0.875rem;
    color: rgba(255,255,255,.72);
    transition: color 0.2s;
}
a.footer-contact-value:hover { color: #fff; }

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}
.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255,255,255,.32);
}
.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem 1.25rem;
    justify-content: center;
}
@media (min-width: 768px) {
    .footer-bottom-links { justify-content: flex-end; }
}
.footer-bottom-links a {
    font-size: 0.75rem;
    color: rgba(255,255,255,.35);
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.75); }

@media (min-width: 768px) {
    .footer-accordion-btn .footer-col-title {
        display: block;
        padding-bottom: 0.75rem;
        margin-bottom: 0.75rem;
        border-bottom: 1px solid rgba(255,255,255,.08);
        position: relative;
    }
    .footer-accordion-btn .footer-col-title::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 1.75rem;
        height: 2px;
        background: var(--brand);
        border-radius: 1px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .animate-fade-up, .delay-1, .delay-2, .delay-3, .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
    .announcement-bar::after, .hero-orb { animation: none !important; }
    .whatsapp-fab-pulse { animation: none !important; }
}

/* Legal & about pages */
.legal-page { color: #525252; }
.legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}
.legal-nav-link {
    padding: 0.5rem 0.875rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #404040;
    background: #f5f5f5;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.legal-nav-link:hover { background: #fee2e2; color: var(--brand); }
.legal-body h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0a0a0a;
    margin: 2rem 0 0.75rem;
}
.legal-body p, .legal-body li { line-height: 1.75; margin-bottom: 0.75rem; }
.legal-body ul { padding-left: 1.25rem; list-style: disc; }
.legal-lead { font-size: 1.0625rem; color: #404040; margin-bottom: 1rem; }
.legal-company-box {
    margin-top: 2.5rem;
    padding: 1.25rem 1.5rem;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 1rem;
}
.legal-dl { display: grid; gap: 0.5rem; font-size: 0.875rem; }
.legal-dl dt { font-weight: 600; color: #737373; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; }
.legal-dl dd { margin: 0 0 0.5rem; color: #262626; }
.about-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 1024px) {
    .about-grid { grid-template-columns: 1fr 280px; align-items: start; }
}
.about-list { padding-left: 1.25rem; list-style: disc; }
.about-list li { margin-bottom: 0.35rem; }
.about-features { display: grid; gap: 1rem; }
@media (min-width: 640px) { .about-features { grid-template-columns: 1fr 1fr; } }
.about-feature {
    padding: 1rem 1.125rem;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 0.875rem;
}
.about-feature strong { display: block; color: #0a0a0a; margin-bottom: 0.25rem; font-size: 0.9375rem; }
.about-feature span { font-size: 0.875rem; color: #737373; line-height: 1.5; }

/* Home — story & quick links */
.home-story {
    display: grid;
    gap: 2rem;
    padding: 2rem;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 1.25rem;
}
@media (min-width: 768px) {
    .home-story { grid-template-columns: 1.4fr 1fr; align-items: start; gap: 2.5rem; padding: 2.5rem; }
}
.home-story-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}
.home-story-steps li {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    color: #404040;
}
.home-story-steps li span {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #0a0a0a;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}
.home-quick-links {
    display: grid;
    gap: 0.75rem;
}
@media (min-width: 768px) {
    .home-quick-links { grid-template-columns: repeat(3, 1fr); }
}
.home-quick-link {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem 1.375rem;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 1rem;
    transition: border-color 0.15s, background 0.15s;
}
.home-quick-link:hover {
    border-color: #d4d4d4;
    background: #f5f5f5;
}
.home-quick-link strong {
    font-size: 1rem;
    color: #0a0a0a;
}
.home-quick-link span {
    font-size: 0.8125rem;
    color: #737373;
    line-height: 1.45;
}

/* Brand model picker */
.brand-model-grid {
    display: grid;
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .brand-model-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .brand-model-grid { grid-template-columns: repeat(3, 1fr); }
}
.brand-model-card {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.25rem 1.375rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 1rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.brand-model-card:hover {
    border-color: #d4d4d4;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.brand-model-card strong {
    font-size: 1.0625rem;
    color: #0a0a0a;
}
.brand-model-card span {
    font-size: 0.8125rem;
    color: #737373;
}
.brand-model-card em {
    font-style: normal;
    font-size: 0.75rem;
    color: #a3a3a3;
    margin-top: 0.25rem;
}
