:root {
    --ink: #182033;
    --muted: #667085;
    --subtle: #8a93a6;
    --line: #d8deea;
    --line-soft: #e8edf5;
    --page: #f4f7fb;
    --surface: rgba(255, 255, 255, .9);
    --surface-soft: #f8fbff;
    --blue: #2563eb;
    --blue-hover: #1d4ed8;
    --green: #17805d;
    --red: #c2413d;
    --amber: #9a6700;
    --teal: #0f9f9a;
    --rose: #d94680;
    --focus-ring: rgba(37, 99, 235, .16);
    --shadow-soft: 0 20px 60px rgba(24, 32, 51, .08);
    --shadow-strong: 0 26px 70px rgba(24, 32, 51, .14);
    --radius: 8px;
    --image-radius: 16px;
    --image-radius-sm: 12px;
    --shadow: 0 18px 50px rgba(24, 32, 51, .10);
    --font-display: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
    --font-body: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
    --tracking-tight: 0;
    --tracking-display: 0;
    --tracking-hero: 0;
    --text-body: 17px;
    --text-small: 14px;
    --text-caption: 12px;
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--text-body);
    line-height: 1.47059;
    font-weight: 400;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, .10), transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(15, 159, 154, .10), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, var(--page) 46%, #eef3fb 100%);
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    z-index: 0;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(42px);
    opacity: .32;
}

body::before {
    top: -9rem;
    left: -10rem;
    background: radial-gradient(circle, rgba(37, 99, 235, .22) 0%, rgba(37, 99, 235, 0) 68%);
    animation: ambientFloat 18s ease-in-out infinite;
}

body::after {
    right: -10rem;
    bottom: 10%;
    background: radial-gradient(circle, rgba(15, 159, 154, .18) 0%, rgba(15, 159, 154, 0) 68%);
    animation: ambientFloat 22s ease-in-out -6s infinite reverse;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--blue);
}

button,
input,
select,
textarea {
    font: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.site-header,
main,
.site-footer {
    position: relative;
    z-index: 1;
}

.skip-link {
    position: absolute;
    top: -4rem;
    left: 1rem;
    z-index: 10000;
    padding: .55rem .9rem;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: .8rem;
}

.skip-link:focus {
    top: 1rem;
}

.container {
    max-width: 1180px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 2.35rem;
    border-radius: 999px;
    font-weight: 500;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(24, 32, 51, .08);
    transition: transform .18s ease, box-shadow .22s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
    will-change: transform;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(24, 32, 51, .12);
}

.icon {
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
}

.btn .icon,
.utility-link .icon,
.cart-pill .icon,
.compare-pill .icon {
    width: 1rem;
    height: 1rem;
}

.btn-lg .icon {
    width: 1.08rem;
    height: 1.08rem;
}

.icon-btn,
.btn-sm.icon-btn {
    width: 2.25rem;
    min-width: 2.25rem;
    height: 2.25rem;
    min-height: 2.25rem;
    padding: 0;
    border-radius: 999px;
}

.btn-lg {
    min-height: 2.8rem;
    padding: .72rem 1.22rem;
    font-size: 1rem;
}

.btn-sm {
    min-height: 2rem;
    padding: .42rem .8rem;
    font-size: .84rem;
}

.btn-dark {
    border-color: var(--blue);
    background: linear-gradient(135deg, var(--blue), #3b82f6);
    color: #fff;
}

.btn-dark:hover,
.btn-dark:focus {
    border-color: var(--blue-hover);
    background: linear-gradient(135deg, var(--blue-hover), var(--blue));
    color: #fff;
}

.btn-outline-dark {
    border-color: var(--blue);
    color: var(--blue);
    background: rgba(255, 255, 255, .64);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
    border-color: var(--blue);
    background: linear-gradient(135deg, var(--blue), #3b82f6);
    color: #fff;
}

.btn-light {
    border-color: #fff;
    background: #fff;
    color: var(--blue);
}

.btn-light:hover,
.btn-light:focus {
    border-color: #fff;
    background: #fff;
    color: var(--blue-hover);
}

.btn:disabled,
.btn.disabled {
    border-color: #d2d2d7;
    background: #e8e8ed;
    color: #86868b;
    opacity: 1;
}

.form-control,
.form-select {
    min-height: 2.75rem;
    border-radius: var(--radius);
    border-color: var(--line);
    padding: .66rem .8rem;
    color: var(--ink);
    background-color: #fff;
    font-size: .94rem;
    box-shadow: none;
}

textarea.form-control {
    min-height: 7.5rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px var(--focus-ring);
}

.form-check-input {
    border-color: var(--line);
}

.form-check-input:checked {
    border-color: var(--blue);
    background-color: var(--blue);
}

.alert {
    border-radius: var(--radius);
}

.site-header {
    min-height: 44px;
    border-bottom: 1px solid rgba(216, 222, 234, .78);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(248, 251, 255, .74)),
        rgba(251, 251, 253, .82);
    backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .8);
}

.navbar {
    min-height: 44px;
    padding: 0;
}

.brand-mark {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: .48rem;
    color: var(--ink);
    font-size: .82rem;
    font-weight: 600;
}

.brand-logo {
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
    display: block;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 8px;
    background: #003f88;
    object-fit: cover;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
}

.footer-brand .brand-logo,
.setup-card .brand-logo {
    width: 2.35rem;
    height: 2.35rem;
    flex-basis: 2.35rem;
}

.brand-symbol {
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    border-radius: 5px;
    background: var(--ink);
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    line-height: 1;
}

.brand-name {
    min-width: 0;
    max-width: min(310px, 56vw);
    overflow: hidden;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.navbar-toggler {
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 999px;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 4px rgba(0, 113, 227, .12);
}

.navbar .nav-link {
    padding: 0 .72rem;
    color: rgba(29, 29, 31, .84);
    font-size: .75rem;
    font-weight: 400;
    line-height: 44px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #000;
}

.store-nav {
    gap: .05rem;
}

.store-actions {
    gap: .05rem !important;
}

.utility-link,
.cart-pill,
.compare-pill {
    min-height: 2rem;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border-radius: 999px;
    padding: .25rem .55rem;
    color: rgba(29, 29, 31, .84);
    background: transparent;
    font-size: .75rem;
}

.utility-link:hover,
.cart-pill:hover,
.compare-pill:hover {
    color: var(--blue);
    background: rgba(37, 99, 235, .08);
}

.cart-count,
.compare-count {
    min-width: 1.15rem;
    height: 1.15rem;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ink), #32405d);
    color: #fff;
    font-size: .66rem;
    line-height: 1;
}

.compare-pill.is-empty .compare-count {
    background: #86868b;
}

.hero-section {
    padding: 0;
    background:
        radial-gradient(circle at top center, rgba(37, 99, 235, .08), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(248, 251, 255, .9));
}

.hero-shell {
    min-height: calc(100vh - 44px);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    align-items: end;
    gap: 1.1rem;
    padding: clamp(3rem, 7vh, 4.5rem) 0 1.25rem;
    overflow: hidden;
}

.motion-surface::before {
    display: none;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.certified-panel h2,
.conversion-band h2,
.tracking-head h2,
.empty-state h2,
.setup-card h1,
.admin-heading h1 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.05;
}

.hero-copy h1 {
    max-width: 820px;
    margin: 0 auto;
    font-size: clamp(3rem, 7vw, 5.8rem);
}

.hero-copy p {
    max-width: 650px;
    margin: 1rem auto 1.45rem;
    color: var(--muted);
    font-size: clamp(1.08rem, 2vw, 1.32rem);
    line-height: 1.35;
}

.hero-actions,
.pdp-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .8rem;
}

.hero-visual {
    position: relative;
    z-index: 1;
    align-self: stretch;
    display: flex;
    align-items: end;
}

.hero-device-stage {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: min(56vh, 590px);
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 18% 22%, rgba(15, 159, 154, .12), transparent 28%),
        radial-gradient(circle at 76% 18%, rgba(37, 99, 235, .12), transparent 24%),
        linear-gradient(180deg, #fbfdff 0%, #f2f7ff 56%, #e7eef9 100%);
    perspective: 1400px;
    box-shadow: var(--shadow-soft);
}

.cinematic-stage::before {
    content: "";
    position: absolute;
    inset: 8% 12% auto;
    height: 36%;
    background:
        linear-gradient(90deg, transparent, rgba(255, 255, 255, .8), transparent);
    opacity: .68;
    transform: skewY(-7deg) translateX(-58%);
    animation: lightSweep 8.5s ease-in-out infinite;
    pointer-events: none;
}

.cinematic-stage::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 33%;
    background: linear-gradient(180deg, rgba(245, 245, 247, 0), rgba(245, 245, 247, .92));
    z-index: 3;
    pointer-events: none;
}

.hero-shelf {
    position: absolute;
    left: 9%;
    right: 9%;
    bottom: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(29, 29, 31, .28), transparent);
    transform: perspective(700px) rotateX(62deg);
    z-index: 1;
}

.hero-device-card {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    margin: 0;
    border-radius: var(--radius);
    transform-style: preserve-3d;
    transition: transform .16s ease-out;
    will-change: transform;
}

.hero-device-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border-radius: var(--image-radius);
    filter: drop-shadow(0 26px 36px rgba(0, 0, 0, .18));
}

.hero-laptop {
    left: 50%;
    bottom: 5%;
    width: min(850px, 78vw);
    height: min(420px, 38vw);
    transform: translateX(-50%) translate3d(var(--motion-x, 0), var(--motion-y, 0), 0) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    animation: heroBreathe 7.5s ease-in-out infinite;
}

.hero-phone-one {
    right: 10%;
    top: 9%;
    width: min(220px, 18vw);
    height: min(300px, 28vw);
    transform: translate3d(var(--motion-x, 0), var(--motion-y, 0), 0) rotateZ(5deg) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    animation: deviceFloat 8s ease-in-out .4s infinite;
}

.hero-phone-two {
    left: 8%;
    bottom: 18%;
    width: min(205px, 17vw);
    height: min(285px, 27vw);
    transform: translate3d(var(--motion-x, 0), var(--motion-y, 0), 0) rotateZ(-7deg) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    animation: deviceFloat 8.4s ease-in-out 1.1s infinite reverse;
}

.hero-accessory {
    right: 8%;
    bottom: 13%;
    width: min(180px, 15vw);
    height: min(180px, 15vw);
    transform: translate3d(var(--motion-x, 0), var(--motion-y, 0), 0) rotateZ(-4deg);
    animation: deviceFloat 7.6s ease-in-out .8s infinite;
}

.eyebrow {
    display: inline-block;
    margin-bottom: .62rem;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
}

.trust-strip {
    padding: .75rem 0 4rem;
    background: var(--surface);
}

.trust-card,
.footer-card {
    min-height: 108px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(248, 251, 255, .92));
    padding: 1.15rem;
    box-shadow: var(--shadow-soft);
}

.kinetic-card {
    --card-lift: 0px;
    --card-rx: 0deg;
    --card-ry: 0deg;
    transform: perspective(900px) translateY(var(--card-lift)) rotateX(var(--card-rx)) rotateY(var(--card-ry));
    transform-style: preserve-3d;
    transition: transform .18s ease, border-color .2s ease, background-color .2s ease;
    will-change: transform;
}

.kinetic-card:hover {
    --card-lift: -3px;
    border-color: var(--line);
    background: #fff;
}

.trust-icon {
    width: 2.15rem;
    height: 2.15rem;
    display: inline-grid;
    place-items: center;
    margin-bottom: .65rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--blue), var(--teal));
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
}

.trust-card strong,
.footer-card strong {
    display: block;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 600;
}

.trust-card span,
.footer-card span {
    color: var(--muted);
    font-size: .94rem;
}

.motion-showcase {
    padding: 0 0 4.5rem;
    background: var(--surface);
}

.motion-rail {
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(245, 249, 255, .96));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.motion-track {
    width: max-content;
    display: flex;
    gap: 0;
    animation: productRail 38s linear infinite;
    will-change: transform;
}

.motion-rail:hover .motion-track {
    animation-play-state: paused;
}

.motion-item {
    flex: 0 0 clamp(190px, 23vw, 270px);
    display: grid;
    gap: .7rem;
    place-items: center;
    margin: 0;
    border-right: 1px solid var(--line-soft);
    padding: 1rem;
}

.motion-item img {
    display: block;
    width: 100%;
    height: 160px;
    object-fit: contain;
    border-radius: 18px;
    clip-path: inset(0 round 18px);
    filter: drop-shadow(0 15px 22px rgba(0, 0, 0, .12));
    animation: railFloat 5.8s ease-in-out infinite;
}

.motion-item:nth-child(2n) img {
    animation-delay: -1.8s;
}

.motion-item:nth-child(3n) img {
    animation-delay: -3.2s;
}

.motion-item figcaption {
    color: var(--ink);
    font-size: .92rem;
    font-weight: 600;
}

.section-pad {
    padding: 4.5rem 0;
}

.section-heading {
    margin-bottom: 1.35rem;
}

.section-heading h2 {
    max-width: 860px;
    margin: 0;
    font-size: clamp(2.25rem, 5vw, 4.2rem);
}

.section-heading.split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.25rem;
}

.category-tile {
    --card-lift: 0px;
    --card-rx: 0deg;
    --card-ry: 0deg;
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, .06), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 251, 255, .94));
    padding: 1.5rem;
    color: var(--ink);
    transform: perspective(1000px) translateY(var(--card-lift)) rotateX(var(--card-rx)) rotateY(var(--card-ry));
    transform-style: preserve-3d;
    transition: transform .2s ease, border-color .2s ease, box-shadow .24s ease, background .24s ease;
    will-change: transform;
}

.category-tile:hover {
    --card-lift: -4px;
    border-color: var(--line-soft);
    box-shadow: var(--shadow-strong);
    color: var(--ink);
}

.category-tile span,
.category-tile em {
    position: relative;
    z-index: 2;
    color: var(--muted);
    font-style: normal;
    font-size: .96rem;
    font-weight: 500;
}

.category-tile em {
    color: var(--blue);
}

.category-tile strong {
    position: relative;
    z-index: 2;
    max-width: 78%;
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    font-weight: 600;
    line-height: 1.08;
}

.category-product-image {
    position: absolute;
    right: -5%;
    bottom: 10%;
    z-index: 1;
    width: min(62%, 250px);
    height: 48%;
    object-fit: contain;
    border-radius: calc(var(--image-radius) + 8px);
    opacity: .86;
    filter: drop-shadow(0 18px 26px rgba(0, 0, 0, .12));
    transform: translate3d(var(--motion-x, 0), var(--motion-y, 0), 0) rotate(-4deg) scale(1);
    transition: transform .32s ease, opacity .32s ease;
}

.category-tile:hover .category-product-image {
    opacity: 1;
    transform: translate3d(var(--motion-x, 0), var(--motion-y, 0), 0) rotate(-1deg) scale(1.04);
}

.product-grid {
    display: grid;
    gap: 1rem;
}

.product-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
    --card-lift: 0px;
    --card-rx: 0deg;
    --card-ry: 0deg;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 251, 255, .95));
    transform: perspective(1000px) translateY(var(--card-lift)) rotateX(var(--card-rx)) rotateY(var(--card-ry));
    transform-style: preserve-3d;
    transition: transform .2s ease, border-color .2s ease, box-shadow .24s ease, background .24s ease;
    will-change: transform;
}

.product-card:hover {
    --card-lift: -4px;
    border-color: var(--line-soft);
    box-shadow: var(--shadow-strong);
}

.product-card-image {
    position: relative;
    display: block;
    aspect-ratio: 1.14;
    overflow: hidden;
    margin: .65rem .65rem 0;
    border: 1px solid var(--line-soft);
    border-radius: var(--image-radius);
    background: var(--surface-soft);
}

.product-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    border-radius: 20px;
    clip-path: inset(0 round 20px);
    transition: transform .28s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.035);
}

.deal-badge {
    position: absolute;
    top: .75rem;
    left: .75rem;
    border-radius: 999px;
    padding: .32rem .58rem;
    background: var(--ink);
    color: #fff;
    font-size: .72rem;
    font-weight: 600;
}

.product-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .72rem;
    padding: 1rem;
}

.product-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .65rem;
}

.condition-pill,
.stock-dot,
.admin-status {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: .28rem .54rem;
    font-size: .74rem;
    font-weight: 600;
    white-space: nowrap;
}

.condition-pill {
    background: #f5f5f7;
    color: var(--muted);
}

.condition-new,
.admin-status-active,
.admin-status-paid,
.admin-status-delivered {
    background: #eaf4ff;
    color: #0056b3;
}

.condition-excellent,
.admin-status-shipped,
.admin-status-in-transit {
    background: #edf8f0;
    color: var(--green);
}

.condition-good,
.admin-status-processing,
.admin-status-pending {
    background: #fff8e5;
    color: var(--amber);
}

.condition-fair,
.admin-status-draft,
.admin-status-cancelled,
.admin-status-failed,
.admin-status-archived {
    background: #fff0ee;
    color: var(--red);
}

.admin-status-inactive {
    background: #eef1f4;
    color: #56616f;
}

.stock-dot {
    color: var(--green);
    padding-right: 0;
}

.stock-dot.out {
    color: var(--red);
}

.stock-dot::before {
    content: "";
    width: .42rem;
    height: .42rem;
    flex: 0 0 .42rem;
    margin-right: .32rem;
    border-radius: 999px;
    background: currentColor;
}

.product-card h3 {
    min-height: 2.4rem;
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.22;
}

.product-card p {
    min-height: 2.55rem;
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.35;
}

.price-row {
    min-height: 2.15rem;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: auto;
}

.price-row strong {
    color: var(--ink);
    font-size: clamp(1.12rem, 1.25vw, 1.35rem);
    font-weight: 600;
    white-space: nowrap;
}

.price-row.xl strong {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
}

.price-row del {
    color: var(--subtle);
    white-space: nowrap;
}

.card-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) repeat(2, 2.55rem);
    align-items: center;
    gap: .55rem;
}

.product-card .card-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 2.45rem;
    padding: .68rem .78rem;
    font-size: .9rem;
    white-space: nowrap;
}

.product-card .card-actions .btn-dark {
    grid-column: auto;
}

.product-card .card-actions .icon-action {
    width: 2.55rem;
    height: 2.55rem;
    padding: 0;
    border-radius: 999px;
}

.product-card .card-actions .btn-link,
.product-card .card-actions .btn-compare {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--blue);
    text-decoration: none;
}

.product-card .card-actions .btn-link:hover,
.product-card .card-actions .btn-compare:hover,
.product-card .card-actions .btn-compare.is-selected {
    border-color: var(--blue);
    background: #f5faff;
    color: var(--blue);
}

.product-card .card-actions .btn-compare.is-selected {
    background: var(--blue);
    color: #fff;
}

.certified-section {
    padding: 0 0 4.5rem;
}

.certified-panel,
.conversion-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .64fr);
    align-items: center;
    gap: 2rem;
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(248, 251, 255, .92));
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow: var(--shadow-soft);
}

.conversion-band {
    grid-template-columns: minmax(0, 1fr) auto;
    background:
        radial-gradient(circle at top right, rgba(89, 128, 255, .28), transparent 32%),
        linear-gradient(135deg, #172033, #24355a 58%, #134e4a);
    color: #fff;
}

.certified-scan {
    display: none;
}

.certified-panel p,
.conversion-band p {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.12rem;
}

.conversion-band .eyebrow,
.conversion-band p {
    color: rgba(255, 255, 255, .72);
}

.grade-stack {
    display: grid;
    gap: .75rem;
}

.grade-stack div {
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: rgba(248, 251, 255, .92);
    padding: .95rem;
}

.grade-stack strong {
    display: block;
    font-weight: 600;
}

.grade-stack span {
    color: var(--muted);
    font-size: .94rem;
}

.page-hero {
    padding: clamp(3rem, 8vw, 5rem) 0 2rem;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, .08), transparent 26%),
        linear-gradient(180deg, rgba(248, 251, 255, .85), rgba(244, 247, 251, .92));
}

.page-hero.compact h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(2.55rem, 6vw, 5rem);
}

.page-hero p {
    max-width: 720px;
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.42;
}

.filter-panel,
.checkout-card,
.tracking-form,
.summary-card,
.detail-card,
.tracking-card,
.setup-card,
.admin-card,
.admin-metrics > div,
.skeleton-card,
.comparison-recommendation,
.comparison-table {
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 251, 255, .92));
    box-shadow: var(--shadow-soft);
}

.filter-panel,
.checkout-card,
.tracking-form,
.summary-card,
.detail-card,
.tracking-card,
.setup-card,
.admin-card,
.admin-metrics > div {
    padding: 1.25rem;
}

.filter-panel {
    position: sticky;
    top: 64px;
    display: grid;
    gap: .95rem;
}

.filter-panel label,
.checkout-card label,
.tracking-form label,
.admin-card .form-label {
    display: grid;
    gap: .4rem;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 500;
}

.filter-header,
.shop-toolbar,
.tracking-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.filter-header a {
    color: var(--blue);
    font-size: .9rem;
}

.shop-toolbar {
    margin-bottom: 1rem;
}

.shop-toolbar strong,
.filter-header strong {
    color: var(--ink);
    font-weight: 600;
}

.sort-select {
    max-width: 220px;
}

.skeleton-card {
    overflow: hidden;
}

.skeleton-media {
    aspect-ratio: 1.14;
}

.skeleton-media,
.skeleton-line,
.loading-lines span {
    background: linear-gradient(90deg, #ececf1 25%, #fbfbfd 42%, #ececf1 65%);
    background-size: 220% 100%;
    animation: shimmer 1.15s linear infinite;
}

.skeleton-body {
    display: grid;
    gap: .75rem;
    padding: 1rem;
}

.skeleton-line {
    height: .78rem;
    border-radius: 999px;
}

.skeleton-line.short {
    width: 42%;
}

.skeleton-line.medium {
    width: 68%;
}

.skeleton-line.long {
    width: 92%;
}

.is-busy {
    position: relative;
    pointer-events: none;
    opacity: .72;
}

.btn.is-busy::after,
.link-button.is-busy::after {
    content: "";
    width: .82rem;
    height: .82rem;
    margin-left: .45rem;
    display: inline-block;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin .72s linear infinite;
}

body.has-loading-dialog {
    overflow: hidden;
}

.empty-state {
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 2.5rem;
    text-align: center;
}

.empty-state.align-left {
    text-align: left;
}

.comparison-toolbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .65rem;
}

.comparison-recommendation {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, auto) auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.comparison-recommendation h2 {
    margin: .1rem 0;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 600;
}

.comparison-recommendation p {
    margin: 0;
    color: var(--muted);
}

.comparison-recommendation ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted);
}

.comparison-scroll {
    overflow-x: auto;
    padding-bottom: .35rem;
}

.comparison-table {
    min-width: 900px;
    display: grid;
    grid-template-columns: minmax(180px, .75fr) repeat(var(--compare-columns), minmax(0, 1fr));
    overflow: hidden;
}

.comparison-cell {
    min-width: 0;
    display: grid;
    align-content: center;
    padding: .95rem;
    border-right: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}

.comparison-corner,
.comparison-label {
    background: var(--surface-soft);
    color: var(--muted);
    font-weight: 600;
}

.comparison-product-head {
    position: relative;
    gap: .65rem;
    align-content: start;
    background: #fff;
}

.comparison-product-head.is-pick::before {
    content: "Recommended";
    position: absolute;
    top: .75rem;
    right: .75rem;
    border-radius: 999px;
    padding: .25rem .48rem;
    background: #edf8f0;
    color: var(--green);
    font-size: .7rem;
    font-weight: 600;
}

.comparison-product-head img {
    width: 100%;
    aspect-ratio: 1.2;
    object-fit: contain;
    border-radius: var(--image-radius);
    background: var(--surface-soft);
    padding: .5rem;
}

.comparison-product-head h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.25;
}

.comparison-product-head strong {
    font-size: 1.2rem;
    font-weight: 600;
}

.comparison-actions {
    display: grid;
    gap: .45rem;
}

.pdp-section {
    padding: 4rem 0;
    background: var(--page);
}

.gallery-shell,
.pdp-info {
    position: sticky;
    top: 64px;
}

.main-image-wrap {
    height: clamp(480px, 58vw, 720px);
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: var(--image-radius);
    background: var(--surface);
    cursor: zoom-in;
}

.main-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    padding: 1rem;
    transition: transform .24s ease, transform-origin .08s ease;
}

.main-image-wrap.zooming img {
    transform: scale(1.48);
}

.thumb-row {
    display: flex;
    gap: .65rem;
    margin-top: .85rem;
    overflow-x: auto;
}

.thumb-button {
    width: 86px;
    height: 68px;
    flex: 0 0 auto;
    border: 1px solid var(--line-soft);
    border-radius: var(--image-radius-sm);
    padding: .15rem;
    background: #fff;
}

.thumb-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: calc(var(--image-radius-sm) - 2px);
}

.pdp-info h1 {
    margin: .9rem 0;
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 5vw, 4.35rem);
    font-weight: 600;
    line-height: 1.04;
}

.pdp-info .lead {
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.42;
}

.stock-panel {
    display: grid;
    gap: .42rem;
    margin: 1rem 0;
    border-radius: var(--radius);
    background: var(--surface);
    padding: .95rem 1rem;
}

.trust-list {
    display: grid;
    gap: .7rem;
    margin-top: 1rem;
}

.trust-list div {
    display: grid;
    gap: .18rem;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: var(--surface);
    padding: .9rem;
}

.trust-list span,
.spec-list dd,
.cart-line p,
.secure-note {
    color: var(--muted);
}

.detail-card h2,
.checkout-card h2,
.summary-card h2,
.tracking-form h2,
.admin-card h2 {
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-size: 1.42rem;
    font-weight: 600;
}

.detail-card h3 {
    margin-top: 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.rich-text-content {
    color: var(--muted);
    line-height: 1.62;
}

.rich-text-content > :first-child {
    margin-top: 0;
}

.rich-text-content > :last-child {
    margin-bottom: 0;
}

.rich-text-content h2,
.rich-text-content h3,
.rich-text-content h4 {
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 600;
}

.rich-text-content h2 {
    font-size: 1.35rem;
}

.rich-text-content h3,
.rich-text-content h4 {
    font-size: 1.08rem;
}

.rich-text-content blockquote {
    border-left: 3px solid var(--ink);
    margin: 1rem 0;
    padding-left: 1rem;
}

.rich-text-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.rich-text-content th,
.rich-text-content td {
    border: 1px solid var(--line-soft);
    padding: .55rem .65rem;
    vertical-align: top;
}

.spec-list {
    display: grid;
    gap: .6rem;
    margin: 0;
}

.spec-list div,
.summary-card > div,
.summary-line,
.order-items div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line-soft);
    padding: .65rem 0;
}

.spec-list dt {
    font-weight: 600;
}

.spec-list dd {
    margin: 0;
    text-align: right;
}

.cart-lines {
    display: grid;
    gap: .85rem;
}

.cart-line {
    display: grid;
    grid-template-columns: 116px 1fr auto auto;
    align-items: center;
    gap: .9rem;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: var(--surface);
    padding: .9rem;
}

.cart-line img {
    width: 116px;
    height: 96px;
    object-fit: contain;
    border-radius: var(--image-radius-sm);
    background: var(--surface-soft);
}

.cart-line h2 {
    margin: .45rem 0 .1rem;
    font-family: var(--font-display);
    font-size: 1.16rem;
    font-weight: 600;
}

.link-button {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--blue);
    font-size: .92rem;
    font-weight: 500;
}

.icon-link-button {
    position: relative;
    width: 2rem;
    height: 2rem;
    display: inline-grid;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--red);
}

.icon-link-button:hover,
.icon-link-button:focus-visible {
    border-color: #ffd7d2;
    background: #fff0ee;
    color: var(--red);
}

.icon-link-button.is-busy .icon {
    opacity: 0;
}

.icon-link-button.is-busy::after {
    position: absolute;
    margin: 0;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
}

.qty-control button,
.qty-control input {
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    text-align: center;
    font-weight: 600;
}

.summary-card {
    display: grid;
    gap: .35rem;
}

.sticky-summary {
    position: sticky;
    top: 76px;
}

.summary-total {
    color: var(--ink);
    font-size: 1.18rem;
}

.payment-options {
    display: grid;
    gap: .7rem;
}

.payment-options label {
    display: flex;
    align-items: center;
    gap: .65rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: .9rem;
}

.checkout-message {
    margin-top: 1rem;
}

.tracking-form {
    display: grid;
    gap: .9rem;
}

.tracking-card {
    padding: 1.25rem;
}

.tracking-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem 1rem;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: .85rem;
    margin: .85rem 0;
    color: var(--muted);
}

.tracking-meta a {
    color: var(--blue);
}

.timeline {
    display: grid;
    gap: .9rem;
    margin: 1.25rem 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: .85rem;
}

.timeline-item > span {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--blue);
    margin-top: .38rem;
    box-shadow: 0 0 0 6px #eaf4ff;
}

.timeline-item p {
    color: var(--muted);
    margin: .14rem 0;
}

.timeline-item small {
    color: var(--subtle);
}

.site-footer {
    padding: 2.3rem 0 1.8rem;
    border-top: 1px solid var(--line-soft);
    background: var(--page);
}

.footer-brand {
    font-size: .9rem;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-top: 1rem;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: .45rem;
    max-width: 300px;
    margin: .9rem 0 0;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.4;
}

.footer-address .icon {
    width: .95rem;
    height: .95rem;
    margin-top: .12rem;
    color: var(--ink);
}

.footer-heading {
    margin-bottom: .7rem;
    color: var(--ink);
    font-size: .78rem;
    font-weight: 600;
}

.site-footer p,
.site-footer a:not(.brand-mark) {
    color: var(--muted);
    font-size: .82rem;
}

.site-footer a:not(.brand-mark) {
    display: block;
    margin: .42rem 0;
}

.site-footer a:not(.brand-mark):hover {
    color: var(--ink);
    text-decoration: underline;
}

.site-footer a.social-link {
    width: 2.3rem;
    height: 2.3rem;
    display: inline-grid;
    place-items: center;
    margin: 0;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.site-footer a.social-link:hover,
.site-footer a.social-link:focus-visible {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.site-footer a.social-link .icon {
    width: 1rem;
    height: 1rem;
}

.site-footer a.footer-map-link {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    color: var(--blue);
}

.site-footer a.footer-map-link:hover,
.site-footer a.footer-map-link:focus-visible {
    color: var(--blue-hover);
}

.footer-location-card {
    display: grid;
    gap: .65rem;
}

.footer-location-card .footer-map-link {
    margin: .1rem 0 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--line-soft);
    margin-top: 1.75rem;
    padding-top: .9rem;
    color: var(--subtle);
    font-size: .8rem;
}

.toast-stack {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 2000;
    display: grid;
    gap: .65rem;
}

body.has-compare-tray .toast-stack {
    bottom: 6.5rem;
}

body.has-compare-tray {
    padding-bottom: 7rem;
}

.compare-tray {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    z-index: 1900;
    width: min(960px, calc(100% - 2rem));
    display: grid;
    grid-template-columns: minmax(150px, .7fr) minmax(0, 1fr) auto;
    align-items: center;
    gap: .85rem;
    border: 1px solid rgba(210, 210, 215, .9);
    border-radius: var(--radius);
    background: rgba(251, 251, 253, .92);
    box-shadow: var(--shadow);
    backdrop-filter: saturate(180%) blur(20px);
    padding: .72rem;
    transform: translateX(-50%);
}

.compare-tray-copy {
    display: grid;
    gap: .08rem;
}

.compare-tray-copy strong {
    font-size: .98rem;
    font-weight: 600;
}

.compare-tray-copy span {
    color: var(--muted);
    font-size: .82rem;
}

.compare-tray-items {
    display: flex;
    align-items: center;
    gap: .5rem;
    min-width: 0;
    overflow-x: auto;
}

.compare-tray-item {
    min-width: 188px;
    display: grid;
    grid-template-columns: 42px minmax(96px, 1fr) 28px;
    align-items: center;
    gap: .45rem;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: #fff;
    padding: .35rem;
}

.compare-tray-item img {
    width: 42px;
    height: 36px;
    object-fit: contain;
    border-radius: var(--image-radius-sm);
    background: var(--surface-soft);
}

.compare-tray-item span {
    min-width: 0;
    overflow: hidden;
    color: var(--ink);
    font-size: .82rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compare-tray-item button {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: #f5f5f7;
    color: var(--muted);
}

.compare-tray-item button:hover,
.compare-tray-item button:focus-visible {
    background: #fff0ee;
    color: var(--red);
}

.compare-tray-item button .icon {
    width: .9rem;
    height: .9rem;
}

.compare-tray-actions {
    display: flex;
    align-items: center;
    gap: .45rem;
    white-space: nowrap;
}

.loading-dialog {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(245, 245, 247, .58);
    backdrop-filter: saturate(180%) blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}

.loading-dialog.is-active {
    opacity: 1;
    visibility: visible;
}

.loading-card {
    width: min(420px, 100%);
    display: grid;
    gap: .9rem;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    padding: 1.1rem;
}

.loading-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.28rem;
    font-weight: 600;
}

.loading-card p {
    margin: .1rem 0 0;
    color: var(--muted);
    font-size: .94rem;
}

.loading-mark {
    width: 3.25rem;
    height: 3.25rem;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: var(--page);
    border: 1px solid var(--line-soft);
}

.loading-mark::before {
    content: "";
    width: 1.35rem;
    height: 1.35rem;
    border: 2px solid var(--blue);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin .72s linear infinite;
}

.loading-mark span {
    display: none;
}

.loading-lines {
    display: grid;
    gap: .5rem;
}

.loading-lines span {
    height: .58rem;
    border-radius: 999px;
}

.loading-lines span:nth-child(1) {
    width: 82%;
}

.loading-lines span:nth-child(2) {
    width: 96%;
}

.loading-lines span:nth-child(3) {
    width: 58%;
}

.mini-toast {
    max-width: 340px;
    border-radius: var(--radius);
    background: rgba(29, 29, 31, .94);
    color: #fff;
    padding: .78rem .9rem;
    box-shadow: var(--shadow);
    animation: toastIn .2s ease both;
}

.setup-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: var(--page);
}

.setup-card {
    max-width: 680px;
}

.setup-card h1 {
    font-size: clamp(2.25rem, 5vw, 4rem);
}

.setup-card p {
    color: var(--muted);
}

.admin-body {
    background: var(--page);
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    background: rgba(251, 251, 253, .86);
    backdrop-filter: saturate(180%) blur(20px);
    padding: .68rem 0;
}

.admin-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.admin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: .25rem;
}

.admin-nav a {
    border-radius: 999px;
    padding: .42rem .72rem;
    color: var(--muted);
    font-size: .86rem;
    font-weight: 500;
}

.admin-nav a:hover,
.admin-nav a.is-active {
    background: #fff;
    color: var(--ink);
}

.admin-main {
    padding: 2.2rem 0 4.5rem;
}

.admin-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.admin-heading h1 {
    margin: 0;
    font-size: clamp(2.1rem, 4.6vw, 3.7rem);
}

.admin-heading p {
    max-width: 680px;
    margin: .55rem 0 0;
    color: var(--muted);
}

.admin-heading-actions,
.admin-row-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: .45rem;
}

.admin-heading-actions {
    flex: 0 0 auto;
}

.admin-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.admin-metrics span {
    display: block;
    color: var(--muted);
    font-size: .88rem;
    font-weight: 500;
}

.admin-metrics strong {
    display: block;
    margin-top: .35rem;
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    font-weight: 600;
}

.admin-list-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line-soft);
    padding: .72rem 0;
}

.admin-list-row:last-child {
    border-bottom: 0;
}

.admin-list-row.total {
    color: var(--ink);
    font-size: 1.14rem;
    font-weight: 600;
}

.admin-table {
    margin: 0;
}

.admin-table-summary {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 0 .75rem;
    color: var(--muted);
    font-size: .86rem;
}

.admin-table thead th {
    border-bottom: 1px solid var(--line-soft);
    color: var(--muted);
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
}

.admin-table tbody td {
    border-color: var(--line-soft);
    color: var(--ink);
    font-size: .92rem;
    vertical-align: middle;
}

.admin-table tbody tr:hover td {
    background: var(--surface-soft);
}

.admin-action-cell {
    width: 1%;
    white-space: nowrap;
    text-align: right;
}

.admin-inline-form {
    display: inline-flex;
    margin: 0;
}

.admin-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: .65rem;
    border-top: 1px solid var(--line-soft);
    padding-top: 1rem;
    color: var(--muted);
    font-size: .88rem;
}

.admin-product-cell {
    display: flex;
    align-items: center;
    gap: .72rem;
    min-width: 260px;
}

.admin-product-cell img {
    width: 68px;
    height: 54px;
    flex: 0 0 auto;
    object-fit: contain;
    border-radius: var(--image-radius-sm);
    background: var(--surface-soft);
}

.admin-product-cell span,
.admin-meta {
    display: block;
    color: var(--muted);
    font-size: .82rem;
}

.admin-form-grid {
    display: grid;
    gap: 1rem;
}

.admin-form-section {
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: var(--surface-soft);
    padding: 1rem;
}

.admin-form-section h2 {
    margin: 0 0 .9rem;
}

.admin-checks {
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    gap: .95rem;
}

.admin-media-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .95fr);
    gap: 1rem;
}

.admin-media-block {
    min-width: 0;
}

.admin-media-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: .4rem;
}

.admin-media-label-row .form-label {
    margin: 0;
}

.admin-media-options {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: .9rem;
}

.admin-url-list {
    display: grid;
    gap: .55rem;
}

.admin-url-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2.25rem;
    gap: .45rem;
}

.admin-url-row .icon-btn {
    align-self: stretch;
}

.rich-text-field {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: var(--surface);
}

.rich-text-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    align-items: center;
    border-bottom: 1px solid var(--line-soft);
    background: var(--surface-soft);
    padding: .45rem;
}

.rich-text-toolbar select {
    width: auto;
    min-width: 128px;
}

.rich-text-toolbar button {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line-soft);
    border-radius: calc(var(--radius) - 4px);
    background: var(--surface);
    color: var(--ink);
    font: inherit;
}

.rich-text-toolbar button:hover,
.rich-text-toolbar button:focus-visible {
    border-color: var(--ink);
}

.rich-text-toolbar button[data-rich-text-command="createLink"],
.rich-text-toolbar button[data-rich-text-command="removeFormat"] {
    width: 34px;
    min-width: 0;
    padding: 0;
}

.rich-text-editor {
    min-height: 180px;
    padding: .8rem .9rem;
    color: var(--ink);
    line-height: 1.55;
    outline: none;
}

.rich-text-editor:focus {
    box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--ink) 18%, transparent);
}

.rich-text-editor.is-invalid {
    box-shadow: inset 0 0 0 2px var(--red);
}

.rich-text-editor > :first-child {
    margin-top: 0;
}

.rich-text-editor > :last-child {
    margin-bottom: 0;
}

.admin-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(142px, 1fr));
    gap: .75rem;
}

.admin-image-card {
    position: relative;
    display: grid;
    gap: .55rem;
    align-content: start;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: var(--surface);
    padding: .55rem;
    transition: border-color .16s ease, box-shadow .16s ease, opacity .16s ease;
}

.admin-image-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    border-radius: var(--image-radius-sm);
    background: var(--surface-soft);
}

.admin-image-card.is-delete-pending {
    border-color: color-mix(in srgb, var(--red) 52%, var(--line-soft));
    opacity: .72;
}

.admin-image-card.is-delete-pending img {
    filter: grayscale(1);
}

.admin-image-card.is-image-error img {
    opacity: .38;
}

.admin-image-meta {
    min-width: 0;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-image-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .55rem;
}

.admin-image-delete {
    display: inline-flex;
    justify-self: start;
    margin: 0;
    cursor: pointer;
}

.admin-image-delete-icon {
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--red);
    transition: background-color .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease;
}

.admin-image-delete-icon .icon {
    width: .95rem;
    height: .95rem;
}

.admin-image-delete input:checked + .admin-image-delete-icon {
    border-color: var(--red);
    background: var(--red);
    color: #fff;
}

.admin-image-delete input:focus-visible + .admin-image-delete-icon {
    box-shadow: 0 0 0 4px rgba(180, 35, 24, .14);
}

.admin-image-preview:empty {
    display: none;
}

.admin-image-strip {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.admin-image-strip img {
    width: 118px;
    height: 88px;
    object-fit: contain;
    border: 1px solid var(--line-soft);
    border-radius: var(--image-radius-sm);
    background: var(--surface-soft);
}

.admin-order-summary {
    display: grid;
    gap: .8rem;
}

.admin-address {
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: var(--surface-soft);
    padding: .9rem;
}

[data-reveal] {
    opacity: 0;
    translate: 0 18px;
    filter: saturate(.92);
}

[data-reveal].is-visible {
    opacity: 1;
    translate: 0 0;
    filter: saturate(1);
    transition: opacity .55s ease var(--reveal-delay, 0ms), translate .55s ease var(--reveal-delay, 0ms), filter .6s ease var(--reveal-delay, 0ms);
}

.hero-actions .btn-dark,
.conversion-band .btn-light,
.compare-tray .btn-dark {
    animation: ctaPulse 4.8s ease-in-out infinite;
}

.product-card,
.category-tile,
.trust-card,
.footer-card,
.admin-card,
.summary-card,
.detail-card,
.tracking-card,
.comparison-recommendation,
.comparison-table,
.checkout-card,
.setup-card,
.filter-panel {
    position: relative;
    overflow: hidden;
}

.product-card::before,
.category-tile::before,
.trust-card::before,
.footer-card::before,
.admin-card::before,
.summary-card::before,
.detail-card::before,
.tracking-card::before,
.comparison-recommendation::before,
.comparison-table::before,
.checkout-card::before,
.setup-card::before,
.filter-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .4) 24%, transparent 46%);
    opacity: 0;
    transform: translateX(-30%);
    pointer-events: none;
}

.product-card:hover::before,
.category-tile:hover::before,
.trust-card:hover::before,
.footer-card:hover::before,
.admin-card:hover::before,
.summary-card:hover::before,
.detail-card:hover::before,
.tracking-card:hover::before,
.comparison-recommendation:hover::before,
.comparison-table:hover::before,
.checkout-card:hover::before,
.setup-card:hover::before,
.filter-panel:hover::before {
    opacity: 1;
    animation: sheen 1.05s ease;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    from {
        background-position: 220% 0;
    }

    to {
        background-position: -220% 0;
    }
}

@keyframes lightSweep {
    0%,
    28% {
        transform: skewY(-7deg) translateX(-72%);
        opacity: 0;
    }

    42% {
        opacity: .7;
    }

    68%,
    100% {
        transform: skewY(-7deg) translateX(72%);
        opacity: 0;
    }
}

@keyframes heroBreathe {
    0%,
    100% {
        filter: saturate(1) contrast(1);
    }

    50% {
        filter: saturate(1.08) contrast(1.03);
    }
}

@keyframes deviceFloat {
    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -12px;
    }
}

@keyframes productRail {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes railFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-7px) scale(1.02);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes ambientFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(22px, 18px, 0) scale(1.08);
    }
}

@keyframes sheen {
    from {
        transform: translateX(-42%);
    }

    to {
        transform: translateX(130%);
    }
}

@keyframes ctaPulse {
    0%,
    100% {
        box-shadow: 0 10px 24px rgba(24, 32, 51, .10);
    }

    50% {
        box-shadow: 0 18px 34px rgba(37, 99, 235, .18);
    }
}

@media (max-width: 1199px) {
    .product-grid.four,
    .product-grid.three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .navbar .nav-link {
        line-height: 1.2;
        padding: .6rem .35rem;
    }

    .store-actions {
        align-items: stretch !important;
        padding: .5rem 0 .85rem;
    }

    .utility-link,
    .cart-pill,
    .compare-pill {
        justify-content: space-between;
        border: 1px solid var(--line-soft);
        background: #fff;
        padding: .55rem .7rem;
    }

    .hero-shell {
        min-height: auto;
        padding-top: 3rem;
    }

    .cinematic-stage {
        min-height: 500px;
    }

    .hero-laptop {
        width: 92vw;
        height: 44vw;
        bottom: 7%;
    }

    .hero-phone-one {
        right: 5%;
        width: 170px;
        height: 230px;
    }

    .hero-phone-two {
        left: 4%;
        width: 155px;
        height: 220px;
    }

    .hero-accessory {
        right: 7%;
        width: 132px;
        height: 132px;
    }

    .certified-panel,
    .conversion-band,
    .comparison-recommendation {
        grid-template-columns: 1fr;
    }

    .gallery-shell,
    .pdp-info,
    .filter-panel,
    .sticky-summary {
        position: static;
    }

    .cart-line {
        grid-template-columns: 96px 1fr;
    }

    .cart-line > strong,
    .qty-control {
        grid-column: 2;
    }

    .compare-tray {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .compare-tray-actions {
        justify-content: space-between;
    }

    .admin-topbar-inner,
    .admin-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-heading-actions,
    .admin-row-actions {
        justify-content: flex-start;
    }

    .admin-media-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 16px;
    }

    .hero-copy h1 {
        font-size: clamp(2.55rem, 13vw, 3.6rem);
    }

    .hero-device-stage {
        min-height: 360px;
    }

    .cinematic-stage {
        min-height: 420px;
    }

    .hero-laptop {
        width: 118vw;
        height: 280px;
        bottom: 1%;
    }

    .hero-phone-one {
        right: 0;
        top: 11%;
        width: 118px;
        height: 168px;
    }

    .hero-phone-two {
        left: 0;
        bottom: 24%;
        width: 112px;
        height: 160px;
    }

    .hero-accessory {
        display: none;
    }

    .motion-showcase {
        padding-bottom: 2.6rem;
    }

    .motion-item {
        flex-basis: 175px;
    }

    .motion-item img {
        height: 118px;
    }

    .category-tile strong {
        max-width: 82%;
    }

    .category-product-image {
        width: 52%;
        height: 38%;
        opacity: .72;
    }

    .section-pad,
    .pdp-section {
        padding: 2.6rem 0;
    }

    .trust-strip {
        padding-bottom: 2.8rem;
    }

    .main-image-wrap {
        height: 360px;
    }

    .product-grid.four,
    .product-grid.three,
    .product-grid.two {
        grid-template-columns: 1fr;
    }

    .section-heading.split,
    .shop-toolbar,
    .footer-bottom,
    .comparison-toolbar,
    .compare-tray-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .sort-select {
        max-width: none;
    }

    .comparison-table {
        min-width: 720px;
    }

    .cart-line {
        grid-template-columns: 1fr;
    }

    .cart-line img,
    .cart-line > strong,
    .qty-control {
        grid-column: auto;
    }

    .cart-line img {
        width: 100%;
        height: auto;
        aspect-ratio: 1.35;
    }

    .admin-metrics {
        grid-template-columns: 1fr;
    }

    body.has-compare-tray {
        padding-bottom: 15.5rem;
    }

    body.has-compare-tray .toast-stack {
        right: .75rem;
        bottom: 14.5rem;
    }

    .compare-tray {
        width: calc(100% - 1.5rem);
        bottom: .75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
        translate: 0 0;
    }
}

/* Back Market-inspired storefront refresh */
:root {
    --ink: #121212;
    --muted: #595959;
    --subtle: #737373;
    --line: #dadada;
    --line-soft: #e9e9e9;
    --page: #f5f3ee;
    --surface: #ffffff;
    --surface-soft: #f8f8f4;
    --blue: #121212;
    --blue-hover: #000000;
    --green: #1d6b45;
    --amber: #7b5d00;
    --red: #9e2f22;
    --teal: #b8ff62;
    --rose: #7c3aed;
    --focus-ring: rgba(184, 255, 98, .32);
    --shadow-soft: 0 16px 36px rgba(18, 18, 18, .07);
    --shadow-strong: 0 24px 56px rgba(18, 18, 18, .14);
    --radius: 22px;
    --image-radius: 22px;
    --image-radius-sm: 16px;
}

body {
    background:
        radial-gradient(circle at top left, rgba(184, 255, 98, .18), transparent 24%),
        radial-gradient(circle at 88% 8%, rgba(124, 58, 237, .09), transparent 18%),
        linear-gradient(180deg, #f7f6f1 0%, #f5f3ee 60%, #efeee8 100%);
    color: var(--ink);
}

body::before {
    background: radial-gradient(circle, rgba(184, 255, 98, .28) 0%, rgba(184, 255, 98, 0) 68%);
}

body::after {
    background: radial-gradient(circle, rgba(124, 58, 237, .14) 0%, rgba(124, 58, 237, 0) 68%);
}

.promo-bar {
    position: relative;
    z-index: 3;
    background: #121212;
    color: #fff;
}

.promo-bar-inner {
    min-height: 2.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    flex-wrap: wrap;
    padding: .38rem 0;
    font-size: .77rem;
    font-weight: 600;
}

.promo-bar-inner > span {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
}

.promo-bar .icon {
    width: .9rem;
    height: .9rem;
    color: var(--teal);
}

.site-header {
    min-height: 74px;
    border-bottom: 1px solid rgba(18, 18, 18, .08);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 10px 32px rgba(18, 18, 18, .06);
}

.header-shell {
    gap: 1rem;
}

.navbar {
    min-height: 74px;
}

.brand-mark {
    gap: .72rem;
}

.brand-logo {
    width: 2.75rem;
    height: 2.75rem;
    flex-basis: 2.75rem;
    border: 2px solid rgba(18, 18, 18, .08);
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(18, 18, 18, .12);
}

.brand-lockup {
    display: grid;
    gap: .08rem;
}

.brand-name {
    max-width: min(360px, 48vw);
    font-size: .96rem;
    line-height: 1.05;
}

.brand-tag {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 500;
}

.store-nav {
    gap: .38rem;
}

.navbar .nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 2.45rem;
    padding: .45rem .95rem;
    border-radius: 999px;
    color: var(--ink);
    font-size: .84rem;
    font-weight: 600;
    line-height: 1;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--ink);
    background: #ebebb9;
}

.store-actions {
    gap: .45rem !important;
}

.utility-link,
.cart-pill,
.compare-pill {
    min-height: 2.55rem;
    padding: .55rem .88rem;
    border: 1px solid rgba(18, 18, 18, .1);
    color: var(--ink);
    background: rgba(255, 255, 255, .9);
    font-size: .8rem;
    font-weight: 600;
}

.utility-link:hover,
.cart-pill:hover,
.compare-pill:hover {
    background: #ebebb9;
    color: var(--ink);
}

.utility-search {
    background: #f4f4ef;
}

.cart-count,
.compare-count {
    background: var(--teal);
    color: #121212;
    font-weight: 800;
}

.btn {
    min-height: 2.8rem;
    padding: .78rem 1.1rem;
    border-width: 2px;
    font-weight: 700;
    box-shadow: none;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 14px 24px rgba(18, 18, 18, .10);
}

.btn-dark {
    border-color: #121212;
    background: #121212;
    color: #fff;
}

.btn-dark:hover,
.btn-dark:focus {
    border-color: #000;
    background: #000;
}

.btn-outline-dark {
    border-color: #121212;
    color: #121212;
    background: #fff;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
    border-color: #121212;
    background: #ebebb9;
    color: #121212;
}

.header-cta {
    min-height: 2.55rem;
}

.hero-section {
    padding-top: 1rem;
    background: transparent;
}

.hero-shell {
    min-height: calc(100vh - 118px);
    gap: 2rem;
    padding: clamp(2.2rem, 6vh, 4rem) 0 2.2rem;
}

.hero-copy {
    max-width: 980px;
}

.hero-copy h1 {
    max-width: 920px;
    font-size: clamp(3.2rem, 7.2vw, 6.3rem);
    line-height: .96;
    letter-spacing: 0;
}

.hero-copy p {
    max-width: 760px;
    color: #3e3e3e;
    font-size: clamp(1.08rem, 1.9vw, 1.28rem);
}

.eyebrow {
    color: #3d3d3d;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: 0;
}

.hero-kicker-row,
.hero-pill-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .7rem;
}

.hero-kicker-row {
    margin: 0 0 1rem;
}

.hero-kicker,
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    padding: .55rem .9rem;
    border: 1px solid rgba(18, 18, 18, .1);
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: var(--ink);
    font-size: .84rem;
    font-weight: 700;
}

.hero-kicker .icon,
.hero-pill .icon {
    width: .92rem;
    height: .92rem;
}

.hero-kicker .icon {
    color: #5c8d1a;
}

.hero-pill-row {
    margin-top: 1.15rem;
}

.hero-pill {
    background: #eff0c6;
}

.hero-pill:hover {
    color: var(--ink);
    background: #dfff87;
}

.hero-device-stage {
    min-height: min(60vh, 620px);
    border-radius: 34px;
    background:
        radial-gradient(circle at 15% 18%, rgba(184, 255, 98, .28), transparent 24%),
        radial-gradient(circle at 84% 20%, rgba(124, 58, 237, .12), transparent 20%),
        linear-gradient(180deg, #fffef8 0%, #f7f4ec 62%, #eeeadf 100%);
    box-shadow: var(--shadow-strong);
}

.hero-stat {
    position: absolute;
    z-index: 4;
    max-width: 220px;
    padding: .9rem 1rem;
    border: 1px solid rgba(18, 18, 18, .1);
    border-radius: 20px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 18px 28px rgba(18, 18, 18, .10);
}

.hero-stat strong {
    display: block;
    margin-bottom: .22rem;
    font-size: .96rem;
}

.hero-stat span {
    color: var(--muted);
    font-size: .8rem;
    line-height: 1.35;
}

.hero-stat-left {
    left: 2rem;
    bottom: 1.8rem;
}

.hero-stat-right {
    right: 2rem;
    top: 2rem;
}

.trust-strip,
.motion-showcase,
.site-footer {
    background: transparent;
}

.trust-card,
.footer-card {
    min-height: 150px;
    border-radius: 28px;
    border-color: rgba(18, 18, 18, .08);
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow-soft);
}

.trust-icon {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 16px;
    background: #dfff87;
    color: #121212;
}

.trust-icon .icon {
    width: 1.1rem;
    height: 1.1rem;
}

.section-heading {
    margin-bottom: 1.35rem;
}

.section-heading h2,
.certified-panel h2,
.conversion-band h2,
.page-hero h1,
.tracking-head h2,
.empty-state h2,
.setup-card h1,
.admin-heading h1 {
    font-size: clamp(2.15rem, 4vw, 4rem);
    line-height: .98;
}

.section-heading.compact {
    margin-bottom: 1rem;
}

.motion-rail,
.certified-panel,
.conversion-band,
.filter-panel,
.checkout-card,
.tracking-form,
.summary-card,
.detail-card,
.tracking-card,
.setup-card,
.admin-card,
.admin-metrics > div,
.comparison-recommendation,
.comparison-table {
    border-radius: 28px;
    border-color: rgba(18, 18, 18, .08);
    box-shadow: var(--shadow-soft);
}

.motion-rail {
    background: rgba(255, 255, 255, .95);
}

.motion-item {
    padding: 1.2rem;
}

.motion-item img {
    border-radius: 22px;
    background: #fff;
}

.motion-item figcaption {
    font-size: 1rem;
    font-weight: 700;
}

.category-tile {
    min-height: 350px;
    padding: 1.5rem;
    border-radius: 30px;
    border-color: rgba(18, 18, 18, .08);
    background:
        radial-gradient(circle at top right, rgba(184, 255, 98, .26), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(246, 244, 237, .98));
}

.category-tile.phone {
    background:
        radial-gradient(circle at top right, rgba(124, 58, 237, .18), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(245, 242, 255, .98));
}

.category-tile.future {
    background:
        radial-gradient(circle at top right, rgba(184, 255, 98, .20), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(241, 249, 239, .98));
}

.category-tile span,
.category-tile em {
    color: #474747;
    font-weight: 700;
}

.category-tile em {
    color: #5c8d1a;
}

.category-tile strong {
    max-width: 64%;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.product-card {
    border-radius: 30px;
    border-color: rgba(18, 18, 18, .08);
    background: #fff;
}

.product-card-image {
    margin: .8rem .8rem 0;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(184, 255, 98, .16), transparent 28%),
        linear-gradient(180deg, #f8f8f5 0%, #f1f0e9 100%);
}

.deal-badge {
    top: .88rem;
    left: .88rem;
    padding: .4rem .72rem;
    background: #121212;
    font-size: .76rem;
}

.product-card-floating-chip {
    position: absolute;
    right: .88rem;
    bottom: .88rem;
    display: inline-flex;
    align-items: center;
    padding: .38rem .64rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .95);
    color: #2f2f2f;
    font-size: .72rem;
    font-weight: 700;
}

.product-card-body {
    gap: .78rem;
    padding: 1rem 1rem 1.1rem;
}

.product-card-score,
.product-card-meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .48rem;
}

.product-card-score {
    align-items: center;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 700;
}

.product-card-stars {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    color: #121212;
}

.product-card-stars .icon {
    width: .86rem;
    height: .86rem;
    color: #ffb800;
    fill: currentColor;
}

.product-card p {
    min-height: 0;
}

.product-card-meta-pills span,
.trust-list div,
.grade-stack div {
    border-radius: 999px;
}

.product-card-meta-pills span {
    display: inline-flex;
    align-items: center;
    padding: .34rem .64rem;
    background: #f3f2ed;
    color: #4a4a4a;
    font-size: .74rem;
    font-weight: 700;
}

.price-row strong {
    font-size: clamp(1.22rem, 1.4vw, 1.55rem);
}

.price-row del,
.price-compare-copy {
    color: var(--subtle);
    font-size: .82rem;
    font-weight: 700;
}

.card-actions {
    grid-template-columns: minmax(0, 1fr) repeat(2, 2.8rem);
    gap: .48rem;
}

.product-card .card-actions .btn {
    min-height: 2.8rem;
    font-size: .88rem;
}

.product-card .card-actions .btn-link,
.product-card .card-actions .btn-compare {
    background: #fff;
    color: #121212;
}

.product-card .card-actions .btn-link:hover,
.product-card .card-actions .btn-compare:hover,
.product-card .card-actions .btn-compare.is-selected {
    background: #ebebb9;
    border-color: #121212;
    color: #121212;
}

.condition-pill {
    background: #f3f2ed;
    color: #363636;
}

.condition-new,
.admin-status-active,
.admin-status-paid,
.admin-status-delivered {
    background: #ece9ff;
    color: #5b3cb6;
}

.condition-excellent,
.admin-status-shipped,
.admin-status-in-transit {
    background: #e8f8d1;
    color: #355d00;
}

.condition-good,
.admin-status-processing,
.admin-status-pending {
    background: #fff0ba;
    color: #7b5d00;
}

.condition-fair,
.admin-status-draft,
.admin-status-cancelled,
.admin-status-failed,
.admin-status-archived {
    background: #ffe0d9;
    color: #8c382d;
}

.admin-status-inactive {
    background: #ecece4;
    color: #4f5458;
}

.page-hero {
    padding-top: 2.4rem;
    background: transparent;
}

.filter-panel {
    top: 92px;
    gap: 1rem;
    background:
        radial-gradient(circle at top right, rgba(184, 255, 98, .18), transparent 34%),
        rgba(255, 255, 255, .95);
}

.filter-header a,
.shop-toolbar .eyebrow,
.product-card .card-actions .btn-link,
.product-card .card-actions .btn-compare,
.site-footer a.footer-map-link {
    color: #121212;
}

.shop-toolbar strong {
    font-size: 1.05rem;
}

.gallery-shell,
.pdp-info {
    border-radius: 30px;
}

.main-image-wrap,
.thumb-button,
.compare-tray,
.loading-card {
    border-radius: 24px;
}

.pdp-info,
.gallery-shell,
.detail-card,
.summary-card,
.tracking-card,
.checkout-card,
.admin-card {
    background: rgba(255, 255, 255, .95);
}

.trust-list {
    gap: .7rem;
}

.trust-list div {
    border-left: 0;
    padding: .9rem 1rem;
    background: #f4f3ee;
}

.site-footer {
    padding: 3rem 0 2rem;
}

.footer-promise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.1rem;
}

.footer-promise-card {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .62rem .82rem;
    border: 1px solid rgba(18, 18, 18, .08);
    border-radius: 999px;
    background: rgba(255, 255, 255, .96);
    color: #2f2f2f;
    font-size: .78rem;
    font-weight: 700;
}

.footer-promise-card .icon {
    width: .92rem;
    height: .92rem;
    color: #5c8d1a;
}

.footer-heading {
    margin-bottom: .9rem;
    font-size: .84rem;
    font-weight: 800;
    text-transform: uppercase;
}

.compare-tray {
    border-radius: 28px;
    border: 1px solid rgba(18, 18, 18, .08);
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow-strong);
}

.compare-tray-item {
    border-radius: 18px;
    background: #f6f5f0;
}

.loading-card {
    border-radius: 28px;
    background: rgba(255, 255, 255, .98);
}

@media (max-width: 991px) {
    .promo-bar-inner {
        justify-content: flex-start;
        padding-left: .75rem;
        padding-right: .75rem;
    }

    .site-header {
        min-height: 64px;
    }

    .navbar {
        min-height: 64px;
    }

    .brand-tag,
    .utility-search,
    .header-cta,
    .hero-stat {
        display: none;
    }

    .store-actions {
        padding-top: .9rem;
    }

    .utility-link,
    .cart-pill,
    .compare-pill {
        justify-content: space-between;
    }

    .hero-shell {
        min-height: auto;
    }

    .hero-copy h1 {
        font-size: clamp(2.8rem, 12vw, 4.6rem);
    }

    .category-tile strong {
        max-width: 72%;
    }
}

@media (max-width: 640px) {
    .promo-bar-inner {
        gap: .55rem 1rem;
        font-size: .71rem;
    }

    .hero-kicker,
    .hero-pill {
        font-size: .76rem;
    }

    .motion-item figcaption {
        font-size: .9rem;
    }

    .footer-promise-grid {
        display: grid;
    }
}

/* Product card, PDP, and cart refinement */
.product-card {
    border-radius: 24px;
    box-shadow: 0 10px 28px rgba(18, 18, 18, .06);
}

.product-card-image {
    aspect-ratio: 1;
    margin: .9rem .9rem 0;
    border: 0;
    border-radius: 22px;
    background: #fff;
}

.product-card-image img {
    padding: 1.35rem;
    object-fit: contain;
}

.deal-badge {
    top: 1rem;
    left: 1rem;
}

.product-card-body {
    gap: .62rem;
    padding: 1rem 1.15rem 1.2rem;
}

.product-card h3 {
    min-height: 0;
    font-size: 1.08rem;
    line-height: 1.28;
}

.product-card-specs {
    min-height: 0;
    color: #676767;
    font-size: .98rem;
    line-height: 1.45;
}

.product-card-trust {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.product-card-trust > span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .36rem .62rem;
    border-radius: 999px;
    background: #f4f4ef;
    color: #3a3a3a;
    font-size: .75rem;
    font-weight: 700;
}

.product-card-trust .icon {
    width: .86rem;
    height: .86rem;
}

.product-card-price-block {
    display: grid;
    gap: .28rem;
    margin-top: .15rem;
}

.price-caption {
    color: #5d5d5d;
    font-size: .9rem;
    font-weight: 600;
}

.price-row {
    gap: .42rem;
}

.price-row strong {
    font-size: clamp(1.45rem, 1.8vw, 1.95rem);
    line-height: 1;
}

.price-row del,
.price-compare-copy {
    font-size: .82rem;
    font-weight: 600;
}

.product-card-save-pill {
    display: inline-flex;
    justify-self: start;
    padding: .34rem .6rem;
    border-radius: 8px;
    background: #9af0b6;
    color: #0f4d28;
    font-size: .78rem;
    font-weight: 800;
}

.card-actions {
    grid-template-columns: minmax(0, 1fr) 2.9rem;
    grid-template-areas:
        "cart compare"
        "details details";
    gap: .55rem;
    margin-top: .35rem;
}

.card-link-action {
    grid-area: details;
    min-width: auto;
    padding: 0 .9rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: #121212;
    text-decoration: none;
}

.card-link-action:hover,
.card-link-action:focus-visible {
    background: #f3f3ef;
    color: #121212;
    text-decoration: none;
}

.product-card .card-actions .btn-dark {
    grid-area: cart;
}

.product-card .card-actions .icon-action {
    grid-area: compare;
    width: 2.9rem;
    height: 2.9rem;
    background: #fff;
}

.product-card .card-actions .btn {
    min-height: 2.9rem;
    overflow: hidden;
}

.product-card .card-actions .btn span:not(.visually-hidden) {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pdp-section {
    padding-top: 2.5rem;
}

.gallery-shell,
.pdp-info {
    top: 90px;
}

.gallery-shell {
    display: grid;
    gap: .8rem;
}

.main-image-wrap {
    height: clamp(430px, 52vw, 700px);
    border: 1px solid rgba(18, 18, 18, .08);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(18, 18, 18, .05);
}

.main-image-wrap img {
    padding: 1.8rem;
}

.thumb-row {
    gap: .8rem;
}

.thumb-button {
    width: 94px;
    height: 74px;
    border: 1px solid rgba(18, 18, 18, .1);
    border-radius: 18px;
    background: #fff;
}

.pdp-info {
    display: grid;
    gap: .9rem;
    padding: 1.1rem 0 0;
    box-shadow: none;
    background: transparent;
}

.pdp-deal-banner,
.pdp-benefits > div,
.stock-panel,
.trust-list div {
    border-radius: 22px;
}

.pdp-deal-banner {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: .95rem 1rem;
    background: #98efb6;
    color: #12351f;
}

.pdp-deal-banner > span {
    width: 2.6rem;
    height: 2.6rem;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, .45);
}

.pdp-deal-banner .icon {
    width: 1rem;
    height: 1rem;
}

.pdp-deal-banner strong {
    display: block;
    font-size: 1rem;
}

.pdp-deal-banner span span,
.pdp-meta-line,
.stock-panel span:last-child {
    color: inherit;
}

.pdp-topline {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    align-items: center;
}

.pdp-topline-chip {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    padding: .42rem .72rem;
    border-radius: 999px;
    background: #f4f4ef;
    color: #3f3f3f;
    font-size: .8rem;
    font-weight: 700;
}

.pdp-topline-chip .icon {
    width: .9rem;
    height: .9rem;
}

.pdp-info h1 {
    margin: 0;
    font-size: clamp(2.6rem, 4.5vw, 4.3rem);
}

.pdp-meta-line {
    color: #5f5f5f;
    font-size: 1.02rem;
    font-weight: 600;
}

.pdp-info .lead {
    margin: 0;
    max-width: 42rem;
}

.pdp-price-block {
    display: grid;
    gap: .35rem;
}

.price-row.xl strong {
    font-size: clamp(2.6rem, 4vw, 3.6rem);
}

.stock-panel {
    gap: .5rem;
    border: 1px solid rgba(18, 18, 18, .08);
    background: #f3f7ff;
    padding: 1rem 1.1rem;
}

.stock-panel span {
    color: #384256;
    font-weight: 600;
}

.pdp-actions {
    justify-content: flex-start;
}

.pdp-actions .btn {
    min-height: 3.4rem;
    padding-inline: 1.2rem;
}

.pdp-actions .btn-dark {
    min-width: min(100%, 320px);
}

.pdp-benefits {
    display: grid;
    gap: .75rem;
}

.pdp-benefits > div {
    display: grid;
    grid-template-columns: 2.3rem 1fr;
    gap: .8rem;
    align-items: start;
    padding: 1rem 1.1rem;
    background: #dfe8ff;
}

.pdp-benefits > div:nth-child(2) {
    background: #eef2f7;
}

.pdp-benefits > div > span {
    width: 2.3rem;
    height: 2.3rem;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, .75);
}

.pdp-benefits .icon {
    width: 1rem;
    height: 1rem;
}

.pdp-benefits strong,
.trust-list strong {
    display: block;
}

.pdp-benefits span span,
.trust-list span {
    color: #566070;
}

.trust-list div {
    border: 1px solid rgba(18, 18, 18, .08);
    padding: 1rem 1.1rem;
    background: #fff;
}

.cart-lines {
    gap: 1rem;
}

.cart-line {
    grid-template-columns: 110px minmax(0, 1fr) auto auto;
    gap: 1.1rem;
    align-items: start;
    padding: 1.25rem;
    border-radius: 28px;
    border-color: rgba(18, 18, 18, .08);
    box-shadow: 0 10px 28px rgba(18, 18, 18, .05);
}

.cart-line img {
    width: 110px;
    height: 90px;
    border-radius: 18px;
    background: #fff;
}

.cart-line-copy {
    display: grid;
    gap: .7rem;
}

.cart-line-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.cart-line h2 {
    margin: 0 0 .3rem;
    font-size: 1.08rem;
    line-height: 1.35;
}

.cart-line p,
.cart-line-delivery span {
    color: #5e5e5e;
    font-size: .96rem;
    line-height: 1.45;
}

.cart-line-delivery {
    display: grid;
    gap: .12rem;
}

.cart-line-price {
    display: grid;
    justify-items: end;
    gap: .15rem;
    text-align: right;
}

.cart-line-price strong {
    font-size: 1.16rem;
}

.cart-line-price span {
    color: #6a6a6a;
    font-size: .9rem;
}

.cart-line-price em {
    padding: .26rem .55rem;
    border-radius: 8px;
    background: #9af0b6;
    color: #0f4d28;
    font-size: .82rem;
    font-style: normal;
    font-weight: 800;
}

.qty-control {
    margin-top: .15rem;
    border-radius: 12px;
    border-color: rgba(18, 18, 18, .12);
}

.qty-control button,
.qty-control input {
    width: 42px;
    height: 42px;
}

.cart-remove-button {
    align-self: start;
    min-height: 2.7rem;
    padding: .7rem 1rem;
    border: 1px solid #ef8d83;
    border-radius: 14px;
    color: #b33f34;
    background: #fff;
    font-weight: 700;
}

.cart-remove-button:hover,
.cart-remove-button:focus-visible {
    background: #fff0ee;
    color: #a53428;
}

@media (max-width: 991px) {
    .pdp-info {
        padding-top: 0;
    }

    .pdp-actions .btn-dark {
        min-width: 0;
    }

    .cart-line {
        grid-template-columns: 96px 1fr;
    }

    .cart-line-head {
        flex-direction: column;
    }

    .cart-line-price {
        justify-items: start;
        text-align: left;
    }

    .qty-control,
    .cart-remove-button {
        grid-column: 2;
    }
}

@media (max-width: 640px) {
    .product-card-body {
        padding-inline: 1rem;
    }

    .card-actions {
        grid-template-columns: minmax(0, 1fr) 2.9rem;
    }

    .card-link-action {
        justify-content: center;
    }

    .pdp-deal-banner,
    .pdp-benefits > div,
    .stock-panel {
        border-radius: 18px;
    }

    .cart-line {
        grid-template-columns: 1fr;
    }

    .cart-line img,
    .cart-line-copy,
    .qty-control,
    .cart-remove-button {
        grid-column: auto;
    }

    .cart-remove-button {
        width: 100%;
    }
}

/* Layout cleanup and real policy copy */
.category-tile {
    min-height: 260px;
    grid-template-rows: auto auto 1fr auto;
    padding: 1.35rem;
}

.category-tile strong {
    max-width: 56%;
    font-size: clamp(1.45rem, 2.3vw, 2.15rem);
    line-height: 1.06;
}

.category-product-image {
    right: 3%;
    bottom: 8%;
    width: min(50%, 235px);
    height: 46%;
    opacity: .96;
}

.product-grid.four {
    align-items: stretch;
}

.product-card {
    display: grid;
    grid-template-rows: auto 1fr;
}

.product-card-body {
    display: grid;
    grid-template-rows: minmax(3.4rem, auto) minmax(3.2rem, auto) auto auto 1fr;
    align-content: start;
}

.product-card h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-specs {
    min-height: 3.1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-trust {
    min-height: 2.2rem;
}

.product-card-trust > span {
    white-space: nowrap;
}

.product-card-price-block {
    align-self: end;
}

.card-actions {
    align-self: end;
}

.hero-kicker-row {
    justify-content: center;
}

.hero-kicker {
    background: #fff;
}

.footer-promise-card {
    background: #fff;
}

@media (max-width: 991px) {
    .category-tile {
        min-height: 220px;
    }

    .category-tile strong {
        max-width: 60%;
    }
}

@media (max-width: 640px) {
    .category-tile {
        min-height: 200px;
    }

    .category-tile strong {
        max-width: 62%;
        font-size: 1.35rem;
    }

    .category-product-image {
        width: 46%;
        height: 40%;
    }
}

/* Header and footer UX refinement */
.header-shell {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1640px;
    width: 100%;
}

.navbar-collapse {
    align-items: center;
    gap: .85rem;
    min-width: 0;
}

.brand-mark {
    flex: 0 0 clamp(270px, 22vw, 370px);
    min-width: 0;
    margin-right: 0;
}

.brand-lockup {
    min-width: 0;
}

.brand-name {
    max-width: 100%;
}

.store-nav {
    flex: 1 1 auto;
    flex-wrap: nowrap;
    justify-content: center;
    gap: .16rem;
    margin: 0 !important;
    min-width: 0;
}

.store-actions {
    flex: 0 0 auto;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: .4rem !important;
    min-width: 0;
}

.navbar .nav-link {
    min-height: 2.35rem;
    padding: .44rem .72rem;
    white-space: nowrap;
}

.navbar-toggler {
    display: inline-grid;
    place-items: center;
    background: #fff;
    border: 1px solid rgba(18, 18, 18, .1);
}

.navbar-toggler-icon {
    width: 1.15rem;
    height: .86rem;
    background-image:
        linear-gradient(currentColor, currentColor),
        linear-gradient(currentColor, currentColor),
        linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: top center, center, bottom center;
    background-size: 100% 2px, 100% 2px, 100% 2px;
}

.utility-link,
.cart-pill,
.compare-pill {
    min-height: 2.4rem;
    padding: .48rem .72rem;
    white-space: nowrap;
}

.utility-search {
    min-width: 0;
}

.utility-search span {
    display: inline;
    line-height: 1.2;
}

.header-cta {
    min-height: 2.4rem;
    padding: .5rem 1rem;
    white-space: nowrap;
}

.site-footer .row {
    row-gap: 2rem;
}

.site-footer p,
.site-footer a:not(.brand-mark) {
    font-size: .95rem;
}

.footer-heading {
    margin-bottom: .95rem;
}

.footer-location-card {
    gap: .7rem;
    margin-top: .8rem;
}

.footer-location-label {
    color: #5c5c5c;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.site-footer a.footer-map-link {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    align-items: center;
    gap: .8rem;
    width: min(100%, 240px);
    margin-top: 0;
    padding: .9rem 1rem;
    border: 1px solid rgba(18, 18, 18, .08);
    border-radius: 18px;
    background: #fff;
    color: #121212;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(18, 18, 18, .06);
}

.site-footer a.footer-map-link:hover,
.site-footer a.footer-map-link:focus-visible {
    background: #f7f6f1;
    color: #121212;
    text-decoration: none;
    transform: translateY(-1px);
}

.footer-map-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: #eff0c6;
    color: #121212;
}

.footer-map-icon .icon {
    width: 1rem;
    height: 1rem;
}

.footer-map-copy {
    display: grid;
    gap: .12rem;
}

.footer-map-copy strong {
    font-size: .92rem;
    line-height: 1.2;
}

.footer-map-copy span {
    color: #646464;
    font-size: .82rem;
    line-height: 1.28;
}

@media (max-width: 1199px) {
    .brand-name {
        max-width: 100%;
    }

    .store-nav {
        justify-content: flex-start;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .header-shell {
        gap: .72rem;
    }

    .brand-mark {
        flex-basis: clamp(220px, 19vw, 270px);
    }

    .brand-tag {
        display: none;
    }

    .navbar .nav-link {
        padding-inline: .58rem;
        font-size: .78rem;
    }

    .utility-search,
    .utility-admin {
        width: 2.45rem;
        padding-inline: 0;
        justify-content: center;
    }

    .utility-search span,
    .utility-admin span {
        display: none;
    }

    .compare-pill,
    .cart-pill {
        padding-inline: .62rem;
    }

    .header-cta {
        padding: .5rem .85rem;
        font-size: .78rem;
    }
}

@media (max-width: 991px) {
    .header-shell {
        gap: .85rem;
    }

    .brand-name {
        max-width: min(260px, 50vw);
    }

    .store-actions {
        justify-content: stretch;
    }

    .utility-search {
        max-width: none;
    }

    .site-footer a.footer-map-link {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 1199.98px) {
    .site-header,
    .navbar {
        min-height: 68px;
    }

    .header-shell {
        position: relative;
        flex-wrap: wrap;
        gap: .75rem;
        max-width: 100%;
        padding-right: 4.25rem;
    }

    .brand-mark {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .brand-name {
        max-width: min(360px, calc(100vw - 8rem));
    }

    .navbar-expand-xl .navbar-toggler {
        position: absolute;
        top: .92rem;
        right: .75rem;
        z-index: 2;
        display: inline-grid;
        flex: 0 0 2.25rem;
        margin-left: auto;
    }

    .navbar-collapse {
        flex-basis: 100%;
        padding: .72rem 0 1rem;
        margin-top: .55rem;
        border-top: 1px solid rgba(18, 18, 18, .08);
    }

    .store-nav {
        flex: none;
        flex-direction: column;
        align-items: stretch;
        gap: .35rem;
        margin: 0 0 .75rem !important;
    }

    .navbar .nav-link {
        width: 100%;
        justify-content: flex-start;
        min-height: 2.45rem;
        padding: .65rem .85rem;
    }

    .store-actions {
        flex-direction: column;
        align-items: stretch !important;
        gap: .5rem !important;
        padding-top: 0;
    }

    .utility-search,
    .header-cta {
        display: inline-flex;
    }

    .utility-search,
    .utility-admin,
    .cart-pill,
    .compare-pill,
    .header-cta {
        width: 100%;
        justify-content: space-between;
        min-height: 2.65rem;
    }

    .utility-search span,
    .utility-admin span {
        display: inline;
    }
}

@media (max-width: 575.98px) {
    .brand-logo {
        width: 2.4rem;
        height: 2.4rem;
        flex-basis: 2.4rem;
        border-radius: 13px;
    }

    .brand-name {
        max-width: calc(100vw - 8.5rem);
        font-size: .9rem;
    }
}
