/* ── Page Loader ──────────────────────────────── */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        #0a0a0a;
    background-size: 32px 32px, 32px 32px, auto;
    opacity: 1;
    transition: opacity 0.45s ease;
}

.page-loader.loader-out {
    opacity: 0;
    pointer-events: none;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    animation: loaderFadeIn 0.35s ease both;
}

@keyframes loaderFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.loader-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.loader-icon {
    width: 2.4rem;
    height: 2.4rem;
    color: #FF8C00;
    filter: drop-shadow(0 0 10px rgba(255,140,0,0.7));
    animation: loaderPulse 1.2s ease-in-out infinite alternate;
}

@keyframes loaderPulse {
    from { filter: drop-shadow(0 0 6px rgba(255,140,0,0.5)); }
    to   { filter: drop-shadow(0 0 18px rgba(255,107,43,0.9)); }
}

.loader-brand {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, #FFB347, #FF6B2B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loader-bar-track {
    width: 200px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, #FF6B2B, #FFB347);
    box-shadow: 0 0 8px rgba(255,140,0,0.6);
    animation: loaderProgress 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loaderProgress {
    0%   { width: 0%; }
    60%  { width: 75%; }
    100% { width: 100%; }
}

.loader-label {
    font-size: 0.72rem;
    color: rgba(156,163,175,0.7);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    animation: loaderBlink 1s ease-in-out infinite alternate;
}

@keyframes loaderBlink {
    from { opacity: 0.5; }
    to   { opacity: 1; }
}

/* ──────────────────────────────────────────────── */

/* Base visual gamer clean */
:root {
    color-scheme: dark;
}

/* ── Custom scrollbar ─────────────────────────── */
html {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 140, 0, 0.55) rgba(255, 255, 255, 0.04);
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FF8C00, #E65000);
    border-radius: 999px;
    box-shadow: 0 0 6px rgba(255, 140, 0, 0.4);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #FFB347, #FF6B2B);
}

::-webkit-scrollbar-corner {
    background: transparent;
}
/* ──────────────────────────────────────────────── */

body {
    background: #0a0a0a;
    color: #e5e7eb;
}

.site-bg {
    /* Corner glows only — grid is offloaded to #site-grid fixed div */
    background:
        radial-gradient(900px 400px at 5% -10%, rgba(255, 107, 43, 0.14), transparent 70%),
        radial-gradient(800px 350px at 95% 10%, rgba(230, 80, 0, 0.12), transparent 70%),
        #0a0a0a;
}

/* Grid lines live in their own GPU-composited fixed layer.
   Never re-paints on scroll — purely cosmetic and zero scroll cost. */
#site-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 32px 32px;
    will-change: transform;
    transform: translateZ(0);
}

/* Mouse-following glow isolated in its own compositing layer.
   Only this element repaints on mousemove — the rest of the page is untouched. */
#cursor-glow {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    --lx: 50%;
    --ly: 50%;
    background: radial-gradient(700px 500px at var(--lx) var(--ly), rgba(255, 140, 0, 0.12), transparent 72%);
    will-change: transform;
    transform: translateZ(0);
}

body.is-scrolling #cursor-glow {
    opacity: 0;
}

/* Glass: solid semi-transparent surface — looks identical on dark bg, zero blur cost on scroll.
   Blur is only applied to the sticky header (see #site-header rule below), where it matters most. */
.glass {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Only the sticky header gets real backdrop blur — it's the one element where
   blur over scrolling content is actually visible and meaningful. */
#site-header.glass,
.glass-blur {
    background: rgba(10, 10, 10, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    will-change: transform;
    transform: translateZ(0);
}

body.is-scrolling #site-header.glass,
body.is-scrolling .glass-blur {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(10, 10, 10, 0.9);
}

.liquid-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    will-change: transform;
    contain: layout style;
    /* Skip rendering of off-screen cards entirely — browser resumes when they enter viewport */
    content-visibility: auto;
    contain-intrinsic-size: 0 280px;
}

.liquid-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        350px circle at var(--mx, 50%) var(--my, 50%),
        rgba(255, 140, 0, 0.22),
        rgba(255, 107, 43, 0.07) 35%,
        transparent 70%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.liquid-card:hover::before {
    opacity: 1;
}

.liquid-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 140, 0, 0.45);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
}

.premium-shell {
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.premium-shell:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 18px 36px rgba(2, 6, 23, 0.34);
}

.skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.12), rgba(255,255,255,0.06));
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite linear;
    border-radius: 0.5rem;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.badge-waiting {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(250, 204, 21, 0.4);
    background: rgba(250, 204, 21, 0.09);
    color: #fde68a;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.input-glass {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e5e7eb;
    border-radius: 0.75rem;
    padding: 0.65rem 0.85rem;
    outline: none;
}

select.input-glass {
    background-color: #0a0a0a;
    color: #e5e7eb;
}

select.input-glass option {
    background-color: #0a0a0a;
    color: #e5e7eb;
}

.input-glass:focus {
    border-color: rgba(255, 140, 0, 0.65);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.18);
}

.btn-primary {
    background: linear-gradient(135deg, #E65000, #FF8C00);
    color: #fff;
    border-radius: 0.75rem;
    padding: 0.65rem 0.95rem;
    font-weight: 600;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
}

.btn-muted {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #e5e7eb;
    border-radius: 0.75rem;
    padding: 0.55rem 0.85rem;
}

.btn-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    border-radius: 0.5rem;
    padding: 0.35rem 0.5rem;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-delete:hover {
    background: rgba(239, 68, 68, 0.28);
    border-color: rgba(239, 68, 68, 0.65);
    transform: scale(1.08);
}

.btn-delete:disabled {
    opacity: 0.4;
    pointer-events: none;
}

.btn-cart-gloss {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(230, 80, 0, 0.32), rgba(255, 140, 0, 0.24));
    border: 1px solid rgba(255, 140, 0, 0.28);
    color: #e5e7eb;
    border-radius: 0.75rem;
    padding: 0.55rem 0.85rem;
    font-weight: 600;
    transition: transform 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.btn-cart-gloss::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.35) 46%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.5s ease;
}

.btn-cart-gloss:hover {
    transform: scale(1.04);
    border-color: rgba(255, 140, 0, 0.75);
    filter: brightness(1.1);
}

.btn-cart-gloss:hover::after {
    transform: translateX(120%);
}

.promo-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scroll-snap-type: x mandatory;
}

.hero-slider-wrapper {
    padding: 0.7rem;
}

.hero-slide {
    position: relative;
    height: 390px;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(96deg, rgba(2, 6, 23, 0.84) 12%, rgba(2, 6, 23, 0.35) 55%, rgba(2, 6, 23, 0.72) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
    padding: 2rem;
}

.hero-badge {
    width: fit-content;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 140, 0, 0.35);
    background: rgba(255, 107, 43, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #FFD580;
}

.hero-nav {
    width: 40px !important;
    height: 40px !important;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff !important;
}

.hero-nav::after {
    font-size: 14px !important;
    font-weight: 800;
}

.hero-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    opacity: 1;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 999px;
    background: rgba(255, 179, 71, 0.95);
}

.benefit-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.78rem 0.95rem;
    color: #d1d5db;
}

.product-thumb {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    padding: 0.18rem;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.product-thumb:hover,
.product-thumb.is-active {
    border-color: rgba(255, 140, 0, 0.75);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(255, 107, 43, 0.22);
}

.product-color.is-active {
    border-color: rgba(255, 140, 0, 0.75) !important;
    box-shadow: 0 8px 20px rgba(255, 107, 43, 0.2);
}

.color-chip {
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: inline-block;
}

.color-chip-empty {
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0.15) 3px,
        rgba(255, 255, 255, 0.03) 3px,
        rgba(255, 255, 255, 0.03) 6px
    );
}

.rating-stars {
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    color: #facc15;
    line-height: 1;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    border: 1px solid rgba(52, 211, 153, 0.4);
    background: rgba(16, 185, 129, 0.15);
    color: #86efac;
    padding: 0.2rem 0.52rem;
    font-size: 0.7rem;
    font-weight: 600;
}

.promo-item {
    min-width: 280px;
    height: 140px;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
}

.promo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-caption {
    position: absolute;
    inset: auto 0 0 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
    padding: 0.75rem;
    font-size: 0.82rem;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: #d1d5db;
    font-size: 0.8rem;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.category-chip:hover,
.category-chip.active {
    border-color: rgba(255, 140, 0, 0.7);
    background: rgba(230, 80, 0, 0.18);
    color: #fff;
}

.category-group {
    display: contents; /* flat in mobile flex; becomes block in desktop grid */
}

.brand-rail {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.4rem;
    padding-left: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.brand-chip {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #9ca3af;
    font-size: 0.72rem;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.brand-chip:hover,
.brand-chip.active {
    border-color: rgba(255, 140, 0, 0.6);
    background: rgba(230, 80, 0, 0.16);
    color: #fdba74;
}

.product-brand-badge {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #f3f4f6;
    pointer-events: none;
}

.cat-chevron.rotated {
    transform: rotate(180deg);
}

/* ── Image upload drop-zone ───────────────────── */
.img-upload-zone {
    display: block;
    cursor: pointer;
    border: 2px dashed rgba(255, 140, 0, 0.35);
    border-radius: 0.875rem;
    padding: 1rem;
    text-align: center;
    transition: border-color 0.2s ease, background 0.2s ease;
    background: rgba(255, 255, 255, 0.02);
}

.img-upload-zone:hover {
    border-color: rgba(255, 140, 0, 0.7);
    background: rgba(255, 140, 0, 0.05);
}

.category-rail {
    overflow-x: auto;
    display: flex;
    gap: 0.6rem;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
    max-width: 100%;
    min-width: 0;
}

.category-rail > * {
    min-width: 0;
}

.brand-rail {
    max-width: 100%;
    min-width: 0;
}

.mobile-stack {
    display: grid;
    gap: 1rem;
    min-width: 0;
}

.mobile-stack > * {
    min-width: 0;
}

.site-footer,
.site-footer > * {
    min-width: 0;
}

.site-footer p,
.site-footer a,
.site-footer button {
    overflow-wrap: anywhere;
}

.support-widget {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 70;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 0.7rem;
}

.support-fab {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #e5e7eb;
    border-radius: 999px;
    padding: 0.72rem 0.9rem;
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.45);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.support-fab:hover {
    transform: translateX(-4px);
    border-color: rgba(255, 140, 0, 0.75);
}

.support-fab-label {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: max-width 0.35s ease, opacity 0.25s ease, transform 0.3s ease;
    font-size: 0.8rem;
    font-weight: 600;
}

.support-fab:hover .support-fab-label,
.support-widget.is-open .support-fab-label {
    max-width: 220px;
    opacity: 1;
    transform: translateX(0);
}

.support-panel {
    display: none;
    width: min(360px, calc(100vw - 2rem));
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(15, 23, 42, 0.86);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 45px rgba(2, 6, 23, 0.55);
    padding: 0.85rem;
    opacity: 0;
    transform: translateY(16px) scale(0.96);
    transform-origin: bottom right;
    transition: opacity 0.25s ease, transform 0.3s ease;
}

.support-panel.panel-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.support-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.35rem 0.2rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.support-admins {
    padding: 0.8rem 0.2rem 0.65rem;
}

.support-admin-stack {
    margin-top: 0.45rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.admin-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    color: #dbeafe;
    font-size: 0.72rem;
    padding: 0.25rem 0.5rem;
}

.admin-dot {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: #34d399;
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.18);
}

.support-panel-body {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    padding: 0.8rem;
}

@media (min-width: 1024px) {
    .mobile-stack {
        grid-template-columns: 250px minmax(0, 1fr);
        align-items: start;
    }

    .category-side {
        position: sticky;
        top: 6.25rem;
    }

    .category-rail {
        display: flex;
        flex-direction: column;
        overflow: visible;
        gap: 0.4rem;
    }

    .category-group {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
    }

    .brand-rail {
        flex-wrap: wrap;
        overflow: visible;
        padding-left: 1rem;
    }
}

@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }

    .category-rail {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.55rem;
        overflow: visible;
        padding-bottom: 0;
    }

    .category-group {
        display: block;
    }

    .category-chip {
        width: 100%;
        justify-content: flex-start;
        padding: 0.62rem 0.8rem;
        font-size: 0.82rem;
    }

    .brand-rail {
        flex-wrap: wrap;
        overflow: visible;
        padding-left: 0.25rem;
        margin-top: 0.35rem;
        row-gap: 0.45rem;
    }

    .brand-chip {
        font-size: 0.74rem;
        padding: 0.36rem 0.68rem;
    }

    .hero-slide {
        height: 330px;
    }

    .hero-content {
        padding: 1.4rem;
    }

    .hero-nav {
        display: none !important;
    }

    .support-widget {
        right: 0.75rem;
        bottom: 0.75rem;
        flex-direction: column-reverse;
    }

    .products-filter-grid {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .products-filter-grid > .flex-1,
    .products-filter-grid > .w-28,
    .products-filter-grid > button,
    .products-filter-grid > a {
        width: 100%;
        min-width: 0;
    }

    .products-filter-grid > button,
    .products-filter-grid > a {
        justify-content: center;
    }
}
/* ── Header slide-down panels ─────────────────────────────────── */
.header-panels-wrap {
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s cubic-bezier(.4,0,.2,1);
    border-top: 1px solid transparent;
}

.header-panels-wrap.panel-open {
    max-height: 520px;
    border-top-color: rgba(255,255,255,.08);
}

.header-panel {
    display: none;
}

.header-panel.panel-active {
    display: block;
}

.order-chevron.rotated {
    transform: rotate(90deg);
}