/* Motoparcacin.com — Premium Design System */

:root {
    --brand: #E11D2E;
    --brand-dark: #B91C1C;
    --brand-glow: rgba(225, 29, 46, 0.15);
    --ink: #0A0A0A;
    --ink-soft: #171717;
    --muted: #737373;
    --line: rgba(0, 0, 0, 0.06);
    --glass: rgba(255, 255, 255, 0.72);
    --radius: 16px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,.06);
    --shadow-lg: 0 20px 50px rgba(0,0,0,.10);
    --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: 4rem; position: relative; }
@media (min-width: 1024px) { .hero-section { padding-bottom: 5rem; } }
.hero-content { position: relative; z-index: 2; }

.hero-product-panel {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 1.5rem;
    padding: 1.25rem;
}
.hero-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
.hero-product-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 1rem;
    padding: 0.75rem;
    transition: border-color 0.25s, transform 0.25s;
}
.hero-product-card:hover {
    border-color: rgba(225,29,46,.35);
    transform: translateY(-2px);
}
.hero-product-card .thumb {
    aspect-ratio: 1;
    background: rgba(255,255,255,.06);
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 0.5rem;
}
.hero-product-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

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

/* 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(10, 10, 10, 0.96);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.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: var(--ink);
    color: rgba(255,255,255,.55);
    margin-top: auto;
}
.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: 3rem;
    padding: 0 1rem;
    background: #F7F7F8;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.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;
}
.hero-stats {
    border-color: rgba(255,255,255,.12);
}
@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 { backdrop-filter: blur(12px); }
.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;
}
.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);
}

/* 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 .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; }
}

@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; }
}
