.store-hero-card {
    background:
        radial-gradient(circle at top right, rgba(80, 205, 137, 0.25), transparent 35%),
        radial-gradient(circle at left bottom, rgba(54, 153, 255, 0.16), transparent 30%),
        linear-gradient(135deg, #fff5cc 0%, #ffffff 45%, #eef6ff 100%);
}

.store-product-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.08);
}

.object-fit-contain {
    object-fit: contain;
}

.z-index-20 {
    z-index: 20;
}

.z-index-2 {
    z-index: 2;
}

.store-landing-page {
    --store-bg: #07111f;
    --store-bg-soft: #0e172b;
    --store-panel: rgba(12, 22, 39, 0.82);
    --store-panel-strong: rgba(10, 18, 31, 0.94);
    --store-panel-border: rgba(255, 255, 255, 0.08);
    --store-text: #f8fbff;
    --store-text-muted: #a5b7ce;
    --store-text-soft: #7b8ca5;
    --store-primary: #4cc2ff;
    --store-primary-strong: #1f9cff;
    --store-violet: #8d6bff;
    --store-amber: #ffb84d;
    --store-teal: #32d7c2;
    --store-rose: #ff758f;
    --store-gold: #ffd36a;
    --store-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    position: relative;
    min-height: 100vh;
    overflow: clip;
    background:
        radial-gradient(circle at top left, rgba(76, 194, 255, 0.15), transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(141, 107, 255, 0.22), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(255, 184, 77, 0.12), transparent 22%),
        linear-gradient(180deg, #07111f 0%, #091321 26%, #0a1220 100%);
    color: var(--store-text);
}

.store-landing-page__noise {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 90%);
    pointer-events: none;
}

.store-landing-main {
    position: relative;
    z-index: 1;
}

.store-section {
    position: relative;
    padding: 4.5rem 0;
}

.store-section--tight {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.store-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.store-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    background: rgba(255, 255, 255, 0.04);
    color: var(--store-primary);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.store-section-title {
    margin: 0;
    color: var(--store-text);
    font-size: clamp(1.85rem, 2vw + 1rem, 3rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.store-section-copy {
    margin: 1rem 0 0;
    max-width: 48rem;
    color: var(--store-text-muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.btn-store-primary,
.btn-store-outline,
.btn-store-ghost,
.btn-store-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.95rem 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.btn-store-primary:hover,
.btn-store-outline:hover,
.btn-store-ghost:hover,
.btn-store-secondary:hover {
    transform: translateY(-1px);
}

.btn-store-primary {
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--store-primary) 0%, #7ef3ff 100%);
    color: #06101d;
    box-shadow: 0 14px 32px rgba(76, 194, 255, 0.28);
}

.btn-store-primary:hover,
.btn-store-primary:focus {
    color: #06101d;
    box-shadow: 0 18px 36px rgba(76, 194, 255, 0.34);
}

.btn-store-outline {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--store-text);
}

.btn-store-outline:hover,
.btn-store-outline:focus {
    border-color: rgba(76, 194, 255, 0.55);
    background: rgba(76, 194, 255, 0.08);
    color: var(--store-text);
}

.btn-store-ghost {
    border: 1px solid transparent;
    background: transparent;
    color: var(--store-text-muted);
}

.btn-store-ghost:hover,
.btn-store-ghost:focus {
    color: var(--store-text);
    background: rgba(255, 255, 255, 0.05);
}

.btn-store-secondary {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: var(--store-text);
    padding: 0.8rem 1.05rem;
}

.btn-store-secondary:hover,
.btn-store-secondary:focus {
    color: var(--store-text);
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
}

.store-announcement-bar {
    position: relative;
    z-index: 11;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(3, 9, 18, 0.72);
    backdrop-filter: blur(18px);
}

.store-announcement-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 3.5rem;
    padding: 0.7rem 0;
}

.store-announcement-bar__list {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex: 1;
    min-width: 0;
}

.store-announcement-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 0.55rem 0.85rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--store-text-muted);
    text-decoration: none;
    transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.store-announcement-pill:hover,
.store-announcement-pill:focus {
    border-color: rgba(76, 194, 255, 0.4);
    background: rgba(76, 194, 255, 0.08);
    color: var(--store-text);
}

.store-announcement-pill__badge {
    flex-shrink: 0;
    border-radius: 999px;
    padding: 0.3rem 0.55rem;
    background: rgba(76, 194, 255, 0.12);
    color: var(--store-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.store-announcement-pill__text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.92rem;
    font-weight: 600;
}

.store-announcement-bar__cta {
    flex-shrink: 0;
    color: var(--store-text);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.store-announcement-bar__cta:hover,
.store-announcement-bar__cta:focus {
    color: var(--store-primary);
}

.store-landing-header {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 1.05rem 0;
    transition: padding 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.store-landing-header.is-scrolled {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(6, 14, 26, 0.84);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.store-landing-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.store-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
    color: var(--store-text);
    text-decoration: none;
}

.store-brand__glyph {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background:
        linear-gradient(135deg, rgba(76, 194, 255, 0.18), rgba(141, 107, 255, 0.24)),
        rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.store-brand__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.store-brand__eyebrow {
    color: var(--store-text-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.store-brand__name {
    color: var(--store-text);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.store-landing-nav {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.3rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
}

.store-landing-nav__link {
    border-radius: 999px;
    padding: 0.7rem 1rem;
    color: var(--store-text-muted);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.22s ease, background-color 0.22s ease;
}

.store-landing-nav__link:hover,
.store-landing-nav__link:focus,
.store-landing-nav__link.is-active {
    background: rgba(255, 255, 255, 0.06);
    color: var(--store-text);
}

.store-landing-header__actions {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.store-header-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--store-text-muted);
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
}

.store-header-chip:hover,
.store-header-chip:focus {
    color: var(--store-text);
    border-color: rgba(255, 255, 255, 0.16);
}

.store-cart-button {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 0.8rem 0.95rem;
    background: rgba(255, 255, 255, 0.04);
    color: var(--store-text);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.store-cart-button:hover,
.store-cart-button:focus {
    color: var(--store-text);
    border-color: rgba(76, 194, 255, 0.35);
}

.store-cart-button__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.85rem;
    height: 1.85rem;
    border-radius: 999px;
    padding: 0 0.45rem;
    background: linear-gradient(135deg, rgba(255, 117, 143, 0.25), rgba(255, 184, 77, 0.3));
    color: var(--store-text);
    font-size: 0.78rem;
    font-weight: 800;
}

.store-mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.28rem;
    width: 2.9rem;
    height: 2.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.store-mobile-menu-toggle span {
    display: block;
    width: 1.15rem;
    height: 2px;
    margin: 0 auto;
    border-radius: 999px;
    background: var(--store-text);
}

.store-mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 35;
    visibility: hidden;
    pointer-events: none;
}

.store-mobile-nav.is-open {
    visibility: visible;
    pointer-events: auto;
}

.store-mobile-nav__panel {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(100%, 25rem);
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.24s ease;
    background: rgba(8, 16, 29, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -14px 0 40px rgba(0, 0, 0, 0.35);
}

.store-mobile-nav.is-open .store-mobile-nav__panel {
    transform: translateX(0);
}

.store-mobile-nav__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(3, 8, 14, 0.62);
    border: 0;
    opacity: 0;
    transition: opacity 0.24s ease;
}

.store-mobile-nav.is-open .store-mobile-nav__backdrop {
    opacity: 1;
}

.store-mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.store-mobile-nav__title {
    color: var(--store-text);
    font-size: 1.15rem;
    font-weight: 800;
}

.store-mobile-nav__close {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: transparent;
}

.store-mobile-nav__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.95rem;
    height: 2px;
    border-radius: 999px;
    background: var(--store-text);
}

.store-mobile-nav__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.store-mobile-nav__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.store-mobile-nav__body {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1rem 1.25rem 1.5rem;
}

.store-mobile-nav__link {
    border-radius: 1rem;
    padding: 0.95rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--store-text);
    font-size: 0.98rem;
    font-weight: 700;
    text-decoration: none;
}

.store-mobile-nav__cta-group {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}

.store-hero-section {
    position: relative;
    padding: 2rem 0 2.5rem;
}

.store-hero-shell {
    position: relative;
    display: grid;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    padding: 1.25rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        rgba(8, 16, 29, 0.72);
    box-shadow: var(--store-shadow);
    overflow: hidden;
}

.store-hero-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(76, 194, 255, 0.16), transparent 28%),
        radial-gradient(circle at 100% 0%, rgba(141, 107, 255, 0.2), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(255, 211, 106, 0.12), transparent 22%);
    pointer-events: none;
}

.store-hero-copy,
.store-hero-stage {
    position: relative;
    z-index: 1;
}

.store-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0.25rem 0.5rem;
}

.store-hero-title {
    margin: 0;
    color: var(--store-text);
    font-size: clamp(2.5rem, 5vw, 5.25rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.store-hero-subtitle {
    margin: 1.5rem 0 0;
    max-width: 40rem;
    color: var(--store-text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.store-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.75rem;
}

.store-hero-shortcuts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.store-hero-shortcut {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.7rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 0.65rem 0.95rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--store-text);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.store-hero-shortcut:hover,
.store-hero-shortcut:focus {
    color: var(--store-text);
    border-color: rgba(76, 194, 255, 0.35);
    background: rgba(76, 194, 255, 0.08);
}

.store-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.store-hero-metric {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.35rem;
    padding: 1rem 1rem 0.95rem;
    background: rgba(255, 255, 255, 0.03);
}

.store-hero-metric strong {
    color: var(--store-text);
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.store-hero-metric span {
    color: var(--store-text-muted);
    font-size: 0.88rem;
    font-weight: 600;
}

.store-hero-stage {
    position: relative;
    min-height: 35rem;
    border-radius: 1.8rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.store-hero-stage__banner {
    position: absolute;
    inset: 0;
}

.store-hero-stage__banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    transform: scale(1.02);
}

.store-hero-stage__orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(24px);
    opacity: 0.65;
}

.store-hero-stage__orb--a {
    top: 10%;
    right: 12%;
    width: 13rem;
    height: 13rem;
    background: rgba(76, 194, 255, 0.24);
}

.store-hero-stage__orb--b {
    bottom: 12%;
    left: 8%;
    width: 10rem;
    height: 10rem;
    background: rgba(141, 107, 255, 0.22);
}

.store-hero-stage__card {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    max-width: 16rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 1.55rem;
    padding: 1rem;
    background: rgba(8, 16, 29, 0.84);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

.store-hero-stage__card img {
    width: 100%;
    height: 11rem;
    object-fit: contain;
    border-radius: 1rem;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 70%);
}

.store-hero-stage__card strong {
    color: var(--store-text);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
}

.store-hero-stage__card span:last-child {
    color: var(--store-text-muted);
    font-size: 0.84rem;
    line-height: 1.55;
}

.store-hero-stage__tag {
    display: inline-flex;
    align-self: flex-start;
    border-radius: 999px;
    padding: 0.35rem 0.6rem;
    background: rgba(255, 255, 255, 0.06);
    color: var(--store-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.store-hero-stage__card--primary {
    top: 9%;
    left: 6%;
    width: min(100%, 18rem);
}

.store-hero-stage__card--secondary {
    right: 6%;
    bottom: 13%;
    width: min(100%, 15rem);
}

.store-hero-stage__card--tertiary {
    right: 18%;
    top: 18%;
    width: min(100%, 13rem);
}

.store-access-card,
.store-category-card,
.store-trust-card,
.store-empty-state,
.store-wholesale-panel,
.store-newsletter-panel,
.store-spotlight,
.store-product-shell__card {
    box-shadow: var(--store-shadow);
}

.store-access-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.75rem;
    padding: 1.4rem;
    overflow: hidden;
    color: var(--store-text);
    text-decoration: none;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.store-access-card:hover,
.store-access-card:focus {
    transform: translateY(-4px);
    color: var(--store-text);
    border-color: rgba(255, 255, 255, 0.14);
}

.store-access-card::before {
    content: "";
    position: absolute;
    inset: auto -10% -35% 35%;
    height: 10rem;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.4;
    pointer-events: none;
}

.store-access-card--electric {
    background: linear-gradient(180deg, rgba(17, 31, 54, 0.88), rgba(8, 19, 33, 0.9));
}

.store-access-card--electric::before {
    background: rgba(76, 194, 255, 0.4);
}

.store-access-card--amber {
    background: linear-gradient(180deg, rgba(43, 28, 11, 0.88), rgba(19, 15, 10, 0.9));
}

.store-access-card--amber::before {
    background: rgba(255, 184, 77, 0.42);
}

.store-access-card--violet {
    background: linear-gradient(180deg, rgba(28, 20, 51, 0.88), rgba(12, 10, 28, 0.9));
}

.store-access-card--violet::before {
    background: rgba(141, 107, 255, 0.45);
}

.store-access-card--teal {
    background: linear-gradient(180deg, rgba(11, 37, 35, 0.88), rgba(8, 19, 22, 0.9));
}

.store-access-card--teal::before {
    background: rgba(50, 215, 194, 0.35);
}

.store-access-card__eyebrow {
    color: var(--store-text-soft);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.store-access-card__title {
    font-size: 1.22rem;
    font-weight: 800;
    line-height: 1.32;
}

.store-access-card__copy {
    color: var(--store-text-muted);
    line-height: 1.7;
}

.store-access-card__cta {
    margin-top: auto;
    color: var(--store-text);
    font-size: 0.94rem;
    font-weight: 700;
}

.store-category-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.75rem;
    overflow: hidden;
    color: var(--store-text);
    text-decoration: none;
    background: rgba(10, 19, 34, 0.88);
    transition: transform 0.24s ease, border-color 0.24s ease;
}

.store-category-card:hover,
.store-category-card:focus {
    transform: translateY(-4px);
    color: var(--store-text);
    border-color: rgba(255, 255, 255, 0.16);
}

.store-category-card__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 15rem;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.09), transparent 55%),
        rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.store-category-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-category-card__placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--store-text);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.store-category-card--electric .store-category-card__media {
    background-color: rgba(14, 33, 59, 0.9);
}

.store-category-card--violet .store-category-card__media {
    background-color: rgba(27, 18, 49, 0.9);
}

.store-category-card--amber .store-category-card__media {
    background-color: rgba(45, 30, 12, 0.9);
}

.store-category-card--teal .store-category-card__media {
    background-color: rgba(11, 38, 36, 0.9);
}

.store-category-card--crimson .store-category-card__media {
    background-color: rgba(43, 16, 24, 0.9);
}

.store-category-card--indigo .store-category-card__media {
    background-color: rgba(18, 24, 49, 0.9);
}

.store-category-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.4rem;
}

.store-category-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    color: var(--store-text-soft);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.store-category-card__title {
    margin: 0;
    color: var(--store-text);
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1.25;
}

.store-category-card__copy {
    margin: 0;
    color: var(--store-text-muted);
    line-height: 1.7;
}

.store-category-card__cta {
    margin-top: auto;
    color: var(--store-primary);
    font-weight: 700;
}

.store-product-shell {
    height: 100%;
}

.store-product-shell__card {
    border-radius: 1.75rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        rgba(10, 18, 31, 0.92);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.store-product-shell__card:hover {
    transform: translateY(-5px);
}

.store-product-shell--featured .store-product-shell__card {
    border: 1px solid rgba(76, 194, 255, 0.16);
}

.store-product-shell--preorder .store-product-shell__card {
    border: 1px solid rgba(141, 107, 255, 0.2);
}

.store-product-shell--sealed .store-product-shell__card {
    border: 1px solid rgba(255, 184, 77, 0.2);
}

.store-product-shell--single .store-product-shell__card {
    border: 1px solid rgba(76, 194, 255, 0.18);
}

.store-product-shell__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.store-badge {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.42rem 0.72rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.store-badge--slate {
    background: rgba(255, 255, 255, 0.05);
    color: var(--store-text-muted);
}

.store-badge--gold {
    background: rgba(255, 211, 106, 0.16);
    color: var(--store-gold);
}

.store-badge--violet {
    background: rgba(141, 107, 255, 0.14);
    color: #b9a6ff;
}

.store-badge--rose {
    background: rgba(255, 117, 143, 0.14);
    color: #ff9caf;
}

.store-product-shell__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 15rem;
    margin: 1rem 0 1.1rem;
    border-radius: 1.45rem;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.1), transparent 56%),
        rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.store-product-shell__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.28s ease;
}

.store-product-shell__card:hover .store-product-shell__media img {
    transform: translateY(-4px) scale(1.02);
}

.store-product-shell__media-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.06);
    color: var(--store-text);
    font-size: 1.35rem;
    font-weight: 800;
}

.store-product-shell__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    color: var(--store-text-soft);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.store-product-shell__title {
    margin: 0.75rem 0 0;
    color: var(--store-text);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.3;
}

.store-product-shell__copy {
    margin: 0.85rem 0 0;
    color: var(--store-text-muted);
    line-height: 1.68;
}

.store-product-shell__footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
}

.store-product-shell__price-block {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.store-product-shell__price {
    color: var(--store-text);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.store-product-shell__compare {
    color: var(--store-text-soft);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: line-through;
}

.store-product-shell__stock {
    color: var(--store-text-muted);
    font-size: 0.82rem;
    font-weight: 600;
}

.store-trust-card {
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.75rem;
    padding: 1.5rem;
    background: rgba(10, 18, 31, 0.85);
}

.store-trust-card--highlight {
    background:
        radial-gradient(circle at top right, rgba(76, 194, 255, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(17, 28, 48, 0.92), rgba(8, 16, 29, 0.94));
}

.store-trust-card__index,
.store-trust-card__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.6rem;
    min-height: 2.6rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    color: var(--store-primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.store-trust-card__title {
    margin: 0;
    color: var(--store-text);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.3;
}

.store-trust-card__copy {
    margin: 0.9rem 0 0;
    color: var(--store-text-muted);
    line-height: 1.7;
}

.store-spotlight {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    padding: 1.5rem;
    background: rgba(9, 17, 30, 0.88);
}

.store-spotlight--violet {
    background:
        radial-gradient(circle at top right, rgba(141, 107, 255, 0.14), transparent 26%),
        rgba(9, 17, 30, 0.9);
}

.store-spotlight--amber {
    background:
        radial-gradient(circle at top right, rgba(255, 184, 77, 0.14), transparent 26%),
        rgba(9, 17, 30, 0.9);
}

.store-spotlight--electric {
    background:
        radial-gradient(circle at top right, rgba(76, 194, 255, 0.14), transparent 26%),
        rgba(9, 17, 30, 0.9);
}

.store-spotlight__intro {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 1.75rem;
}

.store-spotlight__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.store-empty-state {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    border: 1px dashed rgba(255, 255, 255, 0.16);
    border-radius: 1.75rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
}

.store-empty-state--soft {
    background: rgba(255, 255, 255, 0.03);
}

.store-empty-state__title {
    margin: 0;
    color: var(--store-text);
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.2;
}

.store-empty-state__copy {
    margin: 0;
    max-width: 40rem;
    color: var(--store-text-muted);
    line-height: 1.75;
}

.store-wholesale-panel {
    display: grid;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    padding: 1.5rem;
    background:
        radial-gradient(circle at top right, rgba(50, 215, 194, 0.14), transparent 28%),
        radial-gradient(circle at bottom left, rgba(76, 194, 255, 0.14), transparent 24%),
        rgba(8, 17, 30, 0.92);
}

.store-wholesale-panel__copy {
    display: flex;
    flex-direction: column;
}

.store-wholesale-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.store-wholesale-panel__stats {
    display: grid;
    gap: 0.9rem;
}

.store-wholesale-stat {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.4rem;
    padding: 1.1rem 1.15rem;
    background: rgba(255, 255, 255, 0.04);
}

.store-wholesale-stat strong {
    color: var(--store-text);
    font-size: 1rem;
    font-weight: 800;
}

.store-wholesale-stat span {
    color: var(--store-text-muted);
    line-height: 1.65;
}

.store-newsletter-panel {
    display: grid;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    padding: 1.5rem;
    background:
        radial-gradient(circle at top left, rgba(76, 194, 255, 0.14), transparent 26%),
        rgba(9, 17, 30, 0.92);
}

.store-newsletter-panel__copy {
    display: flex;
    flex-direction: column;
}

.store-newsletter-panel__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.25rem;
}

.store-newsletter-panel__tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.7rem 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--store-text);
    font-size: 0.84rem;
    font-weight: 700;
}

.store-newsletter-panel__form-wrap {
    display: flex;
    align-items: stretch;
}

.store-newsletter-form,
.store-newsletter-success {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.75rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.04);
}

.store-newsletter-form__row {
    display: grid;
    gap: 0.85rem;
}

.store-newsletter-form .form-control {
    border-radius: 999px;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(5, 12, 22, 0.74);
    color: var(--store-text);
}

.store-newsletter-form .form-control::placeholder {
    color: #8696ad;
}

.store-newsletter-form .form-control:focus {
    border-color: rgba(76, 194, 255, 0.45);
    background: rgba(5, 12, 22, 0.84);
    color: var(--store-text);
    box-shadow: 0 0 0 0.25rem rgba(76, 194, 255, 0.14);
}

.store-newsletter-form__hint,
.store-newsletter-success__copy {
    margin-top: 0.95rem;
    color: var(--store-text-muted);
    line-height: 1.7;
}

.store-newsletter-success {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.store-newsletter-success__eyebrow {
    color: var(--store-primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.store-newsletter-success__title {
    margin: 0.8rem 0 0;
    color: var(--store-text);
    font-size: 1.35rem;
    font-weight: 800;
}

.store-landing-footer {
    position: relative;
    z-index: 1;
    padding: 4rem 0 calc(5rem + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(4, 10, 18, 0.76);
}

.store-brand--footer {
    margin-bottom: 1rem;
}

.store-landing-footer__copy {
    margin: 0;
    max-width: 24rem;
    color: var(--store-text-muted);
    line-height: 1.8;
}

.store-landing-footer__title {
    margin: 0 0 1rem;
    color: var(--store-text);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.store-landing-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.store-landing-footer__links a {
    color: var(--store-text-muted);
    text-decoration: none;
}

.store-landing-footer__links a:hover,
.store-landing-footer__links a:focus {
    color: var(--store-text);
}

.store-landing-footer__panel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.35rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    color: var(--store-text-muted);
    line-height: 1.6;
}

.store-landing-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--store-text-soft);
    font-size: 0.88rem;
}

.store-landing-footer__mini-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.store-landing-footer__mini-links a {
    color: var(--store-text-soft);
    text-decoration: none;
}

.store-landing-footer__mini-links a:hover,
.store-landing-footer__mini-links a:focus {
    color: var(--store-text);
}

.store-mobile-dock {
    position: fixed;
    right: 0.9rem;
    bottom: calc(0.9rem + env(safe-area-inset-bottom));
    left: 0.9rem;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 0.55rem;
    background: rgba(6, 13, 24, 0.86);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.store-mobile-dock__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 3rem;
    border-radius: 1rem;
    padding: 0.7rem 0.65rem;
    background: rgba(255, 255, 255, 0.04);
    color: var(--store-text);
    font-size: 0.82rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.store-mobile-dock__link--primary {
    background: linear-gradient(135deg, rgba(76, 194, 255, 0.18), rgba(141, 107, 255, 0.22));
}

.store-mobile-dock__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    padding: 0 0.25rem;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
}

[data-store-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

[data-store-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

body.store-nav-open {
    overflow: hidden;
}

@media (min-width: 768px) {
    .store-newsletter-form__row {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }
}

@media (min-width: 992px) {
    .store-section {
        padding: 5.25rem 0;
    }

    .store-hero-section {
        padding-top: 2.6rem;
        padding-bottom: 3rem;
    }

    .store-hero-shell {
        grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
        padding: 1.8rem;
    }

    .store-wholesale-panel,
    .store-newsletter-panel {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        align-items: center;
        padding: 1.8rem;
    }

    .store-wholesale-panel__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1199.98px) {
    .store-landing-header__actions {
        gap: 0.55rem;
    }
}

@media (max-width: 991.98px) {
    .store-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .store-announcement-bar__cta {
        display: none;
    }

    .store-announcement-bar__list {
        min-height: 2.8rem;
    }

    .store-announcement-pill {
        display: none;
        width: 100%;
    }

    .store-announcement-pill.is-active {
        display: inline-flex;
    }

    .store-landing-header {
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
    }

    .store-landing-header__actions .btn-store-outline,
    .store-landing-header__actions .btn-store-ghost {
        display: none !important;
    }

    .store-hero-stage {
        min-height: 28rem;
    }

    .store-hero-stage__card--tertiary {
        right: 8%;
    }

    .store-wholesale-panel__stats {
        grid-template-columns: 1fr;
    }

    .store-landing-footer {
        padding-bottom: calc(7rem + env(safe-area-inset-bottom));
    }
}

@media (max-width: 767.98px) {
    .store-section {
        padding: 3.4rem 0;
    }

    .store-section-kicker {
        margin-bottom: 0.85rem;
    }

    .store-section-title {
        font-size: clamp(1.6rem, 7vw, 2.35rem);
    }

    .store-hero-shell {
        padding: 1rem;
        border-radius: 1.5rem;
    }

    .store-hero-copy {
        padding: 0.5rem 0 0;
    }

    .store-hero-subtitle {
        font-size: 0.98rem;
    }

    .store-hero-metrics {
        grid-template-columns: 1fr;
    }

    .store-hero-stage {
        min-height: 23rem;
        border-radius: 1.35rem;
    }

    .store-hero-stage__card {
        max-width: 12rem;
        border-radius: 1.2rem;
        padding: 0.8rem;
    }

    .store-hero-stage__card img {
        height: 7rem;
    }

    .store-hero-stage__card--primary {
        top: 7%;
        left: 4%;
    }

    .store-hero-stage__card--secondary {
        right: 4%;
        bottom: 8%;
    }

    .store-hero-stage__card--tertiary {
        top: auto;
        right: 22%;
        bottom: 26%;
    }

    .store-access-card,
    .store-category-card,
    .store-trust-card,
    .store-product-shell__card,
    .store-wholesale-panel,
    .store-newsletter-panel,
    .store-spotlight,
    .store-empty-state {
        border-radius: 1.45rem;
    }

    .store-product-shell__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .store-mobile-dock__label {
        display: block;
    }

.store-landing-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

.store-product-detail {
    --detail-border: rgba(15, 23, 42, 0.08);
    --detail-text: #0f172a;
    --detail-muted: #5b6576;
    --detail-soft: #7f8aa3;
    --detail-primary: #0f62fe;
    --detail-success: #17c653;
    --detail-warning: #f6b100;
    --detail-danger: #f1416c;
    --detail-surface: #ffffff;
    --detail-surface-alt: #f7f9fc;
    --detail-shadow: 0 22px 54px rgba(15, 23, 42, 0.08);
}

.store-product-detail__shell {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.store-product-detail__gallery-card,
.store-product-detail__section-card,
.store-product-detail__price-card,
.store-product-detail__purchase-panel {
    border: 1px solid var(--detail-border);
    border-radius: 2rem;
    background: var(--detail-surface);
    box-shadow: var(--detail-shadow);
}

.store-product-detail__gallery-card {
    padding: 1.4rem;
    background:
        radial-gradient(circle at top right, rgba(15, 98, 254, 0.08), transparent 28%),
        radial-gradient(circle at left bottom, rgba(23, 198, 83, 0.07), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.store-product-detail__gallery-meta,
.store-product-detail__availability,
.store-product-detail__section-head,
.store-product-detail__price-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.store-product-detail__gallery-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    background: rgba(15, 98, 254, 0.08);
    color: var(--detail-primary);
    font-size: 0.82rem;
    font-weight: 700;
}

.store-product-detail__eyebrow,
.store-product-detail__section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    background: rgba(15, 98, 254, 0.08);
    color: var(--detail-primary);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.store-product-detail__eyebrow--hot {
    background: rgba(246, 177, 0, 0.14);
    color: #9a5f00;
}

.store-product-detail__eyebrow--violet {
    background: rgba(114, 57, 234, 0.12);
    color: #5c2db5;
}

.store-product-detail__gallery-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 33rem;
    margin-top: 1rem;
    border-radius: 1.6rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(241, 245, 249, 0.96) 100%);
    overflow: hidden;
}

.store-product-detail__gallery-zoom-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 33rem;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.store-product-detail__gallery-image {
    width: 100%;
    max-width: calc(100% - 6rem);
    max-height: 29rem;
    object-fit: contain;
    transition: transform 0.28s ease;
}

.store-product-detail__gallery-zoom-trigger:hover .store-product-detail__gallery-image {
    transform: scale(1.03);
}

.store-product-detail__gallery-hint {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.65rem 0.9rem;
    background: rgba(15, 23, 42, 0.72);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    backdrop-filter: blur(12px);
}

.store-product-detail__gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--detail-text);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
    transform: translateY(-50%);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.store-product-detail__gallery-nav:hover {
    transform: translateY(-50%) scale(1.05);
    background: #ffffff;
}

.store-product-detail__gallery-nav[data-gallery-prev] {
    left: 1.25rem;
}

.store-product-detail__gallery-nav[data-gallery-next] {
    right: 1.25rem;
}

.store-product-detail__gallery-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--detail-soft);
}

.store-product-detail__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(5.75rem, 1fr));
    gap: 0.9rem;
    margin-top: 1rem;
}

.store-product-detail__thumb {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.2rem;
    padding: 0.5rem;
    background: #ffffff;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.store-product-detail__thumb img {
    width: 100%;
    height: 5.2rem;
    object-fit: contain;
}

.store-product-detail__thumb:hover,
.store-product-detail__thumb.is-active {
    border-color: rgba(15, 98, 254, 0.45);
    box-shadow: 0 14px 28px rgba(15, 98, 254, 0.12);
    transform: translateY(-1px);
}

.store-product-detail__content-stack,
.store-product-detail__buy-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.store-product-detail__title-block {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.store-product-detail__title {
    margin: 0;
    color: var(--detail-text);
    font-size: clamp(2rem, 2vw + 1rem, 3.1rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.store-product-detail__subhead {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    color: var(--detail-soft);
    font-size: 0.93rem;
    font-weight: 600;
}

.store-product-detail__subhead span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.store-product-detail__subhead span::before {
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 999px;
    background: rgba(15, 98, 254, 0.45);
    content: "";
}

.store-product-detail__summary,
.store-product-detail__copy {
    margin: 0;
    color: var(--detail-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.store-product-detail__section-card {
    padding: 1.5rem;
}

.store-product-detail__section-title,
.store-product-detail__availability-title,
.store-product-detail__zoom-title {
    margin: 0.5rem 0 0;
    color: var(--detail-text);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.store-product-detail__spec-grid,
.store-product-detail__market-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.2rem;
}

.store-product-detail__spec-item,
.store-product-detail__market-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: var(--detail-surface-alt);
    padding: 1rem 1.05rem;
}

.store-product-detail__spec-label {
    color: var(--detail-soft);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.store-product-detail__spec-value {
    color: var(--detail-text);
    font-size: 1rem;
    font-weight: 800;
}

.store-product-detail__price-card {
    padding: 1.45rem;
    background: radial-gradient(circle at top right, rgba(15, 98, 254, 0.12), transparent 26%), linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.store-product-detail__price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 0.3rem;
}

.store-product-detail__price-label,
.store-product-detail__installment-title {
    color: var(--detail-soft);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.store-product-detail__price {
    color: var(--detail-text);
    font-size: clamp(2.1rem, 3vw + 1rem, 3.5rem);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.store-product-detail__discount-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    background: rgba(23, 198, 83, 0.12);
    color: #0a7d34;
    font-size: 0.85rem;
    font-weight: 800;
}

.store-product-detail__price-meta,
.store-product-detail__microcopy,
.store-product-detail__availability-copy,
.store-product-detail__limit-note,
.store-product-detail__service-card p {
    color: var(--detail-muted);
    font-size: 0.96rem;
    line-height: 1.65;
}

.store-product-detail__price-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.6rem;
}

.store-product-detail__price-before {
    color: var(--detail-soft);
    text-decoration: line-through;
}

.store-product-detail__installment-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.25rem;
    min-width: 9rem;
    border-radius: 1.4rem;
    background: rgba(15, 98, 254, 0.08);
    padding: 1rem;
    color: var(--detail-primary);
}

.store-product-detail__installment-card strong {
    color: var(--detail-text);
    font-size: 1.1rem;
    font-weight: 900;
}

.store-product-detail__installment-card span {
    color: var(--detail-muted);
    font-size: 0.88rem;
    font-weight: 600;
}

.store-product-detail__price-note,
.store-product-detail__shipping-banner,
.store-product-detail__limit-note {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-top: 1rem;
    border-radius: 1.2rem;
    padding: 0.95rem 1rem;
    background: var(--detail-surface-alt);
}

.store-product-detail__purchase-panel {
    position: sticky;
    top: 6.5rem;
    padding: 1.45rem;
}

.store-product-detail__purchase-panel--success {
    background: radial-gradient(circle at top right, rgba(23, 198, 83, 0.1), transparent 26%), #ffffff;
}

.store-product-detail__purchase-panel--warning {
    background: radial-gradient(circle at top right, rgba(246, 177, 0, 0.12), transparent 26%), #ffffff;
}

.store-product-detail__purchase-panel--danger {
    background: radial-gradient(circle at top right, rgba(241, 65, 108, 0.1), transparent 26%), #ffffff;
}

.store-product-detail__purchase-panel--info {
    background: radial-gradient(circle at top right, rgba(62, 151, 255, 0.1), transparent 26%), #ffffff;
}

.store-product-detail__service-grid {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

.store-product-detail__service-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: rgba(255, 255, 255, 0.88);
    padding: 1rem;
}

.store-product-detail__service-card strong {
    display: block;
    color: var(--detail-text);
    font-size: 0.97rem;
    font-weight: 800;
}

.store-product-detail__service-card p {
    margin: 0.35rem 0 0;
}

.store-product-detail__service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 1rem;
    background: rgba(15, 98, 254, 0.08);
}

.store-product-detail__purchase-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.2rem;
}

.store-product-detail__qty-shell {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.store-product-detail__qty-label {
    color: var(--detail-text);
    font-size: 0.92rem;
    font-weight: 700;
}

.store-product-detail__qty-control {
    display: grid;
    grid-template-columns: 3.2rem 1fr 3.2rem;
    gap: 0.5rem;
    align-items: center;
}

.store-product-detail__qty-button,
.store-product-detail__zoom-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.1rem;
    background: #ffffff;
    color: var(--detail-text);
    font-size: 1.2rem;
    font-weight: 800;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.store-product-detail__qty-button {
    min-height: 3.45rem;
}

.store-product-detail__qty-button:hover,
.store-product-detail__zoom-button:hover {
    border-color: rgba(15, 98, 254, 0.25);
    box-shadow: 0 12px 24px rgba(15, 98, 254, 0.12);
    transform: translateY(-1px);
}

.store-product-detail__qty-input {
    min-height: 3.45rem;
    border-radius: 1.15rem;
    border-color: rgba(15, 23, 42, 0.1);
    font-size: 1.1rem;
    font-weight: 800;
}

.store-product-detail__cta-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.8rem;
}

.store-product-detail__cta,
.store-product-detail__secondary-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    min-height: 4rem;
    border-radius: 1.35rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.store-product-detail__cta {
    border: 0;
    background: linear-gradient(135deg, var(--detail-primary) 0%, #39a0ff 100%);
    box-shadow: 0 18px 34px rgba(15, 98, 254, 0.28);
    color: #ffffff;
}

.store-product-detail__cta:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 22px 40px rgba(15, 98, 254, 0.34);
}

.store-product-detail__cta:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    box-shadow: none;
}

.store-product-detail__cta span {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.store-product-detail__cta small {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.86;
}

.store-product-detail__secondary-cta {
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.72);
    color: var(--detail-text);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
}

.store-product-detail__secondary-cta:hover {
    transform: translateY(-1px);
    color: var(--detail-text);
}

.store-product-detail__feedback {
    margin-top: 1rem;
}

.store-product-detail__feedback .alert {
    margin-bottom: 0;
    border-radius: 1.1rem;
}

.store-product-detail__trust-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}

.store-product-detail__trust-item {
    display: flex;
    align-items: start;
    gap: 0.7rem;
    color: var(--detail-muted);
    font-size: 0.93rem;
    line-height: 1.65;
}

.store-product-detail__zoom-modal {
    position: fixed;
    inset: 0;
    z-index: 1060;
}

.store-product-detail__zoom-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.78);
    backdrop-filter: blur(14px);
}

.store-product-detail__zoom-dialog {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: min(94vw, 78rem);
    height: min(92vh, 56rem);
    margin: 4vh auto;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.3);
    overflow: hidden;
}

.store-product-detail__zoom-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.5rem 0;
}

.store-product-detail__zoom-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.store-product-detail__zoom-button {
    min-width: 4rem;
    min-height: 2.8rem;
    padding: 0 0.9rem;
    font-size: 0.95rem;
}

.store-product-detail__zoom-button--close {
    min-width: 6rem;
}

.store-product-detail__zoom-viewport {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem 1.5rem;
    overflow: auto;
}

.store-product-detail__zoom-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform-origin: center center;
    transition: transform 0.16s ease;
    will-change: transform;
}

.store-product-detail__related {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

@media (min-width: 992px) {
    .store-product-detail__cta-group {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .store-product-detail__secondary-cta {
        min-width: 9.5rem;
    }
}

@media (max-width: 991.98px) {
    .store-product-detail__gallery-stage,
    .store-product-detail__gallery-zoom-trigger {
        min-height: 24rem;
    }

    .store-product-detail__gallery-image {
        max-height: 21rem;
        max-width: calc(100% - 2rem);
    }

    .store-product-detail__purchase-panel {
        position: static;
    }

    .store-product-detail__price-top,
    .store-product-detail__availability,
    .store-product-detail__section-head,
    .store-product-detail__zoom-toolbar {
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width: 767.98px) {
    .store-product-detail__gallery-card,
    .store-product-detail__section-card,
    .store-product-detail__price-card,
    .store-product-detail__purchase-panel {
        border-radius: 1.4rem;
    }

    .store-product-detail__gallery-nav {
        width: 2.6rem;
        height: 2.6rem;
    }

    .store-product-detail__gallery-nav[data-gallery-prev] {
        left: 0.7rem;
    }

    .store-product-detail__gallery-nav[data-gallery-next] {
        right: 0.7rem;
    }

    .store-product-detail__spec-grid,
    .store-product-detail__market-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .store-product-detail__qty-control {
        grid-template-columns: 3rem 1fr 3rem;
    }

    .store-product-detail__zoom-dialog {
        width: calc(100vw - 1rem);
        height: calc(100vh - 1rem);
        margin: 0.5rem;
        border-radius: 1.3rem;
    }
}

.store-checkout {
    --checkout-border: rgba(15, 23, 42, 0.08);
    --checkout-shadow: 0 22px 54px rgba(15, 23, 42, 0.06);
    --checkout-surface: #ffffff;
    --checkout-surface-alt: #f7f9fc;
    --checkout-primary: #0f62fe;
    --checkout-primary-soft: rgba(15, 98, 254, 0.08);
}

.store-checkout__card,
.store-checkout__summary {
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at top right, rgba(15, 98, 254, 0.04), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
    box-shadow: var(--checkout-shadow);
}

.store-checkout__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    background: var(--checkout-primary-soft);
    color: var(--checkout-primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.store-checkout__section-title {
    margin-top: 1rem;
    color: #0f172a;
    font-size: clamp(1.35rem, 1vw + 1rem, 1.8rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 900;
}

.store-checkout__choice-card,
.store-checkout__shipping-option,
.store-checkout__payment-option {
    display: block;
    border: 1px solid var(--checkout-border);
    border-radius: 1.45rem;
    padding: 1.15rem;
    background: var(--checkout-surface);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
}

.store-checkout__choice-card:hover,
.store-checkout__shipping-option:hover,
.store-checkout__payment-option:hover,
.store-checkout__choice-card.is-selected,
.store-checkout__shipping-option.is-selected,
.store-checkout__payment-option.is-selected {
    border-color: rgba(15, 98, 254, 0.35);
    box-shadow: 0 16px 34px rgba(15, 98, 254, 0.12);
    transform: translateY(-1px);
}

.store-checkout__choice-card.is-selected,
.store-checkout__shipping-option.is-selected,
.store-checkout__payment-option.is-selected {
    background:
        linear-gradient(180deg, rgba(15, 98, 254, 0.06), rgba(255, 255, 255, 0.96)),
        #ffffff;
}

.store-checkout__choice-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.store-checkout__choice-body {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: start;
}

.store-checkout__choice-icon,
.store-checkout__pickup-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 1.05rem;
    background: var(--checkout-primary-soft);
}

.store-checkout__choice-copy {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.store-checkout__choice-title {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
}

.store-checkout__choice-text {
    color: #5b6576;
    font-size: 0.9rem;
    line-height: 1.6;
}

.store-checkout__delivery-panel,
.store-checkout__pickup-note {
    border: 1px solid var(--checkout-border);
    border-radius: 1.45rem;
    padding: 1.35rem;
    background: var(--checkout-surface-alt);
}

.store-checkout__shipping-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 6.5rem;
    border-radius: 999px;
    padding: 0.55rem 0.95rem;
    background: rgba(23, 198, 83, 0.12);
    color: #0a7d34;
    font-size: 0.92rem;
    font-weight: 900;
}

.store-checkout__summary-item {
    display: grid;
    grid-template-columns: 4.25rem minmax(0, 1fr) auto;
    gap: 0.95rem;
    align-items: center;
}

.store-checkout__summary-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 1.1rem;
    border: 1px solid var(--checkout-border);
    background: linear-gradient(180deg, #ffffff, #f3f6fb);
    overflow: hidden;
}

.store-checkout__trust-list {
    display: grid;
    gap: 0.8rem;
}

.store-checkout__trust-item {
    display: flex;
    align-items: start;
    gap: 0.7rem;
    color: #5b6576;
    font-size: 0.9rem;
    line-height: 1.6;
}

.store-checkout__legal-copy {
    color: #334155;
    font-size: 0.96rem;
    line-height: 1.85;
}

@media (max-width: 1199.98px) {
    .store-checkout__summary {
        position: static !important;
    }
}

@media (max-width: 767.98px) {
    .store-checkout__card,
    .store-checkout__summary {
        border-radius: 1.3rem;
    }

    .store-checkout__choice-body {
        grid-template-columns: auto 1fr;
    }

    .store-checkout__summary-item {
        grid-template-columns: 3.8rem minmax(0, 1fr);
    }

    .store-checkout__summary-item > :last-child {
        grid-column: 2;
    }
}
