@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Colors */
    --bg-main: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-soft: #f1f5f9;
    --bg-card: #ffffff;
    --text-main: #111827;
    --text-muted: #6b7280;
    --text-soft: #9ca3af;
    --border-color: #e5e7eb;

    /* Brand Colors */
    --brand-primary: #111827;
    --brand-accent: #64748b;
    --brand-accent-strong: #334155;
    --brand-warm: #94a3b8;
    --brand-soft: #e2e8f0;
    --hero-accent: #f50537;

    /* Effects */
    --shadow-sm: 0 8px 24px rgba(17, 24, 39, 0.06);
    --shadow-md: 0 18px 45px rgba(17, 24, 39, 0.1);
    --shadow-lg: 0 28px 80px rgba(17, 24, 39, 0.14);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.85rem;
    --spacing-md: 1.4rem;
    --spacing-lg: 2.8rem;
    --spacing-xl: 5.2rem;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    background:
        radial-gradient(circle at 8% 10%, rgba(100, 116, 139, 0.1), transparent 24rem),
        radial-gradient(circle at 92% 4%, rgba(148, 163, 184, 0.12), transparent 20rem),
        var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.text-gradient {
    background: linear-gradient(110deg, var(--brand-primary), var(--brand-accent), var(--brand-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-soft {
    background: linear-gradient(180deg, var(--bg-secondary), #ffffff);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-accent);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(1.65rem, 3.2vw, 2.65rem);
    border-left: 4px solid var(--brand-accent);
    padding-left: var(--spacing-sm);
}

.section-lead {
    color: var(--text-muted);
    max-width: 620px;
    margin-top: 0.8rem;
}

.grid {
    display: grid;
    gap: var(--spacing-md);
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0.58rem 0;
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.92);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.nav-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    min-height: 58px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 220px;
    min-height: 38px;
    justify-self: start;
}

.logo {
    font-size: 1.28rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.4rem 0.82rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 11px;
    background: #0f172a;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.16);
    overflow: visible;
    flex-shrink: 0;
}

.logo-image {
    display: block;
    width: auto;
    height: 24px;
    max-width: 100%;
    object-fit: contain;
}

.logo span {
    color: var(--brand-accent);
}

.nav-brand small {
    max-width: 120px;
    padding-left: 0.85rem;
    border-left: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-menu {
    padding: 0.26rem;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
    justify-self: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.08rem;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.48rem 0.76rem;
    border-radius: var(--radius-full);
    color: var(--text-main);
    font-weight: 800;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-links a::after {
    display: none;
}

.nav-links a:hover {
    color: var(--brand-accent);
    background: var(--bg-secondary);
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 220px;
    gap: 0.65rem;
    justify-self: end;
}

.nav-utility-cluster {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem;
    flex-wrap: nowrap;
}

.nav-search,
.nav-cart,
.nav-account,
.nav-account-logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.58rem 0.86rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
}

.nav-search {
    width: 38px;
    min-width: 38px;
    padding: 0;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    cursor: pointer;
}

.nav-search:hover {
    color: var(--brand-accent);
    border-color: rgba(239, 68, 68, 0.22);
}

.nav-search-icon {
    width: 1rem;
    height: 1rem;
    display: inline-grid;
    place-items: center;
}

.nav-search-icon svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.nav-account {
    gap: 0.52rem;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.nav-account:hover {
    border-color: rgba(239, 68, 68, 0.26);
    color: var(--brand-accent);
}

.nav-account-primary {
    background: #ffffff;
}

.nav-account-icon {
    width: 1.65rem;
    height: 1.65rem;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.08);
    color: currentColor;
    flex-shrink: 0;
}

.nav-account-icon svg {
    width: 0.95rem;
    height: 0.95rem;
    fill: currentColor;
}

.nav-account-label,
.nav-cart-label {
    white-space: nowrap;
}

.nav-cart {
    gap: 0.56rem;
    color: #ffffff;
    background: var(--brand-primary);
    border: 1px solid var(--brand-primary);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.16);
}

.nav-cart:hover {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
}

.nav-cart-icon {
    width: 1.08rem;
    height: 1.08rem;
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
}

.nav-cart-icon svg {
    width: 1.08rem;
    height: 1.08rem;
    fill: currentColor;
}

.nav-cart [data-cart-count] {
    display: inline-grid;
    place-items: center;
    min-width: 1.18rem;
    height: 1.18rem;
    margin-left: 0.08rem;
    border-radius: 50%;
    color: var(--brand-primary);
    background: #ffffff;
    font-size: 0.64rem;
}

.nav-account-logout-form {
    margin: 0;
}

.nav-account-logout {
    padding-inline: 0.86rem;
    border: 1px solid rgba(239, 68, 68, 0.18);
    background: rgba(255, 245, 245, 0.92);
    color: #b91c1c;
    box-shadow: none;
}

.nav-account-logout:hover {
    background: rgba(254, 226, 226, 0.96);
    border-color: rgba(239, 68, 68, 0.28);
}

.nav-account-logout-text {
    white-space: nowrap;
}

.header-home {
    background: linear-gradient(180deg, rgba(7, 7, 7, 0.92), rgba(7, 7, 7, 0.48));
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.header-home .logo,
.header-home .nav-links a,
.header-home .nav-brand small,
.header-home .nav-search,
.header-home .nav-cart {
    color: #ffffff;
}

.header-home .logo span {
    color: var(--hero-accent);
}

.header-home .logo-mark {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.header-home .nav-brand small {
    border-left-color: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.68);
}

.header-home .nav-menu {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: none;
}

.header-home .nav-links a {
    color: rgba(255, 255, 255, 0.84);
}

.header-home .nav-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.header-home .nav-search {
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.header-home .nav-search:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.22);
}

.store-search-overlay[hidden] {
    display: none;
}

.store-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 90;
}

.store-search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.48);
    backdrop-filter: blur(10px);
}

.store-search-panel {
    position: relative;
    width: min(960px, calc(100% - 2rem));
    margin: 5.5rem auto 0;
    padding: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 20rem),
        rgba(255, 255, 255, 0.98);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
}

.store-search-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.store-search-panel-head h2 {
    margin: 0.4rem 0 0.5rem;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.04;
}

.store-search-panel-head p {
    margin: 0;
    max-width: 620px;
    color: #64748b;
    line-height: 1.7;
}

.store-search-close {
    width: 44px;
    min-width: 44px;
    height: 44px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 50%;
    background: #ffffff;
    color: #0f172a;
    cursor: pointer;
}

.store-search-close svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.store-search-form {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.store-search-input-shell {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 0.8rem;
    min-height: 72px;
    padding: 0 1.2rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.store-search-field-icon {
    display: inline-grid;
    place-items: center;
    color: #64748b;
}

.store-search-field-icon svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: currentColor;
}

.store-search-input {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: #0f172a;
    font-size: 1.1rem;
    font-weight: 700;
    outline: none;
}

.store-search-input::placeholder {
    color: #94a3b8;
    font-weight: 600;
}

.store-search-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.store-search-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.store-search-card {
    padding: 1.1rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 24px;
    background: rgba(248, 250, 252, 0.88);
}

.store-search-card-kicker {
    display: inline-block;
    margin-bottom: 0.9rem;
    color: #64748b;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.store-search-chip-list {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.store-search-chip,
.store-search-suggestion-list a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: #ffffff;
    color: #0f172a;
    font-size: 0.84rem;
    font-weight: 800;
}

.store-search-suggestion-list {
    display: grid;
    gap: 0.7rem;
}

body.search-open {
    overflow: hidden;
}

.header-home .nav-cart {
    background: transparent;
    border-color: var(--hero-accent);
    box-shadow: none;
}

.header-home .nav-cart:hover {
    background: var(--hero-accent);
    border-color: var(--hero-accent);
}

.header-home .nav-cart span {
    color: var(--hero-accent);
}

.header-home .nav-cart-label,
.header-home .nav-cart-icon {
    color: #ffffff;
}

.header-home .nav-account {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.header-home .nav-account:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.header-home .nav-account-icon {
    background: rgba(255, 255, 255, 0.12);
}

.header-home .nav-account-logout {
    color: #ffe2e2;
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.22);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.68rem 1.12rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
    background: transparent;
    color: var(--text-main);
}

.btn-primary {
    background: var(--brand-primary);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--brand-accent);
    box-shadow: 0 16px 36px rgba(100, 116, 139, 0.25);
}

.btn-accent {
    background: var(--brand-accent);
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(100, 116, 139, 0.24);
}

.btn-accent:hover {
    transform: translateY(-2px);
    background: var(--brand-accent-strong);
}

.btn-outline {
    border-color: var(--border-color);
    background: #ffffff;
}

.btn-outline:hover {
    border-color: var(--brand-accent);
    color: var(--brand-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

main {
    margin-top: 74px;
    min-height: 80vh;
}

/* Full-screen hero bleeds behind fixed header */
.hero-slider-window {
    margin-top: -74px;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
}

.home-hero {
    min-height: calc(100vh - 74px);
    display: grid;
    align-items: center;
    padding: clamp(3rem, 6vw, 5.2rem) 0;
    background:
        linear-gradient(120deg, rgba(100, 116, 139, 0.1), transparent 32%),
        linear-gradient(145deg, #ffffff 0%, #f8fafc 48%, #eef2f7 100%);
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 18%, rgba(148, 163, 184, 0.22), transparent 21rem),
        radial-gradient(circle at 72% 72%, rgba(71, 85, 105, 0.13), transparent 26rem),
        linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px);
    background-size: auto, auto, 72px 72px, 72px 72px;
    animation: heroWash 13s ease-in-out infinite alternate;
}

.home-hero::after {
    content: '';
    position: absolute;
    right: -10rem;
    bottom: -13rem;
    width: 34rem;
    height: 34rem;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.05);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
    gap: clamp(2rem, 6vw, 4.8rem);
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.38rem 0.65rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(100, 116, 139, 0.18);
    border-radius: var(--radius-full);
    color: var(--brand-accent);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-sm);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-title {
    max-width: 720px;
    margin-bottom: 1rem;
    font-size: clamp(2.35rem, 5.9vw, 5.35rem);
    line-height: 0.94;
    letter-spacing: -0.07em;
    text-transform: none;
}

.hero-copy {
    max-width: 520px;
    margin-bottom: 1.35rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 520px;
    margin-top: 1.55rem;
}

.hero-metrics div {
    padding: 0.86rem;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-sm);
}

.hero-metrics strong,
.hero-metrics span {
    display: block;
}

.hero-metrics strong {
    font-size: 1.18rem;
    line-height: 1;
}

.hero-metrics span {
    margin-top: 0.3rem;
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 800;
}

.hero-showcase {
    position: relative;
    min-height: min(58vw, 550px);
}

.hero-slide-stack {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: clamp(1.4rem, 3vw, 2.4rem);
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateX(24px) scale(0.97);
    animation: heroSlide 12s ease-in-out infinite;
}

.hero-slide:nth-child(2) {
    animation-delay: 4s;
}

.hero-slide:nth-child(3) {
    animation-delay: 8s;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(15, 23, 42, 0.78));
}

.hero-slide-caption {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    color: #ffffff;
}

.hero-slide-caption span {
    display: block;
    margin-bottom: 0.28rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-slide-caption strong {
    font-size: clamp(1rem, 2vw, 1.45rem);
    line-height: 1.1;
}

.hero-floating-card {
    position: absolute;
    right: -0.7rem;
    bottom: 2rem;
    z-index: 2;
    width: min(250px, 64%);
    padding: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-md);
}

.hero-floating-card span,
.hero-floating-card strong,
.hero-floating-card a {
    display: block;
}

.hero-floating-card span {
    color: var(--brand-accent);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-floating-card strong {
    margin: 0.32rem 0 0.75rem;
    line-height: 1.2;
}

.hero-floating-card a {
    color: var(--brand-primary);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@keyframes heroSlide {
    0%,
    33% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    39%,
    94% {
        opacity: 0;
        transform: translateX(-22px) scale(0.985);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes heroWash {
    from {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }

    to {
        background-position: 0 0, 0 0, 28px 0, 0 28px;
    }
}

/* ===========================================
   PREMIUM HOME HERO
   ========================================= */

.hero-slider-window.premium-hero {
    position: relative;
    width: 100%;
    min-height: calc(100svh - 28px);
    overflow: hidden;
    background: #070707;
    color: #ffffff;
    --premium-hero-duration: 6500ms;
    --premium-hero-progress: 6200ms;
}

.premium-hero-stage {
    position: relative;
    min-height: calc(100svh - 28px);
}

.premium-hero-word {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    font-family: 'Oswald', sans-serif;
    font-size: 11rem;
    font-weight: 700;
    line-height: 0.9;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.06);
    text-transform: uppercase;
    letter-spacing: 0;
    white-space: nowrap;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 220ms ease, transform 220ms ease;
    opacity: 0.16;
}

.premium-hero-word.is-changing {
    opacity: 0.03;
    transform: translate(-50%, -46%);
}

.premium-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 900ms ease, visibility 900ms ease;
}

.premium-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 3;
}

.premium-hero-media,
.premium-hero-media img,
.premium-hero-overlay {
    position: absolute;
    inset: 0;
}

.premium-hero-media {
    z-index: 1;
    overflow: hidden;
    background: #070707;
}

.premium-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1);
    filter: grayscale(22%) contrast(1.08) brightness(0.58);
    transition: transform 6s cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-hero-slide.is-active .premium-hero-media img {
    transform: scale(1.08);
}

.premium-hero-overlay {
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.82) 28%, rgba(5, 5, 5, 0.34) 64%, rgba(5, 5, 5, 0) 100%),
        linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.32) 58%, rgba(5, 5, 5, 0.94) 100%);
}

.premium-hero-content {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    min-height: calc(100svh - 28px);
    max-width: 1240px;
    margin: 0 auto;
    padding: 8.5rem 5rem 6.5rem;
}

.premium-hero-copy {
    width: 100%;
    max-width: 600px;
}

.premium-hero-eyebrow-group,
.premium-hero-title span,
.premium-hero-description,
.premium-hero-actions {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.premium-hero-slide.is-active .premium-hero-eyebrow-group {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 220ms;
}

.premium-hero-slide.is-active .premium-hero-title span:first-child {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 340ms;
}

.premium-hero-slide.is-active .premium-hero-title span:last-child {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 460ms;
}

.premium-hero-slide.is-active .premium-hero-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 580ms;
}

.premium-hero-slide.is-active .premium-hero-actions {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 700ms;
}

.premium-hero-eyebrow-group {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.premium-hero-divider {
    width: 52px;
    height: 1px;
    background: var(--hero-accent);
}

.premium-hero-eyebrow {
    color: var(--hero-accent);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
}

.premium-hero-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    font-family: 'Oswald', sans-serif;
    font-size: 5.8rem;
    font-weight: 700;
    line-height: 0.94;
    text-transform: uppercase;
    letter-spacing: 0;
    text-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.premium-hero-title .is-accent {
    color: var(--hero-accent);
    text-shadow: 0 0 34px rgba(245, 5, 55, 0.32);
}

.premium-hero-description {
    max-width: 470px;
    margin-bottom: 2.8rem;
    padding-left: 1.4rem;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
    font-weight: 300;
    line-height: 1.78;
}

.premium-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.premium-hero-btn {
    position: relative;
    min-width: 212px;
    min-height: 54px;
    padding: 0.95rem 1.8rem;
    border-width: 1px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    overflow: hidden;
    transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
    transform: none;
}

.premium-hero-btn:hover {
    transform: none;
}

.premium-hero-btn-fill {
    color: #ffffff;
    border-color: var(--hero-accent);
    background: transparent;
}

.premium-hero-btn-fill::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--hero-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 400ms ease;
}

.premium-hero-btn-fill:hover {
    box-shadow: 0 10px 28px rgba(245, 5, 55, 0.34);
}

.premium-hero-btn-fill:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.premium-hero-btn-ghost {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.02);
}

.premium-hero-btn-ghost::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 300ms ease;
}

.premium-hero-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
}

.premium-hero-btn-ghost:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.premium-hero-nav {
    position: absolute;
    top: 50%;
    right: 3rem;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    transform: translateY(-50%);
}

.premium-hero-nav-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.38);
    cursor: pointer;
    opacity: 0.48;
    transition: opacity var(--transition-fast), color var(--transition-fast);
}

.premium-hero-nav-item:hover,
.premium-hero-nav-item.is-active {
    color: #ffffff;
    opacity: 1;
}

.premium-hero-nav-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: 0;
}

.premium-hero-nav-rail {
    position: relative;
    width: 2px;
    height: 34px;
    background: rgba(255, 255, 255, 0.24);
    overflow: hidden;
    transition: height 250ms ease;
}

.premium-hero-nav-item.is-active .premium-hero-nav-rail {
    height: 74px;
}

.premium-hero-nav-fill {
    position: absolute;
    inset: 0;
    background: var(--hero-accent);
    box-shadow: 0 0 12px rgba(245, 5, 55, 0.44);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0ms linear;
}

.premium-hero-nav-item.is-active .premium-hero-nav-fill {
    transform: scaleY(1);
    transition-duration: var(--premium-hero-progress);
}

@media (max-width: 1200px) {
    .premium-hero-word {
        font-size: 8rem;
    }

    .premium-hero-content {
        padding: 8rem 4rem 6rem;
    }

    .premium-hero-title {
        font-size: 5rem;
    }
}

@media (max-width: 900px) {
    .hero-slider-window.premium-hero,
    .premium-hero-stage,
    .premium-hero-content {
        min-height: calc(100svh - 24px);
    }

    .premium-hero-word {
        top: 18%;
        font-size: 5.4rem;
    }

    .premium-hero-content {
        align-items: flex-end;
        padding: 8rem 1.6rem 8.4rem;
    }

    .premium-hero-title {
        font-size: 4rem;
    }

    .premium-hero-nav {
        top: auto;
        right: auto;
        bottom: 1.8rem;
        left: 1.6rem;
        flex-direction: row;
        gap: 1rem;
        transform: none;
    }

    .premium-hero-nav-item {
        gap: 0.7rem;
    }

    .premium-hero-nav-label {
        writing-mode: initial;
        transform: none;
    }

    .premium-hero-nav-rail {
        width: 44px;
        height: 2px;
        transition: width 250ms ease;
    }

    .premium-hero-nav-item.is-active .premium-hero-nav-rail {
        width: 72px;
        height: 2px;
    }

    .premium-hero-nav-fill {
        transform: scaleX(0);
        transform-origin: left;
    }

    .premium-hero-nav-item.is-active .premium-hero-nav-fill {
        transform: scaleX(1);
    }
}

@media (max-width: 640px) {
    .premium-hero-overlay {
        background:
            linear-gradient(180deg, rgba(5, 5, 5, 0.18) 0%, rgba(5, 5, 5, 0.34) 24%, rgba(5, 5, 5, 0.78) 66%, rgba(5, 5, 5, 0.96) 100%);
    }

    .premium-hero-word {
        top: 17%;
        font-size: 3.9rem;
        opacity: 0.12;
    }

    .premium-hero-content {
        padding: 7.6rem 1rem 8.2rem;
    }

    .premium-hero-eyebrow-group {
        margin-bottom: 1.1rem;
    }

    .premium-hero-divider {
        width: 38px;
    }

    .premium-hero-title {
        font-size: 2.85rem;
        margin-bottom: 1.4rem;
    }

    .premium-hero-description {
        max-width: none;
        margin-bottom: 2rem;
        padding-left: 1rem;
        font-size: 0.98rem;
        line-height: 1.68;
    }

    .premium-hero-actions {
        flex-direction: column;
    }

    .premium-hero-btn {
        width: 100%;
        min-width: 0;
    }

    .premium-hero-nav {
        right: 1rem;
        left: 1rem;
        justify-content: space-between;
    }

    .premium-hero-nav-label {
        display: none;
    }
}

/* Page Hero */
.page-hero {
    position: relative;
    padding: 4rem 0 3rem;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(100, 116, 139, 0.11), transparent 35%),
        linear-gradient(135deg, #ffffff, #f8fafc);
    border-bottom: 1px solid var(--border-color);
}

.page-hero::after {
    content: '';
    position: absolute;
    right: 4%;
    top: 18%;
    width: 11rem;
    height: 11rem;
    border: 1px solid rgba(100, 116, 139, 0.16);
    border-radius: 999px;
    box-shadow: inset 0 0 0 2rem rgba(100, 116, 139, 0.04);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.page-title-accent {
    color: var(--hero-accent);
}

.page-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--hero-accent);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.4rem;
}

.page-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.5rem;
    max-width: 640px;
}

.page-hero-metrics div {
    padding: 0.9rem;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-sm);
}

.page-hero-metrics strong,
.page-hero-metrics span {
    display: block;
}

.page-hero-metrics strong {
    font-size: 1.18rem;
    line-height: 1;
}

.page-hero-metrics span {
    margin-top: 0.28rem;
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 800;
}

.page-hero-word {
    position: absolute;
    top: 50%;
    right: 4%;
    z-index: 0;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(4.2rem, 11vw, 9rem);
    font-weight: 700;
    line-height: 0.9;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.06);
    text-transform: uppercase;
    pointer-events: none;
    transform: translateY(-50%);
}

.page-hero-shop {
    min-height: clamp(620px, 78vh, 860px);
    padding-bottom: 7rem;
    background:
        radial-gradient(circle at 78% 20%, rgba(245, 5, 55, 0.16), transparent 18rem),
        linear-gradient(135deg, #080808 0%, #111827 55%, #050505 100%);
    border-bottom: none;
    color: #ffffff;
}

.page-hero-shop::after {
    display: none;
}

.page-hero-shop::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.84) 0%, rgba(5, 5, 5, 0.68) 38%, rgba(5, 5, 5, 0.18) 100%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.6) 100%);
}

.page-hero-shop .page-hero-content,
.page-hero-product .page-hero-content {
    max-width: 690px;
}

.page-hero-shop .breadcrumb,
.page-hero-shop .section-lead,
.page-hero-product .breadcrumb,
.page-hero-product .section-lead {
    color: rgba(255, 255, 255, 0.72);
}

.page-hero-shop .page-title,
.page-hero-product .page-title {
    color: #ffffff;
}

.page-hero-shop-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
    gap: 1.45rem;
    align-items: center;
}

.page-hero-panel {
    padding: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.page-hero-panel-showcase {
    display: grid;
    gap: 0.9rem;
}

.page-hero-panel-label {
    display: inline-flex;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-hero-quick-links {
    display: grid;
    gap: 0.72rem;
}

.page-hero-quick-link {
    display: grid;
    gap: 0.18rem;
    padding: 0.85rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.page-hero-quick-link strong {
    font-size: 0.92rem;
    line-height: 1.2;
}

.page-hero-quick-link span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
    font-weight: 700;
}

.page-hero-quick-link:hover,
.page-hero-quick-link.is-active {
    transform: translateY(-1px);
    border-color: rgba(245, 5, 55, 0.42);
    background: rgba(245, 5, 55, 0.12);
}

.page-hero-shop .page-hero-metrics div {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
}

.page-hero-shop .page-hero-metrics span {
    color: rgba(255, 255, 255, 0.62);
}

.shop-app-frame {
    display: grid;
    gap: 0.82rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.78)),
        #0f172a;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.shop-app-frame-top,
.shop-app-status {
    display: flex;
    align-items: center;
}

.shop-app-frame-top {
    justify-content: space-between;
    gap: 0.8rem;
}

.shop-app-frame-top strong {
    display: inline-grid;
    place-items: center;
    min-width: 2.35rem;
    height: 2.35rem;
    padding: 0 0.65rem;
    border-radius: 999px;
    background: rgba(245, 5, 55, 0.16);
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 900;
}

.shop-app-status {
    gap: 0.48rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.shop-app-status-dot {
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

.shop-app-search {
    display: grid;
    gap: 0.2rem;
    padding: 0.92rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
}

.shop-app-search span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.shop-app-search strong {
    color: #ffffff;
    font-size: 1.06rem;
    line-height: 1.2;
}

.shop-app-chip-row {
    display: flex;
    gap: 0.55rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
}

.shop-app-chip-row::-webkit-scrollbar {
    display: none;
}

.shop-app-chip {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    min-height: 34px;
    padding: 0.42rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.74rem;
    font-weight: 900;
    transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.shop-app-chip:hover,
.shop-app-chip.is-active {
    border-color: rgba(245, 5, 55, 0.34);
    background: rgba(245, 5, 55, 0.14);
    color: #ffffff;
}

.shop-app-card-stack {
    display: grid;
    gap: 0.72rem;
}

.shop-app-product-card {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 0.78rem;
    align-items: center;
    padding: 0.74rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.shop-app-product-card:hover {
    transform: translateY(-1px);
    border-color: rgba(245, 5, 55, 0.34);
    background: rgba(255, 255, 255, 0.08);
}

.shop-app-product-media {
    width: 76px;
    aspect-ratio: 1;
    border-radius: 18px;
    overflow: hidden;
    background: #e2e8f0;
}

.shop-app-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-app-product-body {
    display: grid;
    gap: 0.16rem;
}

.shop-app-product-body span {
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.shop-app-product-body strong {
    font-size: 0.92rem;
    line-height: 1.28;
}

.shop-app-product-body small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    font-weight: 800;
}

.shop-app-empty-state {
    padding: 1rem;
    border: 1px dashed rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    color: rgba(255, 255, 255, 0.68);
    text-align: center;
    font-weight: 700;
}

.shop-hero-sidecards {
    display: grid;
    gap: 0.7rem;
}

.shop-hero-sidecard {
    display: grid;
    gap: 0.2rem;
    padding: 0.9rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
}

.shop-hero-sidecard span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.shop-hero-sidecard strong {
    color: #ffffff;
    font-size: 1.52rem;
    line-height: 1;
}

.shop-hero-sidecard small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.8rem;
    font-weight: 700;
}

.page-hero-product {
    min-height: 480px;
    background: #050505;
    border-bottom: none;
    color: #ffffff;
}

.page-hero-product::after {
    display: none;
}

.page-hero-product .page-hero-media,
.page-hero-product .page-hero-overlay {
    position: absolute;
    inset: 0;
}

.page-hero-product .page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%) contrast(1.02) brightness(0.46);
}

.page-hero-product .page-hero-overlay {
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.82) 36%, rgba(5, 5, 5, 0.24) 100%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.68) 100%);
}

.page-hero-product .page-hero-content {
    padding-bottom: 0.6rem;
}

.page-hero-price {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    padding: 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 1.22rem;
    font-weight: 900;
}

.page-hero-product .page-hero-metrics div {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
}

.page-hero-product .page-hero-metrics span {
    color: rgba(255, 255, 255, 0.62);
}

.page-title {
    font-size: clamp(2.1rem, 5vw, 4rem);
    margin: 0.6rem 0 0.75rem;
}

.breadcrumb {
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.breadcrumb a:hover {
    color: var(--brand-accent);
}

/* Product Card */
.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-smooth), border-color var(--transition-fast), box-shadow var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 116, 139, 0.35);
    box-shadow: var(--shadow-md);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    background:
        linear-gradient(145deg, #f8fafc, #eef2ff);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 82%;
    height: 82%;
    object-fit: contain;
    transition: transform var(--transition-smooth);
    mix-blend-mode: multiply;
}

.product-card:hover .product-image img {
    transform: scale(1.08) rotate(-1deg);
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.58rem;
    border-radius: var(--radius-full);
    background: #ffffff;
    color: var(--brand-accent);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.product-info {
    padding: 0.95rem;
}

.product-category {
    font-size: 0.68rem;
    color: var(--brand-accent);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 0.35rem;
}

.product-name {
    font-size: 0.98rem;
    margin-bottom: 0.45rem;
    font-weight: 800;
}

.product-price {
    font-size: 1.12rem;
    font-weight: 900;
    color: var(--text-main);
}

.product-meta {
    margin-top: 0.45rem;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.product-card-head {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: start;
}

.product-card-copy {
    margin-top: 0.45rem;
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.58;
}

.product-meta-row {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: 0.72rem;
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 800;
}

.product-card-shop {
    border-radius: var(--radius-xl);
}

.product-card-shop .product-image {
    aspect-ratio: 1 / 1.08;
    background: #0f172a;
    align-items: stretch;
}

.product-card-shop .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: normal;
}

.product-card-shop .product-info {
    padding: 1rem 1rem 1.05rem;
}

.product-stock-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
}

/* Category Grid */
.category-card {
    position: relative;
    height: 230px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-md);
    background: var(--bg-soft);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.74), rgba(17, 24, 39, 0.08));
    z-index: 1;
    transition: background var(--transition-fast);
}

.category-card:hover::before {
    background: linear-gradient(to top, rgba(100, 116, 139, 0.76), rgba(17, 24, 39, 0.04));
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform var(--transition-smooth);
}

.category-card:hover img {
    transform: scale(1.06);
}

.category-name {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 1.22rem;
}

/* Home Sections */
.home-categories {
    padding-top: clamp(3.2rem, 6vw, 5rem);
    background: #ffffff;
}

.home-section-heading {
    max-width: 620px;
    margin-bottom: 1.45rem;
}

.home-section-heading.is-inline {
    display: flex;
    max-width: none;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
}

.home-section-heading h2 {
    margin-top: 0.42rem;
    color: var(--text-main);
    font-size: clamp(1.55rem, 3vw, 2.45rem);
    letter-spacing: -0.055em;
    text-transform: none;
}

.home-section-heading p {
    max-width: 620px;
    margin-top: 0.55rem;
    color: var(--text-muted);
}

.category-rail {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.85rem;
}

.category-tile {
    position: relative;
    min-height: 176px;
    overflow: hidden;
    padding: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
    box-shadow: var(--shadow-sm);
    isolation: isolate;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-fast);
}

.category-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.78));
}

.category-tile img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.category-tile span {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.92);
    font-size: 0.7rem;
    font-weight: 900;
}

.category-tile h3 {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 2.7rem;
    z-index: 2;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.05;
    text-transform: none;
    letter-spacing: -0.025em;
}

.category-tile p {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
}

.category-tile:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 116, 139, 0.4);
    box-shadow: var(--shadow-md);
}

.category-tile:hover img {
    transform: scale(1.06);
}

.home-oscillation-spotlight {
    padding-top: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.home-campaigns {
    padding-top: clamp(2.4rem, 5vw, 4rem);
    padding-bottom: clamp(2.8rem, 5vw, 4.2rem);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.campaign-slider-stage {
    position: relative;
    min-height: 0;
}

.campaign-slide {
    display: none;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    gap: 1.2rem;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 32px;
    background: linear-gradient(135deg, #111827 0%, #0f172a 55%, #020617 100%);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.campaign-slide.is-active {
    display: grid;
}

.campaign-slide-copy {
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: clamp(1.5rem, 4vw, 2.8rem);
    color: #ffffff;
}

.campaign-slide-copy h3 {
    max-width: 11ch;
    font-size: clamp(1.9rem, 4vw, 3.3rem);
    line-height: 0.98;
    text-transform: none;
}

.campaign-slide-copy p {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.72;
}

.campaign-chip {
    display: inline-flex;
    width: fit-content;
    padding: 0.4rem 0.78rem;
    border-radius: 999px;
    background: rgba(245, 5, 55, 0.16);
    color: #fda4af;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.campaign-slide-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
}

.campaign-slide-name {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.82rem;
    font-weight: 800;
}

.campaign-slide-media {
    min-height: 100%;
    padding: 1rem 1rem 1rem 0;
}

.campaign-slide-media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: 24px;
    object-fit: cover;
}

.campaign-slider-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.campaign-slider-dot {
    min-width: 44px;
    min-height: 44px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 900;
    cursor: pointer;
    transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.campaign-slider-dot:hover,
.campaign-slider-dot.is-active {
    border-color: var(--brand-primary);
    background: var(--brand-primary);
    color: #ffffff;
    transform: translateY(-1px);
}

.oscillation-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 1.2rem;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 32px;
    background: linear-gradient(135deg, #020617 0%, #111827 48%, #0f172a 100%);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.14);
}

.oscillation-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(96, 165, 250, 0.18), transparent 18rem),
        linear-gradient(90deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0));
    pointer-events: none;
}

.oscillation-copy,
.oscillation-media {
    position: relative;
    z-index: 1;
}

.oscillation-copy {
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: clamp(1.4rem, 4vw, 2.6rem);
    color: #ffffff;
}

.oscillation-copy h2 {
    font-size: clamp(1.8rem, 4vw, 3.4rem);
    text-transform: none;
    letter-spacing: -0.05em;
}

.oscillation-copy p {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.75;
}

.oscillation-meta {
    display: grid;
    gap: 0.25rem;
}

.oscillation-meta strong {
    font-size: 1.1rem;
}

.oscillation-meta span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.88rem;
    font-weight: 700;
}

.oscillation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.oscillation-actions .btn {
    pointer-events: none;
}

.oscillation-media {
    min-height: 100%;
}

.oscillation-media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    filter: contrast(1.02) brightness(0.9);
}

.home-trends {
    background:
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.trend-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 1rem;
    align-items: stretch;
}

.trend-feature {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: var(--radius-xl);
    background: #0f172a;
    box-shadow: var(--shadow-md);
    isolation: isolate;
}

.trend-feature::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.22), rgba(15, 23, 42, 0.05));
}

.trend-feature img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.trend-feature:hover img {
    transform: scale(1.04);
}

.trend-feature-copy {
    position: relative;
    z-index: 2;
    max-width: 360px;
    padding: clamp(1.25rem, 3vw, 2rem);
    color: #ffffff;
}

.trend-feature-copy span {
    display: inline-flex;
    margin-bottom: 0.85rem;
    padding: 0.34rem 0.58rem;
    border-radius: var(--radius-full);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.trend-feature-copy h3 {
    font-size: clamp(1.65rem, 4vw, 3.2rem);
    text-transform: none;
}

.trend-feature-copy p {
    margin: 0.85rem 0 1rem;
    color: rgba(255, 255, 255, 0.76);
}

.trend-feature-copy strong {
    font-size: 1.35rem;
}

.trend-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.trend-product {
    display: grid;
    align-content: start;
    min-height: 232px;
    padding: 0.78rem;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-smooth), border-color var(--transition-fast), box-shadow var(--transition-smooth);
}

.trend-product img {
    width: 100%;
    height: 126px;
    object-fit: contain;
    margin-bottom: 0.8rem;
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, #f8fafc, #eef2ff);
    mix-blend-mode: multiply;
}

.trend-product span {
    color: var(--brand-accent);
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.trend-product h3 {
    margin: 0.28rem 0 0.42rem;
    font-size: 0.95rem;
    line-height: 1.15;
    text-transform: none;
    letter-spacing: -0.025em;
}

.trend-product strong {
    font-size: 1rem;
}

.trend-product:hover {
    transform: translateY(-4px);
    border-color: rgba(100, 116, 139, 0.35);
    box-shadow: var(--shadow-md);
}

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

.home-assurance-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
}

.home-assurance-intro p {
    max-width: 680px;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.home-assurance div {
    padding: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.home-assurance span,
.home-assurance strong {
    display: block;
}

.home-assurance span {
    color: var(--brand-accent);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.home-assurance strong {
    margin-top: 0.35rem;
}

.home-assurance p {
    margin-top: 0.35rem;
    color: var(--text-muted);
    font-size: 0.84rem;
}

.home-showcase {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.showcase-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    gap: 1rem;
    align-items: stretch;
}

.showcase-feature {
    position: relative;
    min-height: 510px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-xl);
    background: #050505;
    box-shadow: var(--shadow-md);
    isolation: isolate;
}

.showcase-feature::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.72) 42%, rgba(5, 5, 5, 0.18) 100%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.1) 0%, rgba(5, 5, 5, 0.72) 100%);
}

.showcase-feature img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.showcase-feature:hover img {
    transform: scale(1.04);
}

.showcase-feature-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    max-width: 410px;
    padding: clamp(1.4rem, 3vw, 2.2rem);
    color: #ffffff;
}

.showcase-feature-copy span {
    display: inline-flex;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.showcase-feature-copy h3 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    text-transform: none;
    letter-spacing: -0.05em;
}

.showcase-feature-copy p {
    margin-top: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.showcase-feature-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.4rem;
}

.showcase-feature-meta strong {
    font-size: 1.5rem;
}

.showcase-rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.showcase-product {
    display: grid;
    grid-template-rows: auto 1fr;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-smooth), border-color var(--transition-fast), box-shadow var(--transition-smooth);
}

.showcase-product:hover {
    transform: translateY(-4px);
    border-color: rgba(100, 116, 139, 0.34);
    box-shadow: var(--shadow-md);
}

.showcase-product-media {
    position: relative;
    aspect-ratio: 1 / 0.92;
    overflow: hidden;
    background: #e2e8f0;
}

.showcase-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-product-info {
    display: grid;
    align-content: start;
    gap: 0.5rem;
    padding: 0.95rem;
}

.showcase-product-group {
    color: var(--brand-accent);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.showcase-product-info h3 {
    font-size: 1rem;
    line-height: 1.15;
    text-transform: none;
    letter-spacing: -0.03em;
}

.showcase-product-info p {
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.58;
}

.showcase-product-meta {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: 0.3rem;
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 800;
}

.showcase-product-meta strong {
    color: var(--text-main);
    font-size: 1rem;
}

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

.showcase-stat {
    padding: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-lg);
    background: #0f172a;
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.showcase-stat strong,
.showcase-stat span {
    display: block;
}

.showcase-stat strong {
    font-size: 1.65rem;
    line-height: 1;
}

.showcase-stat span {
    margin-top: 0.32rem;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.stock-indicator,
.product-stock-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0.2rem 0.58rem;
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.stock-indicator-in,
.product-stock-badge-in,
.stock-pill-in {
    background: #dcfce7;
    color: #166534;
}

.stock-indicator-low,
.product-stock-badge-low,
.stock-pill-low {
    background: #fef3c7;
    color: #92400e;
}

.stock-indicator-out,
.product-stock-badge-out,
.stock-pill-out {
    background: #fee2e2;
    color: #b91c1c;
}

.home-editorial {
    padding: 2.4rem 0;
    background: var(--brand-primary);
    color: #ffffff;
}

.home-editorial .section-kicker {
    color: #cbd5e1;
}

.editorial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr) auto;
    gap: 1.2rem;
    align-items: center;
}

.editorial-grid h2 {
    margin-top: 0.35rem;
    font-size: clamp(1.4rem, 3vw, 2.25rem);
    text-transform: none;
}

.editorial-grid p {
    color: rgba(255, 255, 255, 0.7);
}

/* Shop */
.shop-stage {
    position: relative;
    z-index: 3;
    margin-top: -4rem;
    padding-top: 0;
}

.shop-surface {
    padding: 1.1rem;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 36px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.98) 24%, #ffffff 100%);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(18px);
}

.shop-layout {
    display: grid;
    grid-template-columns: 368px minmax(0, 1fr);
    gap: 1.45rem;
    align-items: start;
}

.filter-panel,
.info-card,
.checkout-summary,
.contact-card,
.form-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.filter-panel {
    position: sticky;
    top: 86px;
    max-height: calc(100vh - 104px);
    overflow-y: auto;
    padding: 1rem;
    border-radius: 30px;
}

.filter-panel-v2 {
    display: grid;
    gap: 0.82rem;
    background:
        linear-gradient(180deg, rgba(248, 250, 252, 0.92), #ffffff 44%),
        #ffffff;
}

.filter-panel::-webkit-scrollbar {
    width: 8px;
}

.filter-panel::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.6);
}

.filter-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.25rem 0.15rem 0.1rem;
}

.filter-title {
    margin-top: 0.28rem;
    font-size: 1.05rem;
    letter-spacing: -0.035em;
    text-transform: none;
}

.filter-count-badge {
    display: inline-grid;
    place-items: center;
    min-width: 2rem;
    height: 2rem;
    border-radius: 50%;
    color: #ffffff;
    background: var(--brand-primary);
    font-size: 0.78rem;
    font-weight: 900;
}

.filter-insight {
    display: grid;
    gap: 0.16rem;
    padding: 0.88rem;
    border: 1px solid rgba(191, 219, 254, 0.82);
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at 88% 0%, rgba(100, 116, 139, 0.16), transparent 4.5rem),
        #eff6ff;
}

.filter-insight strong {
    color: var(--brand-primary);
    font-size: 0.94rem;
}

.filter-insight span {
    color: #475569;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.4;
}

.filter-overview-card {
    display: flex;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 0.95rem;
    border-radius: 24px;
    background: linear-gradient(135deg, #0f172a, #334155);
    color: #ffffff;
}

.filter-overview-card span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.filter-overview-card strong {
    display: block;
    margin-top: 0.25rem;
    font-size: 1.1rem;
    line-height: 1.2;
}

.filter-overview-card p {
    margin-top: 0.42rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    line-height: 1.5;
}

.filter-overview-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-height: 40px;
    padding: 0 0.9rem;
    border-radius: 999px;
    background: #ffffff;
    color: var(--brand-primary);
    font-size: 0.76rem;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18);
}

.filter-meta-grid,
.filter-quick-grid,
.filter-panel-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.62rem;
}

.filter-meta-card {
    display: grid;
    gap: 0.2rem;
    padding: 0.86rem;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: 20px;
    background: #ffffff;
}

.filter-meta-card strong {
    font-size: 1.02rem;
    line-height: 1;
}

.filter-meta-card span {
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.filter-quick-link,
.filter-panel-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.58rem 0.7rem;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: 16px;
    background: #ffffff;
    color: var(--text-main);
    font-size: 0.76rem;
    font-weight: 900;
    text-align: center;
    transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.filter-quick-link:hover,
.filter-panel-action:hover {
    transform: translateY(-1px);
    border-color: rgba(100, 116, 139, 0.28);
    color: var(--brand-accent);
}

.filter-quick-link.is-active,
.filter-panel-action.is-primary {
    color: #ffffff;
    border-color: var(--brand-primary);
    background: linear-gradient(135deg, var(--brand-primary), #334155);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.12);
}

.filter-search-card {
    display: grid;
    gap: 0.45rem;
    padding: 0.78rem;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: var(--radius-md);
    background: #ffffff;
}

.filter-search-card label {
    color: var(--text-main);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.filter-search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.55rem;
}

.filter-search-row input {
    width: 100%;
    min-height: 42px;
    padding: 0.72rem 0.82rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    outline: none;
}

.filter-search-row input:focus {
    border-color: rgba(100, 116, 139, 0.4);
    box-shadow: 0 0 0 4px rgba(100, 116, 139, 0.08);
}

.filter-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    min-height: 32px;
    padding: 0.42rem 0.72rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    background: #ffffff;
    color: var(--text-main);
    font-size: 0.74rem;
    font-weight: 900;
    transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.filter-pill:hover,
.filter-pill.is-active {
    border-color: rgba(245, 5, 55, 0.34);
    background: rgba(245, 5, 55, 0.08);
    color: #9f1239;
}

.active-filter-list,
.shop-active-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.active-filter-list {
    padding: 0.72rem;
    border: 1px dashed rgba(100, 116, 139, 0.28);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
}

.active-filter-list a,
.shop-active-tags a,
.filter-reset-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.34rem;
    white-space: nowrap;
    min-height: 30px;
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius-full);
    background: #ffffff;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    font-size: 0.72rem;
    font-weight: 900;
}

.active-filter-list a:hover,
.shop-active-tags a:hover,
.filter-reset-inline:hover {
    color: var(--brand-accent);
    border-color: rgba(100, 116, 139, 0.34);
}

.active-filter-list .filter-clear {
    color: #ffffff;
    background: var(--brand-primary);
    border-color: var(--brand-primary);
}

.filter-accordion,
.filter-category-group {
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: var(--radius-md);
    background: #ffffff;
    overflow: hidden;
}

.filter-accordion summary,
.filter-category-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.filter-accordion summary {
    min-height: 48px;
    padding: 0.78rem 0.88rem;
    color: var(--text-main);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.filter-category-group summary {
    min-height: 42px;
    padding: 0.68rem 0.72rem;
    background: var(--bg-secondary);
    font-size: 0.78rem;
    font-weight: 900;
}

.filter-accordion summary::-webkit-details-marker,
.filter-category-group summary::-webkit-details-marker {
    display: none;
}

.filter-accordion summary::after,
.filter-category-group summary::after {
    content: '+';
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 1.42rem;
    height: 1.42rem;
    border-radius: 50%;
    color: var(--brand-accent);
    background: rgba(100, 116, 139, 0.08);
    font-weight: 900;
    line-height: 1;
}

.filter-accordion[open] > summary::after,
.filter-category-group[open] > summary::after {
    content: '−';
}

.filter-accordion summary small,
.filter-category-group summary small {
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.filter-accordion-body,
.filter-option-list,
.category-accordion-stack {
    display: grid;
    gap: 0.5rem;
}

.filter-accordion-body,
.filter-option-list {
    padding: 0.62rem;
}

.category-accordion-stack {
    padding-top: 0.15rem;
}

.filter-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 40px;
    padding: 0.62rem 0.72rem;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    color: var(--text-main);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.25;
    transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.filter-option.is-strong {
    background: #ffffff;
    border-color: var(--border-color);
    font-weight: 900;
}

.filter-option small {
    flex: 0 0 auto;
    display: inline-grid;
    place-items: center;
    min-width: 1.62rem;
    height: 1.62rem;
    padding: 0 0.38rem;
    border-radius: var(--radius-full);
    color: var(--text-muted);
    background: #ffffff;
    font-size: 0.7rem;
    font-weight: 900;
}

.filter-option em {
    display: block;
    margin-top: 0.2rem;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 700;
}

.filter-option:hover {
    transform: translateY(-1px);
    color: var(--brand-accent);
    border-color: rgba(100, 116, 139, 0.26);
    background: #ffffff;
}

.filter-option.is-active {
    color: #ffffff;
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.14);
}

.filter-option.is-active small {
    color: var(--brand-primary);
}

.filter-option.is-active em {
    color: rgba(255, 255, 255, 0.68);
}

.filter-option.is-muted {
    opacity: 0.5;
}

.filter-color-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 0.62rem;
}

.filter-color-option {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.45rem;
    min-height: 42px;
    padding: 0.55rem;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    font-size: 0.78rem;
    font-weight: 900;
    transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.filter-swatch {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.16);
}

.filter-color-option small {
    color: var(--text-muted);
    font-size: 0.7rem;
}

.filter-color-option:hover {
    transform: translateY(-1px);
    color: var(--brand-accent);
    border-color: rgba(100, 116, 139, 0.26);
    background: #ffffff;
}

.filter-color-option.is-active {
    color: #ffffff;
    background: var(--brand-primary);
    border-color: var(--brand-primary);
}

.filter-color-option.is-active small {
    color: rgba(255, 255, 255, 0.72);
}

.filter-color-option.is-muted {
    opacity: 0.5;
}

.shop-toolbar,
.shop-results-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: 0.85rem;
    padding: 1rem 1.05rem;
    background:
        linear-gradient(135deg, #ffffff, #f8fafc);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
}

.shop-results-title {
    margin-top: 0.34rem;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    text-transform: none;
    letter-spacing: -0.04em;
}

.shop-count {
    color: var(--text-muted);
    font-weight: 700;
}

.shop-count strong {
    color: var(--text-main);
}

.shop-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.shop-sort-form {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.shop-sort-label {
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.shop-sort {
    min-width: 160px;
    padding: 0.62rem 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-main);
    background: #ffffff;
    outline: none;
}

.shop-active-tags {
    margin-bottom: 1rem;
}

.shop-active-tags a {
    background: var(--bg-secondary);
}

.shop-content {
    display: grid;
    gap: 1rem;
}

.product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.promo-strip {
    margin-top: var(--spacing-lg);
    padding: 1.1rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--brand-primary), #475569);
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-md);
    align-items: center;
}

.promo-strip p {
    color: rgba(255, 255, 255, 0.76);
}

.shop-empty-card {
    display: grid;
    gap: 0.8rem;
    padding: 1.4rem;
    margin-top: 1rem;
}

.shop-empty-card h2 {
    font-size: 1.14rem;
}

/* Product Detail */
.product-detail-section {
    padding: var(--spacing-lg) 0 var(--spacing-xl);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.85fr);
    gap: var(--spacing-lg);
    align-items: start;
}

.detail-media-card {
    position: sticky;
    top: 92px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(145deg, #f8fafc, #eef2ff);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: clamp(0.9rem, 2.2vw, 2.2rem);
    overflow: hidden;
}

.detail-media-card::after {
    content: '';
    position: absolute;
    right: -8rem;
    top: -8rem;
    width: 15rem;
    height: 15rem;
    background: rgba(100, 116, 139, 0.1);
    border-radius: 50%;
}

.detail-media-card img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 480px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 24px 40px rgba(17, 24, 39, 0.18));
}

.detail-media-card #product-main-image {
    min-height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    mix-blend-mode: normal;
    filter: none;
}

.detail-thumbs {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-top: 1rem;
}

.detail-thumb {
    min-height: 68px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #ffffff;
    display: grid;
    place-items: center;
    color: var(--text-muted);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.68rem;
    cursor: pointer;
    overflow: hidden;
    padding: 0.35rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.detail-thumb.is-active,
.detail-thumb:hover {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.08);
}

.detail-thumb img {
    width: 100%;
    height: 54px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.detail-thumb span {
    margin-top: 0.25rem;
}

.detail-info {
    padding-top: 0;
}

.detail-info-card {
    padding: clamp(1rem, 2.6vw, 1.65rem);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.back-link {
    color: var(--brand-accent);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
}

.detail-header-row {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.detail-overline {
    display: inline-flex;
    margin-bottom: 0.42rem;
    color: var(--brand-accent);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.detail-title {
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    margin: 0;
    text-transform: none;
}

.detail-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.55rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.stock-pill {
    padding: 0.32rem 0.65rem;
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.detail-description {
    color: var(--text-muted);
    font-size: 0.96rem;
    margin-bottom: 1rem;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-bottom: 0.2rem;
}

.detail-meta-card {
    padding: 0.88rem;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
}

.detail-meta-card span,
.detail-meta-card strong {
    display: block;
}

.detail-meta-card span {
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.detail-meta-card strong {
    margin-top: 0.28rem;
    font-size: 0.92rem;
    line-height: 1.3;
}

.option-group {
    padding: 0.9rem 0;
    border-top: 1px solid var(--border-color);
}

.option-label {
    display: flex;
    justify-content: space-between;
    color: var(--text-main);
    font-weight: 900;
    margin-bottom: 0.8rem;
}

.option-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.option-pill {
    padding: 0.58rem 0.82rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    background: #ffffff;
    color: var(--text-main);
    font-weight: 800;
    cursor: pointer;
    transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}

.option-pill:hover,
.option-pill.is-active {
    border-color: var(--brand-primary);
    background: var(--brand-primary);
    color: #ffffff;
}

.cart-panel {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0.8rem;
    margin: 1rem 0;
}

.qty-input {
    width: 100%;
    padding: 0.74rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    text-align: center;
    font-weight: 900;
    outline: none;
}

.service-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-top: 1rem;
}

.service-item {
    padding: 0.78rem;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.service-item strong {
    display: block;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.detail-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1rem;
}

.detail-editorial-card {
    padding: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.detail-editorial-card span,
.detail-editorial-card strong {
    display: block;
}

.detail-editorial-card span {
    color: var(--brand-accent);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.detail-editorial-card strong {
    margin-top: 0.35rem;
}

.detail-editorial-card p {
    margin-top: 0.35rem;
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.55;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: var(--spacing-md);
    align-items: start;
}

.contact-card,
.form-card {
    padding: clamp(1.1rem, 2.4vw, 1.6rem);
}

.contact-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-list li {
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    color: var(--text-muted);
}

.contact-list strong {
    display: block;
    color: var(--text-main);
    margin-bottom: 0.2rem;
}

.map-card {
    position: relative;
    min-height: 280px;
    margin-top: var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(17, 24, 39, 0.06) 1px, transparent 1px),
        linear-gradient(135deg, #e0f2fe, #f8fafc 54%, #ffedd5);
    background-size: 48px 48px, 48px 48px, auto;
}

.map-road {
    position: absolute;
    inset: 45% -10% auto -10%;
    height: 54px;
    background: rgba(255, 255, 255, 0.82);
    transform: rotate(-9deg);
    border-top: 1px solid rgba(17, 24, 39, 0.08);
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.map-pin {
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50% 50% 50% 0;
    background: var(--brand-accent);
    rotate: -45deg;
    box-shadow: 0 20px 45px rgba(100, 116, 139, 0.25);
}

.map-pin::after {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 50%;
    background: #ffffff;
}

.map-label {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    padding: 0.78rem 0.95rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
    font-weight: 900;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.form-field {
    display: grid;
    gap: 0.4rem;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label {
    color: var(--text-main);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.72rem 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #ffffff;
    color: var(--text-main);
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-field textarea {
    min-height: 118px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 4px rgba(100, 116, 139, 0.1);
}

/* Checkout */
.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: var(--spacing-md);
    align-items: start;
}

.checkout-stack {
    display: grid;
    gap: var(--spacing-md);
}

.checkout-card {
    padding: clamp(1.1rem, 2.4vw, 1.55rem);
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.checkout-card h2,
.checkout-summary h2 {
    font-size: 1.12rem;
    margin-bottom: 0.9rem;
}

.payment-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.payment-tab {
    padding: 0.72rem 0.55rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    text-align: center;
    color: var(--text-muted);
    font-weight: 900;
}

.payment-tab.is-active {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #ffffff;
}

.payment-method-list {
    display: grid;
    gap: 0.8rem;
}

.payment-method-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    cursor: pointer;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.payment-method-card:hover,
.payment-method-card.is-active {
    border-color: var(--brand-accent);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(100, 116, 139, 0.08);
}

.payment-method-card input {
    margin-top: 0.25rem;
}

.payment-method-card strong,
.payment-method-card small,
.payment-method-card em {
    display: block;
}

.payment-method-card > span:only-child {
    grid-column: 1 / -1;
}

.payment-method-card small {
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.payment-method-card em {
    color: var(--text-main);
    font-style: normal;
    font-weight: 700;
    margin-top: 0.5rem;
}

.invoice-helper {
    margin-top: 0.9rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: var(--radius-md);
    background: #f8fafc;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 700;
}

.invoice-company-fields {
    margin-top: 0.9rem;
    padding: 0.95rem;
    border: 1px dashed rgba(100, 116, 139, 0.45);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.invoice-company-fields.is-hidden {
    display: none;
}

.checkout-summary {
    position: sticky;
    top: 92px;
    padding: 1rem;
}

.summary-note {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.summary-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 0.7rem;
    align-items: center;
    padding: 0.78rem 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-item img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    object-fit: contain;
    mix-blend-mode: multiply;
}

.summary-name {
    font-weight: 900;
}

.summary-meta {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 0.2rem;
}

.summary-actions {
    margin-top: 0.45rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
}

.summary-qty-form {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.summary-qty-form input[type='number'],
.summary-qty-form input[type='text'] {
    width: 64px;
    min-height: 32px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0 0.45rem;
}

.summary-qty-form input[type='text'] {
    width: 100%;
    text-align: left;
    padding: 0 0.8rem;
}

.summary-qty-form button,
.summary-remove-btn {
    min-height: 32px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    padding: 0 0.7rem;
    background: #ffffff;
    color: var(--text-main);
    font-size: 0.74rem;
    font-weight: 900;
    cursor: pointer;
}

.summary-qty-form button:hover,
.summary-remove-btn:hover {
    border-color: var(--brand-accent);
    color: var(--brand-accent);
}

.summary-inline-note {
    margin-top: 0.38rem;
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 800;
}

.summary-price {
    font-weight: 900;
}

.summary-totals {
    display: grid;
    gap: 0.6rem;
    padding: 0.95rem 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-weight: 700;
}

.summary-row.total {
    color: var(--text-main);
    font-size: 1.12rem;
    font-weight: 900;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border-color);
}

.secure-box {
    margin-top: 1rem;
    padding: 0.78rem;
    border-radius: var(--radius-md);
    background: #ecfdf5;
    color: #166534;
    font-weight: 800;
    font-size: 0.82rem;
}

.checkout-empty-state {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding: 1rem;
    border: 1px dashed rgba(148, 163, 184, 0.72);
    border-radius: var(--radius-md);
    background: #f8fafc;
}

.checkout-empty-state strong {
    color: var(--text-main);
}

.checkout-empty-state p {
    color: var(--text-muted);
    font-size: 0.86rem;
}

.order-success-hero {
    background:
        radial-gradient(circle at 92% 12%, rgba(34, 197, 94, 0.2), transparent 22rem),
        radial-gradient(circle at 8% 18%, rgba(15, 23, 42, 0.08), transparent 20rem),
        linear-gradient(135deg, #ffffff, #f8fafc);
}

.order-success-code {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-top: 0.65rem;
    padding: 0.62rem 1rem;
    border: 1px solid rgba(15, 23, 42, 0.2);
    border-radius: 999px;
    background: #ffffff;
    color: #0f172a;
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.order-success-shell {
    padding-top: 1.4rem;
}

.order-success-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: var(--spacing-md);
    align-items: start;
}

.order-success-main,
.order-success-side {
    display: grid;
    gap: var(--spacing-md);
}

.order-success-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
}

.order-success-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.order-success-badge.is-paid {
    background: #dcfce7;
    color: #166534;
}

.order-success-badge.is-pending {
    background: #fff7ed;
    color: #9a3412;
}

.order-success-badge.is-failed,
.order-success-badge.is-refunded {
    background: #fee2e2;
    color: #991b1b;
}

.order-success-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin-bottom: 0.95rem;
}

.order-success-metrics div {
    padding: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: var(--radius-md);
    background: #f8fafc;
}

.order-success-metrics small {
    display: block;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.order-success-metrics strong {
    display: block;
    margin-top: 0.28rem;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 900;
}

.order-success-items {
    display: grid;
    gap: 0.7rem;
}

.order-success-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.7rem;
    align-items: center;
    padding: 0.78rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #ffffff;
}

.order-success-item p {
    margin-top: 0.22rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.order-success-item-meta {
    display: grid;
    justify-items: end;
    gap: 0.2rem;
}

.order-success-item-meta span {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.order-success-item-meta strong {
    color: var(--text-main);
    font-weight: 900;
}

.order-success-empty {
    padding: 0.9rem;
    border: 1px dashed rgba(148, 163, 184, 0.62);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: 0.84rem;
}

.order-success-totals {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.95rem;
    padding-top: 0.95rem;
    border-top: 1px solid var(--border-color);
}

.order-success-totals > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.order-success-totals span {
    color: var(--text-muted);
    font-size: 0.84rem;
}

.order-success-totals strong {
    color: var(--text-main);
    font-weight: 900;
}

.order-success-totals .total span,
.order-success-totals .total strong {
    color: #0f172a;
    font-size: 1rem;
}

.order-success-facts {
    display: grid;
    gap: 0.72rem;
}

.order-success-facts small {
    display: block;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.order-success-facts strong {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-main);
    font-size: 0.9rem;
    line-height: 1.45;
}

.order-success-steps {
    display: grid;
    gap: 0.62rem;
}

.order-success-steps p {
    margin: 0;
    padding: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.26);
    border-radius: var(--radius-md);
    background: #f8fafc;
    color: var(--text-main);
    font-size: 0.84rem;
    line-height: 1.6;
}

.tracking-hero {
    background:
        radial-gradient(circle at 88% 14%, rgba(15, 23, 42, 0.1), transparent 22rem),
        radial-gradient(circle at 10% 24%, rgba(34, 197, 94, 0.12), transparent 20rem),
        linear-gradient(135deg, #ffffff, #f8fafc);
}

.tracking-section {
    padding-top: 1.4rem;
}

.tracking-layout {
    display: grid;
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    gap: var(--spacing-md);
    align-items: start;
}

.tracking-search-panel,
.tracking-result-panel {
    display: grid;
    gap: var(--spacing-md);
}

.tracking-search-form {
    display: grid;
    gap: 0.75rem;
}

.tracking-account-actions {
    margin-top: 0.8rem;
}

.tracking-help-box {
    margin-top: 0.95rem;
    padding: 0.8rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: var(--radius-md);
    background: #f8fafc;
}

.tracking-help-box strong {
    display: block;
    margin-bottom: 0.28rem;
    font-size: 0.84rem;
}

.tracking-help-box p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.55;
}

.tracking-result-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
}

.tracking-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0.35rem 0.72rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tracking-badge-pending {
    background: #fef3c7;
    color: #92400e;
}

.tracking-badge-processing {
    background: #dbeafe;
    color: #1e3a8a;
}

.tracking-badge-shipped {
    background: #e0e7ff;
    color: #3730a3;
}

.tracking-badge-delivered {
    background: #dcfce7;
    color: #166534;
}

.tracking-badge-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.tracking-progress {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.tracking-step {
    display: grid;
    gap: 0.24rem;
    justify-items: center;
    padding: 0.65rem 0.45rem;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: var(--radius-md);
    background: #f8fafc;
}

.tracking-step span {
    display: grid;
    place-items: center;
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 999px;
    background: #e2e8f0;
    color: #475569;
    font-size: 0.72rem;
    font-weight: 900;
}

.tracking-step small {
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 800;
    text-align: center;
}

.tracking-step.is-complete {
    border-color: rgba(34, 197, 94, 0.4);
    background: #ecfdf5;
}

.tracking-step.is-complete span {
    background: #16a34a;
    color: #ffffff;
}

.tracking-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin-bottom: 0.95rem;
}

.tracking-facts div {
    padding: 0.74rem;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: var(--radius-md);
    background: #ffffff;
}

.tracking-facts small {
    display: block;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tracking-facts strong {
    display: block;
    margin-top: 0.24rem;
    color: var(--text-main);
    font-size: 0.9rem;
}

.tracking-facts p {
    margin-top: 0.35rem;
    color: var(--text-muted);
    font-size: 0.78rem;
}

.tracking-code-box {
    display: grid;
    gap: 0.48rem;
    margin-bottom: 0.95rem;
    padding: 0.85rem;
    border: 1px solid rgba(37, 99, 235, 0.28);
    border-radius: var(--radius-md);
    background: #eff6ff;
}

.tracking-code-box span {
    color: #1e3a8a;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tracking-code-box strong {
    color: #0f172a;
    font-size: 1.02rem;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.tracking-warning,
.tracking-note {
    margin-bottom: 0.95rem;
    padding: 0.76rem;
    border-radius: var(--radius-md);
    font-size: 0.83rem;
    font-weight: 700;
}

.tracking-warning {
    border: 1px solid rgba(234, 88, 12, 0.28);
    background: #fff7ed;
    color: #9a3412;
}

.tracking-note {
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: #f8fafc;
    color: #334155;
}

.tracking-items {
    display: grid;
    gap: 0.7rem;
}

.tracking-items h3 {
    font-size: 0.96rem;
}

.tracking-item-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.7rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #ffffff;
}

.tracking-item-row small {
    display: block;
    margin-top: 0.24rem;
    color: var(--text-muted);
    font-size: 0.78rem;
}

.tracking-item-row span {
    color: var(--text-main);
    font-weight: 900;
}

.tracking-placeholder {
    min-height: 240px;
    display: grid;
    align-content: center;
}

.cart-layout {
    align-items: start;
}

.cart-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cart-item-list {
    display: grid;
    gap: 0.8rem;
}

.cart-item-card {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 0.9rem;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.cart-item-media {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    background: #e2e8f0;
}

.cart-item-media img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.cart-item-copy {
    display: grid;
    gap: 0.45rem;
}

.cart-item-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cart-item-copy h3 {
    font-size: 1.05rem;
    text-transform: none;
    letter-spacing: -0.03em;
}

.cart-item-copy p {
    color: var(--text-muted);
    font-size: 0.84rem;
}

.cart-item-price {
    display: grid;
    gap: 0.2rem;
    text-align: right;
}

.cart-item-price strong {
    font-size: 1.02rem;
}

.cart-item-price span {
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 800;
}

/* Footer */
footer {
    background: #0f172a;
    color: #ffffff;
    padding: var(--spacing-lg) 0 var(--spacing-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer .logo {
    color: #ffffff;
}

footer .logo-mark {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
}

.footer-title {
    font-size: 0.98rem;
    margin-bottom: var(--spacing-sm);
    color: #ffffff;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.84rem;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

/* Utilities */
.hidden {
    display: none;
}

.text-center {
    text-align: center;
}

.muted {
    color: var(--text-muted);
}

@media (max-width: 1180px) {
    .product-grid,
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .oscillation-panel {
        grid-template-columns: 1fr;
    }

    .campaign-slide {
        grid-template-columns: 1fr;
    }

    .campaign-slide-media {
        padding: 0 1rem 1rem;
    }

    .product-detail-grid,
    .checkout-layout,
    .order-success-grid,
    .tracking-layout,
    .contact-grid,
    .trend-layout,
    .editorial-grid,
    .showcase-layout {
        grid-template-columns: 1fr;
    }

    .showcase-rail,
    .detail-editorial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-media-card,
    .checkout-summary {
        position: relative;
        top: 0;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .nav-brand {
        min-width: auto;
    }

    .nav-brand small,
    .nav-menu {
        display: none;
    }

    .nav-actions {
        min-width: auto;
    }

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

    .hero-slider-item {
        grid-template-columns: 1fr;
    }

    .hero-slider-media {
        min-height: 360px;
        order: -1;
    }

    .hero-showcase {
        min-height: 440px;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-stage {
        margin-top: -2.8rem;
    }

    .shop-surface {
        padding: 0.95rem;
        border-radius: 32px;
    }

    .filter-panel {
        position: relative;
        top: 0;
        max-height: none;
    }

    .page-hero-shop-layout {
        grid-template-columns: 1fr;
    }

    .page-hero-panel {
        max-width: 560px;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 5rem;
        --spacing-lg: 3rem;
    }

    .logo-mark {
        min-height: 32px;
        padding: 0.26rem 0.48rem;
        border-radius: 10px;
    }

    .logo-image {
        height: 16px;
    }

    .container {
        padding: 0 1rem;
    }

    .section-header,
    .shop-toolbar,
    .shop-results-card,
    .promo-strip {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-assurance-intro {
        align-items: flex-start;
        flex-direction: column;
    }

    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4,
    .form-grid,
    .order-success-metrics,
    .service-strip,
    .payment-tabs,
    .category-rail,
    .trend-list,
    .home-assurance,
    .showcase-rail,
    .showcase-stats,
    .detail-meta-grid,
    .detail-editorial-grid,
    .page-hero-metrics {
        grid-template-columns: 1fr;
    }

    .home-hero {
        min-height: auto;
        padding: 3.2rem 0 3.8rem;
    }

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

    .order-success-item {
        grid-template-columns: 1fr;
    }

    .order-success-item-meta {
        justify-items: start;
    }

    .tracking-result-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .tracking-progress {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tracking-facts {
        grid-template-columns: 1fr;
    }

    .tracking-item-row {
        grid-template-columns: 1fr;
    }

    .account-order-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-showcase {
        min-height: 360px;
    }

    .hero-slider-item {
        min-height: auto;
    }

    .hero-slider-copy {
        padding: 1.35rem 1.1rem 9rem;
    }

    .hero-slider-media {
        min-height: 260px;
    }

    .hero-slider-nav {
        grid-template-columns: 1fr;
        gap: 0.42rem;
    }

    .hero-slider-nav button {
        min-height: 38px;
        padding: 0.46rem 0.62rem;
        font-size: 0.78rem;
    }

    .hero-title {
        font-size: clamp(2.4rem, 14vw, 3.55rem);
    }

    .hero-slide-caption {
        display: block;
    }

    .hero-floating-card {
        right: 0.8rem;
        bottom: 0.8rem;
        width: calc(100% - 1.6rem);
    }

    .home-section-heading.is-inline {
        align-items: flex-start;
        flex-direction: column;
    }

    .campaign-slide-copy h3 {
        max-width: none;
    }

    .filter-panel {
        padding: 0.8rem;
        border-radius: 26px;
    }

    .shop-toolbar-actions,
    .shop-sort {
        width: 100%;
    }

    .shop-sort-form,
    .filter-search-row {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .page-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-stage {
        margin-top: -1.9rem;
    }

    .shop-surface {
        padding: 0.7rem;
        border-radius: 30px;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .page-hero-shop {
        min-height: auto;
        padding-bottom: 4rem;
    }

    .page-hero-word {
        top: 18%;
        right: 1rem;
        transform: none;
        font-size: 4rem;
        opacity: 0.5;
    }

    .page-hero-panel-showcase {
        max-width: none;
        padding: 0.95rem;
    }

    .shop-app-product-card {
        grid-template-columns: 66px minmax(0, 1fr);
    }

    .shop-app-product-media {
        width: 66px;
        border-radius: 16px;
    }

    .shop-hero-sidecards,
    .filter-pill-list,
    .shop-active-tags {
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.15rem;
        scrollbar-width: none;
    }

    .shop-hero-sidecards::-webkit-scrollbar,
    .filter-pill-list::-webkit-scrollbar,
    .shop-active-tags::-webkit-scrollbar {
        display: none;
    }

    .shop-hero-sidecard {
        min-width: 168px;
    }

    .filter-overview-card {
        flex-direction: column;
    }

    .filter-overview-link {
        width: 100%;
    }

    .product-card-shop {
        border-radius: 24px;
    }

    .product-card-shop .product-image {
        aspect-ratio: 1 / 1.14;
    }

    .product-card-shop .product-info {
        padding: 0.9rem 0.88rem 0.95rem;
    }

    .product-name {
        font-size: 0.92rem;
    }

    .product-card-copy {
        font-size: 0.78rem;
    }

    .product-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .showcase-feature {
        min-height: 420px;
    }

    .showcase-feature-copy {
        max-width: none;
    }

    .detail-header-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-hero-price {
        width: 100%;
        justify-content: center;
    }

    .category-tile {
        min-height: 150px;
    }

    .cart-header-row {
        flex-direction: column;
    }

    .cart-item-card {
        grid-template-columns: 1fr;
    }

    .cart-item-price {
        text-align: left;
    }

    .trend-feature {
        min-height: 390px;
    }

    .trend-product {
        min-height: auto;
    }

    .editorial-grid {
        text-align: left;
    }

    .page-hero {
        padding: 4.5rem 0 3rem;
    }

    .cart-panel,
    .summary-item {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .filter-meta-grid,
    .filter-quick-grid,
    .filter-panel-actions,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .shop-hero-sidecards {
        display: grid;
    }

    .shop-hero-sidecard {
        min-width: 0;
    }
}

/* Shop Redesign */
body.shop-filters-open {
    overflow: hidden;
}

.page-hero-shop {
    min-height: clamp(520px, 70vh, 760px);
    padding: 0;
    background: #050505;
}

.page-hero-shop::before,
.page-hero-shop::after {
    display: none;
}

.page-hero-shop .page-hero-media,
.page-hero-shop .page-hero-overlay {
    position: absolute;
    inset: 0;
}

.page-hero-shop .page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(8%) contrast(1.04) brightness(0.5);
}

.page-hero-shop .page-hero-overlay {
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.76) 36%, rgba(5, 5, 5, 0.22) 100%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.74) 100%);
}

.page-hero-shop .container {
    position: relative;
    z-index: 2;
}

.page-hero-shop-layout.is-minimal {
    min-height: clamp(520px, 70vh, 760px);
    grid-template-columns: minmax(0, 720px);
    align-items: end;
}

.page-hero-shop .page-hero-content {
    max-width: 640px;
    padding: 7.5rem 0 4.4rem;
}

.page-hero-shop .page-title {
    margin-top: 0.85rem;
}

.page-hero-shop .section-lead {
    max-width: 560px;
}

.shop-hero-summary {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    margin-top: 1.25rem;
    padding: 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 800;
}

.page-hero-shop .page-hero-actions {
    margin-top: 1.5rem;
}

.shop-stage {
    margin-top: -2.75rem;
}

.shop-surface {
    position: relative;
    padding: 1rem;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
}

.shop-layout {
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 1.2rem;
}

.filter-panel-v3 {
    padding: 0;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
}

.filter-form {
    display: grid;
    min-height: 100%;
}

.filter-panel-head {
    padding: 1rem 1rem 0.85rem;
    border-bottom: 1px solid var(--border-color);
    background: #ffffff;
}

.filter-title {
    margin: 0;
    font-size: 1rem;
}

.filter-summary {
    margin-top: 0.3rem;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.filter-close-btn {
    display: none;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: #ffffff;
    color: var(--text-main);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.filter-panel-body {
    display: grid;
    gap: 0.85rem;
    padding: 1rem;
}

.filter-field {
    display: grid;
    gap: 0.42rem;
}

.filter-field-label {
    color: var(--text-main);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.filter-input,
.filter-select {
    width: 100%;
    min-height: 46px;
    padding: 0.78rem 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: var(--bg-secondary);
    color: var(--text-main);
    outline: none;
}

.filter-input:focus,
.filter-select:focus {
    border-color: rgba(100, 116, 139, 0.38);
    box-shadow: 0 0 0 4px rgba(100, 116, 139, 0.08);
}

.filter-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-chip-option {
    position: relative;
}

.filter-chip-option input,
.filter-option-radio input,
.filter-color-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.filter-chip-option span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.48rem 0.82rem;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: #ffffff;
    color: var(--text-main);
    font-size: 0.78rem;
    font-weight: 900;
    white-space: nowrap;
    transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.filter-chip-option.is-active span,
.filter-chip-option:has(input:checked) span {
    border-color: var(--brand-primary);
    background: var(--brand-primary);
    color: #ffffff;
}

.filter-subcategory-block {
    display: grid;
    gap: 0.55rem;
    padding-top: 0.2rem;
}

.filter-option-list-radio {
    gap: 0.55rem;
}

.filter-option-radio {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.82rem 0.88rem;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: 18px;
    background: var(--bg-secondary);
    cursor: pointer;
    transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.filter-option-radio span {
    color: var(--text-main);
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.35;
}

.filter-option-radio small {
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 800;
}

.filter-option-radio.is-active,
.filter-option-radio:has(input:checked) {
    border-color: var(--brand-primary);
    background: #ffffff;
    box-shadow: 0 0 0 1px var(--brand-primary) inset;
}

.filter-color-option {
    position: relative;
    cursor: pointer;
}

.filter-color-option.is-active,
.filter-color-option:has(input:checked) {
    border-color: var(--brand-primary);
    background: #ffffff;
    color: var(--text-main);
    box-shadow: 0 0 0 1px var(--brand-primary) inset;
}

.filter-color-option.is-active small,
.filter-color-option:has(input:checked) small {
    color: var(--text-muted);
}

.filter-panel-footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    background: #ffffff;
}

.filter-secondary-action,
.filter-primary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 16px;
    font-size: 0.82rem;
    font-weight: 900;
}

.filter-secondary-action {
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--text-main);
}

.filter-primary-action {
    border: none;
    background: var(--brand-primary);
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.14);
    cursor: pointer;
}

.shop-results-card {
    align-items: center;
}

.shop-results-title {
    margin-top: 0;
}

.shop-count {
    margin-top: 0.35rem;
}

.shop-mobile-filter-trigger,
.shop-filter-overlay {
    display: none;
}

@media (max-width: 1024px) {
    .page-hero-shop-layout.is-minimal {
        min-height: 500px;
        grid-template-columns: 1fr;
    }

    .page-hero-shop .page-hero-content {
        padding: 7rem 0 3.5rem;
    }

    .shop-stage {
        margin-top: -1.75rem;
    }

    .shop-surface {
        padding: 0.8rem;
        border-radius: 28px;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .filter-panel.filter-panel-v3 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        z-index: 130;
        width: 100%;
        max-height: min(86vh, 760px);
        border-radius: 28px 28px 0 0;
        box-shadow: 0 -24px 60px rgba(15, 23, 42, 0.2);
        transform: translateY(calc(100% + 20px));
        transition: transform 260ms ease;
    }

    body.shop-filters-open .filter-panel.filter-panel-v3 {
        transform: translateY(0);
    }

    .filter-panel-body {
        max-height: calc(min(86vh, 760px) - 146px);
        overflow-y: auto;
    }

    .filter-panel-footer {
        position: sticky;
        bottom: 0;
    }

    .filter-close-btn {
        display: inline-grid;
    }

    .shop-filter-overlay {
        position: fixed;
        inset: 0;
        z-index: 120;
        background: rgba(15, 23, 42, 0.42);
    }

    .shop-filter-overlay:not([hidden]) {
        display: block;
    }

    .shop-mobile-filter-trigger {
        position: fixed;
        left: 50%;
        bottom: 1rem;
        z-index: 115;
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        transform: translateX(-50%);
        min-height: 56px;
        padding: 0 1.1rem;
        border: none;
        border-radius: 999px;
        background: var(--brand-primary);
        color: #ffffff;
        box-shadow: 0 16px 34px rgba(15, 23, 42, 0.24);
        cursor: pointer;
    }

    .shop-mobile-filter-trigger span {
        font-size: 0.84rem;
        font-weight: 900;
    }

    .shop-mobile-filter-trigger strong {
        display: inline-grid;
        place-items: center;
        min-width: 2rem;
        height: 2rem;
        padding: 0 0.5rem;
        border-radius: 999px;
        background: #ffffff;
        color: var(--brand-primary);
        font-size: 0.8rem;
        font-weight: 900;
    }
}

@media (max-width: 640px) {
    .page-hero-shop {
        min-height: 480px;
    }

    .page-hero-shop .page-hero-content {
        padding: 6.6rem 0 3rem;
    }

    .page-hero-shop .page-title {
        font-size: clamp(2.4rem, 12vw, 3.2rem);
    }

    .shop-hero-summary {
        width: 100%;
        justify-content: center;
    }

    .filter-panel-footer {
        grid-template-columns: 1fr;
    }

    .shop-mobile-filter-trigger {
        left: 1rem;
        right: 1rem;
        bottom: 0.85rem;
        transform: none;
        justify-content: space-between;
    }
}

/* Catalog rebuild */
body.catalog-filters-open {
    overflow: hidden;
}

.page-hero-shop.catalog-hero {
    min-height: clamp(500px, 68vh, 720px);
    padding: 0;
    border-bottom: none;
    background: #050505;
    color: #ffffff;
}

.page-hero-shop.catalog-hero::before,
.page-hero-shop.catalog-hero::after {
    display: none;
}

.catalog-hero-media,
.catalog-hero-overlay {
    position: absolute;
    inset: 0;
}

.catalog-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(4%) contrast(1.04) brightness(0.58);
}

.catalog-hero-overlay {
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.74) 42%, rgba(2, 6, 23, 0.2) 100%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.12) 0%, rgba(2, 6, 23, 0.78) 100%);
}

.catalog-hero .container {
    position: relative;
    z-index: 2;
}

.catalog-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 700px);
    gap: 2rem;
    align-items: end;
    min-height: clamp(500px, 68vh, 720px);
    padding: 7.4rem 0 4rem;
}

.catalog-hero-copy {
    max-width: 660px;
}

.catalog-hero .breadcrumb,
.catalog-hero .section-lead {
    color: rgba(255, 255, 255, 0.74);
}

.catalog-hero .page-title {
    color: #ffffff;
}

.catalog-count-pill {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    margin-top: 1.15rem;
    padding: 0 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 900;
}

.catalog-hero-card {
    display: grid;
    gap: 0.9rem;
    padding: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.catalog-hero-card > span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalog-hero-card > strong {
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1.12;
}

.catalog-hero-card-grid {
    display: grid;
    gap: 0.6rem;
}

.catalog-hero-card-grid div {
    display: grid;
    gap: 0.18rem;
    padding: 0.78rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.catalog-hero-card-grid small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.catalog-hero-card-grid b {
    color: #ffffff;
    font-size: 0.9rem;
}

.catalog-stage {
    position: relative;
    z-index: 4;
    margin-top: -2.7rem;
    padding-top: 0;
    padding-bottom: 4rem;
}

.catalog-shell {
    position: relative;
    padding: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.94);
    border-radius: 36px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98) 44%, #ffffff 100%);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.13);
}

.catalog-layout {
    display: grid;
    grid-template-columns: minmax(300px, 340px) minmax(0, 1fr);
    gap: 1.2rem;
    align-items: start;
}

.catalog-sidebar {
    position: sticky;
    top: 92px;
    height: calc(100vh - 112px);
    max-height: calc(100vh - 112px);
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.catalog-filter-form {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    height: 100%;
    min-height: 100%;
}

.catalog-filter-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.86rem 0.86rem 0.76rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.94);
    background: #ffffff;
}

.catalog-filter-head h2 {
    margin: 0;
    color: var(--text-main);
    font-size: 0.96rem;
    letter-spacing: -0.03em;
}

.catalog-filter-head p {
    margin: 0.28rem 0 0;
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 800;
}

.catalog-filter-close {
    display: none;
    place-items: center;
    width: 2.1rem;
    height: 2.1rem;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: #ffffff;
    color: var(--text-main);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}

.catalog-filter-scroll {
    display: grid;
    gap: 0.7rem;
    min-height: 0;
    padding: 0.8rem;
    overflow-y: auto;
}

.catalog-field,
.catalog-field-grid {
    display: grid;
    gap: 0.4rem;
}

.catalog-field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.catalog-field label {
    color: var(--text-main);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalog-field input,
.catalog-field select,
.catalog-sorter select {
    width: 100%;
    min-height: 40px;
    border: 1px solid rgba(203, 213, 225, 0.9);
    border-radius: 12px;
    background: #f8fafc;
    color: var(--text-main);
    font-size: 0.8rem;
    font-weight: 800;
    outline: none;
}

.catalog-field input,
.catalog-field select {
    padding: 0.6rem 0.7rem;
}

.catalog-field input:focus,
.catalog-field select:focus,
.catalog-sorter select:focus {
    border-color: rgba(15, 23, 42, 0.36);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.07);
}

.catalog-filter-section {
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: 16px;
    background: #ffffff;
}

.catalog-filter-section summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 0.62rem 0.74rem;
    color: var(--text-main);
    cursor: pointer;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    list-style: none;
    text-transform: uppercase;
    user-select: none;
}

.catalog-filter-section summary::-webkit-details-marker {
    display: none;
}

.catalog-filter-section summary::after {
    content: '+';
    display: inline-grid;
    place-items: center;
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--text-main);
    font-weight: 900;
}

.catalog-filter-section[open] summary::after {
    content: '-';
}

.catalog-choice-grid,
.catalog-color-grid,
.catalog-choice-stack {
    display: grid;
    gap: 0.46rem;
    padding: 0.62rem;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.catalog-choice-grid,
.catalog-color-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.catalog-choice-card,
.catalog-color-card {
    position: relative;
    display: block;
    cursor: pointer;
}

.catalog-choice-card input,
.catalog-color-card input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.catalog-choice-card span,
.catalog-color-card span {
    display: flex;
    align-items: center;
    min-height: 38px;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: 12px;
    background: #f8fafc;
    color: var(--text-main);
    font-size: 0.76rem;
    font-weight: 850;
    line-height: 1.2;
    transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}

.catalog-choice-card span {
    justify-content: center;
    padding: 0.52rem 0.62rem;
    text-align: center;
}

.catalog-color-card span {
    gap: 0.55rem;
    padding: 0.5rem 0.6rem;
}

.catalog-choice-card input:checked + span,
.catalog-color-card input:checked + span {
    border-color: #0f172a;
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
}

.catalog-choice-card input:focus-visible + span,
.catalog-color-card input:focus-visible + span {
    outline: 3px solid rgba(15, 23, 42, 0.16);
    outline-offset: 2px;
}

.catalog-swatch {
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.18);
}

.catalog-swatch-all {
    background: conic-gradient(#111827 0 25%, #ffffff 0 50%, #2563eb 0 75%, #f97316 0);
}

.catalog-filter-footer {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
    gap: 0.56rem;
    padding: 0.76rem;
    border-top: 1px solid rgba(226, 232, 240, 0.94);
    background: #ffffff;
}

.catalog-filter-clear,
.catalog-filter-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 900;
}

.catalog-filter-clear {
    border: 1px solid rgba(203, 213, 225, 0.96);
    background: #ffffff;
    color: var(--text-main);
}

.catalog-filter-apply {
    border: none;
    background: #0f172a;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.16);
}

.catalog-results {
    min-width: 0;
    display: grid;
    gap: 1rem;
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.catalog-toolbar p {
    margin: 0;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 900;
}

.catalog-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.catalog-sorter {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalog-sorter select {
    min-width: 160px;
    min-height: 38px;
    padding: 0.52rem 0.68rem;
}

.catalog-toolbar-filter {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 0.9rem;
    border: none;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 900;
    cursor: pointer;
}

.catalog-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.catalog-active-filters a {
    display: inline-flex;
    align-items: center;
    gap: 0.36rem;
    min-height: 34px;
    padding: 0.42rem 0.7rem;
    border: 1px solid rgba(203, 213, 225, 0.9);
    border-radius: 999px;
    background: #ffffff;
    color: var(--text-main);
    font-size: 0.76rem;
    font-weight: 900;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.catalog-product-card {
    border-radius: 28px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.catalog-product-image {
    aspect-ratio: 4 / 5;
    background: #e2e8f0;
}

.catalog-product-card .catalog-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: normal;
}

.catalog-product-card:hover .catalog-product-image img {
    transform: scale(1.05);
}

.catalog-product-card .product-info {
    padding: 0.9rem;
}

.catalog-product-card .product-card-copy {
    min-height: 2.7em;
}

.catalog-empty-card {
    padding: 1.4rem;
}

.catalog-filter-overlay,
.catalog-mobile-trigger {
    display: none;
}

@media (max-width: 1180px) {
    .catalog-layout {
        grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    }

    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .catalog-hero-grid {
        grid-template-columns: 1fr;
        min-height: 510px;
        padding: 7rem 0 3.2rem;
    }

    .catalog-hero-card {
        display: none;
    }

    .catalog-stage {
        margin-top: -1.8rem;
        padding-bottom: 5.4rem;
    }

    .catalog-shell {
        padding: 0.75rem;
        border-radius: 30px;
    }

    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar {
        position: fixed;
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 140;
        width: 100%;
        height: auto;
        max-height: min(84vh, 680px);
        border-radius: 28px 28px 0 0;
        box-shadow: 0 -26px 70px rgba(15, 23, 42, 0.28);
        transform: translateY(calc(100% + 24px));
        transition: transform 260ms ease;
    }

    .catalog-sidebar::before {
        content: '';
        position: absolute;
        top: 0.58rem;
        left: 50%;
        width: 3rem;
        height: 0.32rem;
        border-radius: 999px;
        background: rgba(148, 163, 184, 0.55);
        transform: translateX(-50%);
    }

    body.catalog-filters-open .catalog-sidebar {
        transform: translateY(0);
    }

    .catalog-filter-head {
        padding-top: 1.2rem;
    }

    .catalog-filter-close {
        display: inline-grid;
    }

    .catalog-filter-scroll {
        max-height: calc(min(84vh, 680px) - 140px);
    }

    .catalog-filter-overlay {
        position: fixed;
        inset: 0;
        z-index: 130;
        background: rgba(15, 23, 42, 0.45);
        backdrop-filter: blur(4px);
    }

    .catalog-filter-overlay:not([hidden]) {
        display: block;
    }

    .catalog-toolbar-filter {
        display: inline-flex;
    }

    .catalog-mobile-trigger {
        position: fixed;
        right: 1rem;
        bottom: 1rem;
        left: 1rem;
        z-index: 120;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 50px;
        padding: 0 0.85rem;
        border: none;
        border-radius: 999px;
        background: #0f172a;
        color: #ffffff;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.26);
        cursor: pointer;
    }

    .catalog-mobile-trigger span {
        font-size: 0.8rem;
        font-weight: 900;
    }

    .catalog-mobile-trigger strong {
        display: inline-grid;
        place-items: center;
        min-width: 1.8rem;
        height: 1.8rem;
        padding: 0 0.5rem;
        border-radius: 999px;
        background: #ffffff;
        color: #0f172a;
        font-size: 0.74rem;
        font-weight: 900;
    }

    body.catalog-filters-open .catalog-mobile-trigger {
        opacity: 0;
        pointer-events: none;
    }
}

@media (max-width: 640px) {
    .page-hero-shop.catalog-hero {
        min-height: 450px;
    }

    .catalog-hero-grid {
        min-height: 450px;
        padding: 6.45rem 0 2.75rem;
    }

    .catalog-hero .page-title {
        font-size: clamp(2.35rem, 12vw, 3.15rem);
    }

    .catalog-count-pill {
        width: 100%;
        justify-content: center;
    }

    .catalog-shell {
        padding: 0.55rem;
        border-radius: 26px;
    }

    .catalog-toolbar {
        align-items: flex-start;
        flex-direction: column;
        border-radius: 24px;
    }

    .catalog-toolbar-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        width: 100%;
    }

    .catalog-sorter {
        min-width: 0;
        width: 100%;
    }

    .catalog-sorter select {
        min-width: 0;
    }

    .catalog-field-grid,
    .catalog-choice-grid,
    .catalog-color-grid {
        grid-template-columns: 1fr;
    }

    .catalog-filter-footer {
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        padding: 0.72rem;
    }

    .catalog-grid {
        gap: 0.68rem;
    }

    .catalog-product-card {
        border-radius: 22px;
    }

    .catalog-product-image {
        aspect-ratio: 1 / 1.18;
    }

    .catalog-product-card .product-info {
        padding: 0.72rem;
    }

    .catalog-product-card .product-card-head {
        display: block;
    }

    .catalog-product-card .product-category,
    .catalog-product-card .product-card-copy,
    .catalog-product-card .product-meta-row {
        display: none;
    }

    .catalog-product-card .product-name {
        margin-top: 0.3rem;
        font-size: 0.88rem;
        line-height: 1.28;
    }

    .catalog-product-card .product-price {
        font-size: 0.94rem;
    }
}

/* Product page rebuild */
.pdp-hero {
    position: relative;
    min-height: clamp(520px, 72vh, 760px);
    padding: 0;
    border-bottom: none;
    background: #050505;
    color: #ffffff;
}

.pdp-hero::before,
.pdp-hero::after {
    display: none;
}

.pdp-hero-media,
.pdp-hero-overlay {
    position: absolute;
    inset: 0;
}

.pdp-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.03) brightness(0.54);
}

.pdp-hero.pdp-theme-core .pdp-hero-overlay {
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.74) 42%, rgba(2, 6, 23, 0.2) 100%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.12) 0%, rgba(2, 6, 23, 0.78) 100%);
}

.pdp-hero.pdp-theme-women .pdp-hero-overlay {
    background:
        linear-gradient(90deg, rgba(76, 5, 25, 0.9) 0%, rgba(76, 5, 25, 0.76) 42%, rgba(76, 5, 25, 0.2) 100%),
        linear-gradient(180deg, rgba(236, 72, 153, 0.08) 0%, rgba(76, 5, 25, 0.74) 100%);
}

.pdp-hero.pdp-theme-men .pdp-hero-overlay {
    background:
        linear-gradient(90deg, rgba(5, 25, 61, 0.9) 0%, rgba(5, 25, 61, 0.74) 42%, rgba(5, 25, 61, 0.2) 100%),
        linear-gradient(180deg, rgba(37, 99, 235, 0.08) 0%, rgba(5, 25, 61, 0.78) 100%);
}

.pdp-hero .container {
    position: relative;
    z-index: 2;
}

.pdp-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    gap: 1.5rem;
    align-items: end;
    min-height: clamp(520px, 72vh, 760px);
    padding: 7.35rem 0 3.8rem;
}

.pdp-hero-copy {
    max-width: 660px;
}

.pdp-hero-kicker {
    display: inline-flex;
    margin-top: 0.55rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pdp-hero .breadcrumb,
.pdp-hero .section-lead {
    color: rgba(255, 255, 255, 0.74);
}

.pdp-hero .page-title {
    margin-top: 0.8rem;
    color: #ffffff;
    text-transform: none;
    font-size: clamp(2rem, 4.8vw, 3.9rem);
}

.pdp-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.68rem;
    margin-top: 1.2rem;
}

.pdp-hero-meta strong {
    display: inline-flex;
    align-items: center;
    min-height: 50px;
    padding: 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 900;
}

.pdp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.pdp-hero-quick {
    display: grid;
    gap: 0.65rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.pdp-hero-quick div {
    display: grid;
    gap: 0.2rem;
    padding: 0.65rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
}

.pdp-hero-quick span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pdp-hero-quick strong {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 900;
}

.pdp-section {
    position: relative;
    z-index: 4;
    margin-top: -2.4rem;
    padding-top: 0;
}

.pdp-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
    gap: 1.1rem;
    align-items: start;
}

.pdp-gallery-card,
.pdp-purchase-card {
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.pdp-gallery-card {
    position: sticky;
    top: 90px;
    padding: 0.95rem;
}

.pdp-main-media {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(160deg, #f8fafc, #eef2ff);
    border: 1px solid rgba(226, 232, 240, 0.96);
}

.pdp-main-media img {
    width: 100%;
    aspect-ratio: 1 / 1.02;
    object-fit: contain;
    background: #ffffff;
    cursor: zoom-in;
}

.pdp-main-media::after {
    content: 'Büyüt';
    position: absolute;
    right: 0.9rem;
    bottom: 0.9rem;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.85rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.88);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    pointer-events: none;
}

.pdp-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.6rem;
    margin-top: 0.7rem;
}

.pdp-thumbs.is-single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 170px;
}

.pdp-thumb {
    border: 1px solid rgba(203, 213, 225, 0.9);
    border-radius: 16px;
    background: #ffffff;
    padding: 0.28rem;
    cursor: pointer;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.pdp-thumb img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 11px;
    object-fit: cover;
}

.pdp-thumb span {
    display: block;
    margin-top: 0.2rem;
    color: var(--text-muted);
    font-size: 0.66rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.pdp-thumb:hover,
.pdp-thumb.is-active {
    border-color: #0f172a;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

.pdp-thumb.is-hidden {
    display: none;
}

.pdp-purchase {
    min-width: 0;
}

.pdp-purchase-card {
    padding: 1rem;
}

.pdp-purchase-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.85rem;
}

.pdp-purchase-head h2 {
    margin: 0;
    color: var(--text-main);
    font-size: 1.2rem;
    text-transform: none;
}

.pdp-purchase-head a {
    color: var(--brand-accent);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pdp-inline-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    margin-bottom: 0.55rem;
}

.pdp-inline-meta div {
    padding: 0.68rem;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: 14px;
    background: #f8fafc;
}

.pdp-inline-meta span {
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pdp-inline-meta strong {
    display: block;
    margin-top: 0.16rem;
    color: var(--text-main);
    font-size: 0.86rem;
}

.pdp-purchase-form {
    display: grid;
    gap: 0.78rem;
}

.pdp-option-group {
    padding-top: 0.72rem;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.pdp-option-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.58rem;
}

.pdp-option-head span {
    color: var(--text-main);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pdp-option-head small {
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 800;
}

.pdp-color-list,
.pdp-size-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pdp-color-pill,
.pdp-size-pill {
    border: 1px solid rgba(203, 213, 225, 0.92);
    border-radius: 999px;
    background: #ffffff;
    color: var(--text-main);
    cursor: pointer;
    transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.pdp-color-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.46rem;
    min-height: 38px;
    padding: 0 0.72rem 0 0.5rem;
}

.pdp-color-dot {
    width: 0.95rem;
    height: 0.95rem;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: var(--swatch);
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.2);
}

.pdp-color-pill span {
    font-size: 0.78rem;
    font-weight: 850;
}

.pdp-size-pill {
    min-height: 36px;
    padding: 0 0.82rem;
    font-size: 0.78rem;
    font-weight: 850;
}

.pdp-color-pill:hover,
.pdp-color-pill.is-active,
.pdp-size-pill:hover,
.pdp-size-pill.is-active {
    transform: translateY(-1px);
    border-color: #0f172a;
    background: #0f172a;
    color: #ffffff;
}

.pdp-size-pill.is-disabled,
.pdp-size-pill:disabled {
    transform: none;
    border-color: rgba(203, 213, 225, 0.84);
    background: #f8fafc;
    color: #94a3b8;
    opacity: 0.62;
    cursor: not-allowed;
    box-shadow: none;
}

.pdp-qty-wrap {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 0.45rem;
}

.pdp-qty-wrap button,
.pdp-qty-wrap input {
    min-height: 44px;
    border: 1px solid rgba(203, 213, 225, 0.9);
    border-radius: 13px;
    background: #ffffff;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 900;
}

.pdp-qty-wrap button {
    cursor: pointer;
}

.pdp-qty-wrap input {
    text-align: center;
    outline: none;
}

.pdp-submit {
    width: 100%;
    min-height: 48px;
    border-radius: 14px;
}

.pdp-variant-stock {
    margin: -0.15rem 0 0.55rem;
    color: #0f172a;
    font-size: 0.78rem;
    font-weight: 850;
}

.pdp-variant-stock.is-out {
    color: #b91c1c;
}

.pdp-service-grid {
    display: grid;
    gap: 0.52rem;
    margin-top: 0.88rem;
}

.pdp-service-grid div {
    display: grid;
    gap: 0.14rem;
    padding: 0.7rem;
    border: 1px solid rgba(226, 232, 240, 0.94);
    border-radius: 14px;
    background: #f8fafc;
}

.pdp-service-grid strong {
    color: var(--text-main);
    font-size: 0.82rem;
}

.pdp-service-grid span {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
}

.pdp-related {
    margin-top: 1.2rem;
}

.pdp-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1180px) {
    .pdp-layout {
        grid-template-columns: 1fr;
    }

    .pdp-gallery-card {
        position: relative;
        top: 0;
    }

    .pdp-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Add-to-cart popup */
body.cart-feedback-open {
    overflow: hidden;
}

body.pdp-lightbox-open {
    overflow: hidden;
}

.cart-feedback-overlay {
    position: fixed;
    inset: 0;
    z-index: 210;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(4px);
}

.cart-feedback-overlay[hidden] {
    display: none;
}

.cart-feedback-modal {
    width: min(460px, 100%);
    display: grid;
    gap: 0.85rem;
    padding: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.98);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.2);
}

.cart-feedback-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
}

.cart-feedback-title h3 {
    margin: 0;
    font-size: 1.2rem;
    text-transform: none;
}

.cart-feedback-close {
    width: 2.1rem;
    height: 2.1rem;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: #ffffff;
    color: var(--text-main);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}

.cart-feedback-note {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.cart-feedback-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.62rem;
}

.cart-feedback-actions a,
.cart-feedback-actions button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 900;
}

.cart-feedback-actions a {
    border: none;
    background: #0f172a;
    color: #ffffff;
}

.cart-feedback-actions button {
    border: 1px solid rgba(203, 213, 225, 0.95);
    background: #ffffff;
    color: var(--text-main);
    cursor: pointer;
}

.pdp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 230;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.pdp-lightbox[hidden] {
    display: none;
}

.pdp-lightbox-backdrop {
    position: absolute;
    inset: 0;
    border: none;
    background: rgba(2, 6, 23, 0.82);
    backdrop-filter: blur(6px);
    cursor: zoom-out;
}

.pdp-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(1080px, 100%);
    display: grid;
    gap: 0.9rem;
    padding: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.18);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 30px 80px rgba(2, 6, 23, 0.36);
}

.pdp-lightbox-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #ffffff;
}

.pdp-lightbox-bar strong {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-transform: none;
}

.pdp-lightbox-close {
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.pdp-lightbox-dialog img {
    width: 100%;
    max-height: min(76vh, 860px);
    border-radius: 22px;
    object-fit: contain;
    background: #ffffff;
}

.pdp-submit:disabled {
    opacity: 0.72;
    cursor: wait;
}

/* Mobile bottom platform */
.mobile-bottom-platform {
    display: none;
}

@media (max-width: 1024px) {
    body {
        padding-bottom: 92px;
    }

    .mobile-bottom-platform {
        position: fixed;
        right: 0.65rem;
        bottom: 0.65rem;
        left: 0.65rem;
        z-index: 180;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0.28rem;
        padding: 0.36rem;
        border: 1px solid rgba(226, 232, 240, 0.96);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
    }

    .mobile-bottom-item {
        position: relative;
        display: grid;
        place-items: center;
        gap: 0.18rem;
        min-height: 50px;
        padding: 0.25rem 0.15rem 0.2rem;
        border-radius: 12px;
        color: #475569;
        font-size: 0.6rem;
        font-weight: 900;
        letter-spacing: 0.015em;
        text-transform: uppercase;
        text-align: center;
    }

    .mobile-bottom-item svg {
        width: 1.12rem;
        height: 1.12rem;
        fill: currentColor;
    }

    .mobile-bottom-item small {
        display: block;
        width: 100%;
        line-height: 1.05;
        white-space: nowrap;
    }

    .mobile-bottom-item.is-active {
        background: #0f172a;
        color: #ffffff;
    }

    .mobile-bottom-badge {
        position: absolute;
        top: 0.2rem;
        right: 0.45rem;
        min-width: 1.1rem;
        height: 1.1rem;
        padding: 0 0.28rem;
        border-radius: 999px;
        background: #ef4444;
        color: #ffffff;
        font-size: 0.66rem;
        font-weight: 900;
        display: inline-grid;
        place-items: center;
        line-height: 1;
    }

    .catalog-mobile-trigger,
    .shop-mobile-filter-trigger {
        bottom: 5.4rem;
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: 94px;
    }

    .mobile-bottom-platform {
        right: 0.5rem;
        bottom: 0.5rem;
        left: 0.5rem;
        gap: 0.22rem;
        padding: 0.32rem;
        border-radius: 16px;
    }

    .mobile-bottom-item {
        min-height: 48px;
        font-size: 0.56rem;
    }

    .mobile-bottom-item svg {
        width: 1.02rem;
        height: 1.02rem;
    }

    .mobile-bottom-item small {
        font-size: 0.56rem;
    }

    .mobile-bottom-badge {
        right: 0.3rem;
    }

    .oscillation-copy {
        padding: 1.2rem;
    }

    .oscillation-actions {
        flex-direction: column;
    }

    .mobile-bottom-platform {
        right: 0.55rem;
        left: 0.55rem;
        bottom: 0.55rem;
    }

    .cart-feedback-actions {
        grid-template-columns: 1fr;
    }

    .pdp-lightbox-dialog {
        padding: 0.8rem;
        border-radius: 22px;
    }

    .pdp-lightbox-dialog img {
        max-height: 68vh;
    }
}

@media (max-width: 900px) {
    .pdp-hero-grid {
        grid-template-columns: 1fr;
        min-height: 520px;
    }

    .pdp-hero-quick {
        display: none;
    }
}

@media (max-width: 640px) {
    .pdp-hero {
        min-height: 460px;
    }

    .pdp-hero-grid {
        min-height: 460px;
        padding: 6.4rem 0 2.7rem;
    }

    .pdp-hero .page-title {
        font-size: clamp(2.05rem, 11vw, 2.95rem);
    }

    .pdp-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pdp-thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pdp-inline-meta {
        grid-template-columns: 1fr;
    }

    .pdp-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Home page repair */
body.home-page {
    background:
        radial-gradient(circle at 8% 10%, rgba(100, 116, 139, 0.08), transparent 24rem),
        radial-gradient(circle at 92% 4%, rgba(148, 163, 184, 0.1), transparent 20rem),
        #ffffff;
}

body.home-page main {
    overflow-x: clip;
}

body.home-page .section {
    position: relative;
}

body.home-page .home-section-heading {
    max-width: 680px;
}

body.home-page .category-rail {
    align-items: stretch;
}

body.home-page .category-tile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

body.home-page .home-oscillation-spotlight {
    padding-top: clamp(1.25rem, 3vw, 2rem);
    padding-bottom: clamp(4rem, 6vw, 5rem);
}

body.home-page .oscillation-panel {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 1.5rem;
    align-items: stretch;
    min-height: clamp(360px, 42vw, 520px);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-fast);
}

body.home-page .oscillation-panel:hover {
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, 0.26);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.2);
}

body.home-page .oscillation-copy {
    gap: 1.1rem;
    padding: clamp(1.7rem, 4vw, 3rem);
}

body.home-page .oscillation-copy h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 0.98;
}

body.home-page .oscillation-meta {
    width: fit-content;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
}

body.home-page .oscillation-actions .btn {
    min-width: 180px;
    border-radius: 18px;
}

body.home-page .oscillation-actions .btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
}

body.home-page .oscillation-media {
    padding: 1rem 1rem 1rem 0;
}

body.home-page .oscillation-media img {
    min-height: 100%;
    border-radius: 26px;
}

body.home-page .trend-layout,
body.home-page .showcase-layout {
    gap: 1.15rem;
}

@media (max-width: 1180px) {
    body.home-page .oscillation-panel {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: 0;
    }

    body.home-page .oscillation-copy h2 {
        max-width: none;
    }

    body.home-page .oscillation-media {
        padding: 0 1rem 1rem;
    }

    body.home-page .oscillation-media img {
        min-height: 320px;
    }
}

@media (max-width: 1024px) {
    body.home-page .home-oscillation-spotlight {
        padding-top: 1rem;
    }

    body.home-page .oscillation-copy {
        padding-bottom: 1.25rem;
    }
}

@media (max-width: 768px) {
    body.home-page .section {
        padding: clamp(3rem, 10vw, 4rem) 0;
    }

    body.home-page .home-categories {
        padding-top: clamp(2.8rem, 10vw, 3.5rem);
    }

    body.home-page .home-oscillation-spotlight {
        padding-top: 0.5rem;
        padding-bottom: clamp(3rem, 9vw, 3.75rem);
    }

    body.home-page .home-section-heading {
        margin-bottom: 1.1rem;
    }

    body.home-page .category-tile {
        min-height: 188px;
    }

    .campaign-slide {
        border-radius: 24px;
    }

    .campaign-slide-copy {
        padding: 1.25rem;
    }

    .campaign-slide-media {
        padding: 0 0.85rem 0.85rem;
    }

    .campaign-slide-media img {
        min-height: 260px;
        border-radius: 20px;
    }

    body.home-page .oscillation-panel {
        border-radius: 24px;
    }

    body.home-page .oscillation-copy {
        gap: 0.9rem;
        padding: 1.25rem;
    }

    body.home-page .oscillation-copy p {
        line-height: 1.62;
    }

    body.home-page .oscillation-meta {
        width: 100%;
    }

    body.home-page .oscillation-media {
        padding: 0 0.85rem 0.85rem;
    }

    body.home-page .oscillation-media img {
        min-height: 260px;
        border-radius: 20px;
    }

    body.home-page .trend-feature,
    body.home-page .showcase-feature {
        min-height: 380px;
    }
}

@media (max-width: 640px) {
    body.home-page main {
        overflow-x: visible;
    }

    body.home-page .home-section-heading p {
        font-size: 0.92rem;
    }

    .campaign-slide-actions {
        flex-direction: column;
        align-items: stretch;
    }

    body.home-page .oscillation-copy {
        padding: 1.1rem;
    }

    body.home-page .oscillation-actions .btn {
        width: 100%;
        min-width: 0;
    }
}

.storefront-alert-wrap {
    padding-top: 5.8rem;
}

.storefront-alert {
    margin: 0.75rem 0 0;
    padding: 0.95rem 1.1rem;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

.storefront-alert-success {
    border-color: rgba(34, 197, 94, 0.24);
    color: #166534;
}

.storefront-alert-danger {
    border-color: rgba(239, 68, 68, 0.24);
    color: #991b1b;
}

.account-auth-grid,
.account-dashboard-layout,
.account-summary-grid,
.account-address-grid {
    display: grid;
    gap: 1.4rem;
}

.customer-auth-stage {
    padding: 1.25rem 0 4rem;
}

.customer-auth-shell {
    display: grid;
    gap: 1rem;
}

.customer-auth-breadcrumb {
    margin-bottom: 0.1rem;
}

.customer-auth-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
    gap: 1rem;
    align-items: stretch;
}

.customer-auth-aside,
.customer-auth-panel {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 32px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.customer-auth-aside {
    display: grid;
    gap: 1.25rem;
    padding: 2rem;
    color: #ffffff;
    background:
        radial-gradient(circle at top left, rgba(96, 165, 250, 0.18), transparent 18rem),
        radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.12), transparent 18rem),
        linear-gradient(160deg, #0f172a 0%, #0b1120 45%, #111827 100%);
}

.customer-auth-aside-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.customer-auth-aside h1 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.customer-auth-aside p {
    margin: 0;
    color: rgba(226, 232, 240, 0.8);
    line-height: 1.78;
}

.customer-auth-badge {
    display: inline-flex;
    align-items: center;
    width: max-content;
    min-height: 36px;
    padding: 0 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.customer-auth-status-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.85rem;
    border-radius: 999px;
    background: rgba(96, 165, 250, 0.14);
    color: #bfdbfe;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.customer-auth-command-grid {
    display: grid;
    gap: 0.9rem;
}

.customer-auth-command-card,
.customer-auth-side-nav {
    display: grid;
}

.customer-auth-command-card {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0.95rem;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
}

.customer-auth-command-card span {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: #93c5fd;
    font-size: 0.82rem;
    font-weight: 900;
}

.customer-auth-command-card strong {
    display: block;
    grid-column: 2;
    color: #ffffff;
    margin-bottom: 0.28rem;
}

.customer-auth-command-card p {
    grid-column: 2;
    color: rgba(226, 232, 240, 0.76);
    font-size: 0.92rem;
}

.customer-auth-security-bar {
    display: grid;
    gap: 0.9rem;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
}

.customer-auth-security-bar strong {
    display: block;
    color: #ffffff;
    margin-bottom: 0.22rem;
}

.customer-auth-security-bar span {
    color: rgba(226, 232, 240, 0.78);
    line-height: 1.7;
}

.customer-auth-security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.customer-auth-security-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.customer-auth-side-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.customer-auth-side-link {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    color: #f8fafc;
    font-size: 0.88rem;
    font-weight: 800;
}

.customer-auth-side-link:hover {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
}

.customer-auth-panel {
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
    background:
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.08), transparent 20rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.98));
}

.customer-auth-console-bar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.96), rgba(255, 255, 255, 0.98));
}

.customer-auth-console-copy {
    display: grid;
    gap: 0.22rem;
}

.customer-auth-console-copy strong {
    color: #0f172a;
    font-size: 0.95rem;
}

.customer-auth-console-copy span {
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.6;
}

.customer-auth-console-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.customer-auth-console-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 0.95rem;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 900;
}

.customer-auth-console-link-muted {
    background: rgba(15, 23, 42, 0.06);
    color: #0f172a;
}

.customer-auth-panel-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.7fr);
    gap: 1rem;
    align-items: start;
}

.customer-auth-panel-top h2 {
    margin: 0.45rem 0 0.55rem;
    font-size: 1.75rem;
    line-height: 1.08;
}

.customer-auth-panel-top p {
    margin: 0;
    color: #64748b;
    line-height: 1.68;
}

.customer-auth-mini-note {
    padding: 1rem 1.05rem;
    color: #334155;
    font-size: 0.92rem;
    line-height: 1.65;
}

.customer-auth-switcher {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    padding: 0.35rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 22px;
    background: rgba(248, 250, 252, 0.96);
}

.customer-auth-tab {
    min-height: 52px;
    border: 0;
    border-radius: 18px;
    background: transparent;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 900;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}

.customer-auth-tab.is-active {
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
}

.customer-auth-panels {
    position: relative;
}

.customer-auth-card {
    display: none;
    gap: 1rem;
    padding: 1.55rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff, #fcfdff);
}

.customer-auth-card.is-active {
    display: grid;
}

.customer-auth-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.customer-auth-card-head h3 {
    margin: 0.32rem 0 0;
    font-size: 1.42rem;
    line-height: 1.1;
}

.customer-auth-card-kicker {
    color: #64748b;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.customer-auth-card-side {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.8rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: #334155;
    font-size: 0.78rem;
    font-weight: 800;
}

.customer-auth-form {
    display: grid;
    gap: 1rem;
}

.customer-auth-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.customer-auth-field {
    display: grid;
    gap: 0.45rem;
}

.customer-auth-field-full {
    grid-column: 1 / -1;
}

.customer-auth-field span {
    color: #334155;
    font-size: 0.86rem;
    font-weight: 800;
}

.customer-auth-input {
    min-height: 56px;
    border-radius: 18px;
    background: #f8fafc;
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.customer-auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.customer-auth-check {
    padding: 0.1rem 0;
}

.customer-auth-submit {
    min-height: 56px;
}

.customer-auth-form-note {
    padding: 0.95rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.94);
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.68;
}

.customer-auth-form-note strong {
    color: #0f172a;
}

.customer-auth-error {
    padding: 0.9rem 1rem;
    border: 1px solid rgba(239, 68, 68, 0.16);
    border-radius: 18px;
    background: rgba(254, 242, 242, 0.95);
    color: #b91c1c;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.6;
}

.customer-auth-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.account-auth-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-auth-grid-single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 760px;
}

.account-auth-hero,
.account-dashboard-hero {
    margin-bottom: 1.4rem;
}

.account-auth-hero-grid,
.account-dashboard-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 22rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 250, 252, 0.96));
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.account-auth-copy,
.account-dashboard-copy {
    display: grid;
    gap: 1rem;
}

.account-auth-benefits,
.account-auth-system-list,
.account-hero-meta,
.account-hero-actions {
    display: grid;
    gap: 0.85rem;
}

.account-auth-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.account-auth-benefits div,
.account-auth-system-list div,
.account-hero-meta div,
.account-nav-note {
    padding: 0.95rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
}

.account-auth-benefits strong,
.account-auth-system-list p,
.account-hero-meta strong,
.account-nav-note strong {
    color: #0f172a;
}

.account-auth-benefits span,
.account-auth-system-list p,
.account-nav-note p {
    color: #64748b;
    line-height: 1.6;
}

.account-auth-system-card,
.account-hero-actions-card {
    display: grid;
    gap: 0.95rem;
    padding: 1.2rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.95);
    color: #ffffff;
}

.account-auth-system-card .section-kicker,
.account-hero-actions-card .section-kicker {
    color: rgba(255, 255, 255, 0.68);
}

.account-auth-system-card .section-title,
.account-hero-actions-card .section-title {
    color: #ffffff;
}

.account-auth-system-list div {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: start;
    gap: 0.8rem;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.account-auth-system-list span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 900;
}

.account-auth-system-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.account-panel-note {
    margin: -0.2rem 0 0.2rem;
    color: #64748b;
    line-height: 1.65;
}

.account-inline-link {
    color: #0f172a;
    font-size: 0.88rem;
    font-weight: 800;
}

.account-dashboard-layout {
    grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.42fr) minmax(300px, 0.92fr);
    align-items: start;
}

.account-dashboard-nav {
    position: sticky;
    top: 94px;
}

.account-nav-panel {
    display: grid;
    gap: 1rem;
}

.account-section-nav {
    display: grid;
    gap: 0.45rem;
}

.account-section-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 0.95rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 14px;
    background: rgba(248, 250, 252, 0.9);
    color: #0f172a;
    font-size: 0.9rem;
    font-weight: 800;
}

.account-summary-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 1.4rem;
}

.account-summary-card,
.account-panel,
.card-like {
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
}

.account-summary-card {
    padding: 1.25rem 1.3rem;
}

.account-summary-card span,
.account-summary-card small {
    display: block;
}

.account-summary-card span {
    color: var(--text-muted);
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.account-summary-card strong {
    display: block;
    margin: 0.55rem 0 0.2rem;
    font-size: 2rem;
}

.account-panel,
.card-like {
    padding: 1.4rem;
}

.account-panel-highlight {
    background:
        linear-gradient(135deg, rgba(245, 5, 55, 0.06), rgba(17, 24, 39, 0.02)),
        rgba(255, 255, 255, 0.96);
}

.account-panel-head,
.account-address-head,
.account-order-head,
.pdp-review-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.account-panel-head {
    margin-bottom: 1rem;
}

.account-panel-tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 0.7rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: #334155;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.account-form,
.account-form-grid,
.account-order-list,
.account-review-list,
.account-return-list,
.pdp-review-list {
    display: grid;
    gap: 1rem;
}

.account-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-form-grid .full,
.form-check.full {
    grid-column: 1 / -1;
}

.account-address-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-address-card,
.account-order-card,
.account-review-card,
.account-return-card,
.account-favorite-item,
.pdp-review-card {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 20px;
    background: rgba(248, 250, 252, 0.78);
}

.account-address-card {
    padding: 1rem;
}

.account-address-card form {
    display: grid;
    gap: 0.7rem;
}

.account-address-create {
    align-content: start;
}

.account-address-actions,
.account-order-logistics {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.account-order-actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.account-order-tracking-code {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.2rem 0.58rem;
    border-radius: 999px;
    border: 1px dashed rgba(37, 99, 235, 0.4);
    background: #eff6ff;
    color: #1e3a8a;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.account-address-delete {
    margin-top: 0.7rem;
}

.account-order-card,
.account-review-card,
.account-return-card,
.pdp-review-card {
    padding: 1rem;
}

.account-order-items {
    display: grid;
    gap: 0.7rem;
    margin: 1rem 0;
}

.account-order-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.account-return-form {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.account-favorites-list {
    display: grid;
    gap: 0.8rem;
}

.account-favorite-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.8rem;
    padding: 0.7rem;
    align-items: center;
}

.account-favorite-item img {
    width: 72px;
    height: 88px;
    object-fit: cover;
    border-radius: 16px;
}

.account-hero-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.account-hero-meta span {
    display: block;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.account-hero-meta strong {
    display: block;
    margin-top: 0.22rem;
    font-size: 0.96rem;
}

.account-hero-actions {
    grid-template-columns: 1fr;
}

.account-hero-actions .btn,
.account-hero-logout .btn {
    width: 100%;
}

.account-hero-logout {
    margin: 0;
}

.pdp-favorite-form {
    margin: 0.75rem 0;
}

.pdp-info-grid,
.pdp-social-grid {
    margin-top: 2rem;
}

.pdp-info-list,
.pdp-info-copy {
    display: grid;
    gap: 0.85rem;
}

.pdp-info-list div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.pdp-review-card h3 {
    font-size: 1rem;
    margin: 0.5rem 0;
}

body.page-product-detail {
    background:
        radial-gradient(circle at top left, rgba(148, 163, 184, 0.12), transparent 24rem),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 42%, #f8fafc 100%);
}

body.page-product-detail .pdp-stage {
    padding-top: 7.15rem;
    padding-bottom: 4.5rem;
}

body.page-product-detail .pdp-breadcrumb {
    margin-bottom: 1rem;
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 800;
}

body.page-product-detail .pdp-stage-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 1.2rem;
    align-items: start;
}

body.page-product-detail .pdp-gallery-shell {
    position: sticky;
    top: 88px;
    display: grid;
    gap: 1rem;
}

body.page-product-detail .pdp-gallery-card,
body.page-product-detail .pdp-summary-card,
body.page-product-detail .pdp-assurance-card {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

body.page-product-detail .pdp-gallery-card {
    padding: 1rem;
}

body.page-product-detail .pdp-main-media {
    background:
        radial-gradient(circle at top, rgba(59, 130, 246, 0.08), transparent 42%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

body.page-product-detail .pdp-main-media img {
    aspect-ratio: 1 / 1.04;
}

body.page-product-detail .pdp-highlight-board {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}

body.page-product-detail .pdp-highlight-card {
    display: grid;
    gap: 0.22rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
}

body.page-product-detail .pdp-highlight-card span {
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-product-detail .pdp-highlight-card strong {
    color: #0f172a;
    font-size: 0.96rem;
    line-height: 1.3;
}

body.page-product-detail .pdp-summary-shell {
    min-width: 0;
}

body.page-product-detail .pdp-summary-card {
    display: grid;
    gap: 1rem;
    padding: clamp(1.25rem, 2vw, 1.7rem);
}

body.page-product-detail .pdp-summary-top {
    display: grid;
    gap: 0.95rem;
}

body.page-product-detail .pdp-summary-kickers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

body.page-product-detail .pdp-summary-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.85rem;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

body.page-product-detail .pdp-summary-chip-soft {
    background: rgba(15, 23, 42, 0.06);
    color: #0f172a;
}

body.page-product-detail .pdp-summary-sku {
    color: #64748b;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.page-product-detail .pdp-title {
    margin: 0;
    color: #0f172a;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 0.95;
    text-transform: none;
}

body.page-product-detail .pdp-summary-copy,
body.page-product-detail .pdp-experience-copy {
    margin: 0;
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.72;
}

body.page-product-detail .pdp-summary-story {
    display: grid;
    gap: 0.9rem;
}

body.page-product-detail .pdp-rating-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.94), rgba(255, 255, 255, 0.94));
}

body.page-product-detail .pdp-rating-stars {
    color: #f59e0b;
    letter-spacing: 0.12em;
}

body.page-product-detail .pdp-rating-row strong {
    color: #0f172a;
    font-size: 0.98rem;
}

body.page-product-detail .pdp-rating-row span {
    color: #64748b;
    font-size: 0.86rem;
    font-weight: 700;
}

body.page-product-detail .pdp-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

body.page-product-detail .pdp-feature-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 0.88rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.94);
    color: #0f172a;
    font-size: 0.8rem;
    font-weight: 800;
}

body.page-product-detail .pdp-purchase-card {
    padding: 1rem;
    border-radius: 24px;
    border-color: rgba(15, 23, 42, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94)),
        #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

body.page-product-detail .pdp-purchase-head {
    margin-bottom: 1rem;
}

body.page-product-detail .pdp-purchase-head h2 {
    margin: 0.2rem 0 0;
    font-size: 1.25rem;
}

body.page-product-detail .pdp-price-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    margin-bottom: 0.9rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    background: #ffffff;
}

body.page-product-detail .pdp-price-panel span {
    color: #64748b;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-product-detail .pdp-price-panel strong {
    display: block;
    margin-top: 0.2rem;
    color: #0f172a;
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 1;
}

body.page-product-detail .pdp-secondary-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 0.85rem;
}

body.page-product-detail .pdp-secondary-actions .btn,
body.page-product-detail .pdp-secondary-actions .pdp-favorite-form,
body.page-product-detail .pdp-secondary-actions .pdp-favorite-form button {
    width: 100%;
}

body.page-product-detail .pdp-favorite-form {
    margin: 0;
}

body.page-product-detail .pdp-promise-list {
    display: grid;
    gap: 0.7rem;
    margin-top: 0.95rem;
}

body.page-product-detail .pdp-promise-list div {
    display: grid;
    gap: 0.2rem;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
}

body.page-product-detail .pdp-promise-list strong {
    color: #0f172a;
    font-size: 0.85rem;
}

body.page-product-detail .pdp-promise-list span {
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.55;
}

body.page-product-detail .pdp-promise-list-plain {
    margin-top: 0;
}

body.page-product-detail .pdp-micro-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

body.page-product-detail .pdp-micro-proof div {
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.9);
}

body.page-product-detail .pdp-micro-proof span,
body.page-product-detail .pdp-review-stat span {
    display: block;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-product-detail .pdp-micro-proof strong,
body.page-product-detail .pdp-review-stat strong {
    display: block;
    margin-top: 0.28rem;
    color: #0f172a;
    font-size: 0.92rem;
}

body.page-product-detail .pdp-assurance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1rem;
}

body.page-product-detail .pdp-assurance-card {
    display: grid;
    gap: 0.38rem;
    padding: 1.1rem 1.2rem;
}

body.page-product-detail .pdp-assurance-card > span {
    color: #94a3b8;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

body.page-product-detail .pdp-assurance-card strong {
    color: #0f172a;
    font-size: 1rem;
}

body.page-product-detail .pdp-assurance-card p {
    margin: 0;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.62;
}

body.page-product-detail .pdp-experience-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
    gap: 1rem;
    margin-top: 1rem;
}

body.page-product-detail .pdp-experience-card {
    min-width: 0;
    display: grid;
    gap: 1rem;
    padding: 1.45rem 1.5rem;
}

body.page-product-detail .pdp-experience-head {
    display: grid;
    gap: 0.55rem;
    padding-bottom: 0.95rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

body.page-product-detail .pdp-experience-card .section-kicker {
    color: #64748b;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
}

body.page-product-detail .pdp-experience-card .section-title {
    margin: 0;
    padding-left: 0;
    border-left: 0;
    color: #0f172a;
    font-size: clamp(1.35rem, 2.1vw, 1.92rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

body.page-product-detail .pdp-experience-story .section-title {
    max-width: 14ch;
}

body.page-product-detail .pdp-customer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 1rem;
    margin-top: 1rem;
}

body.page-product-detail .pdp-review-summary-card,
body.page-product-detail .pdp-review-form-card {
    display: grid;
    gap: 1rem;
}

body.page-product-detail .pdp-review-summary-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

body.page-product-detail .pdp-review-score {
    min-width: 120px;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.9);
    text-align: right;
}

body.page-product-detail .pdp-review-score strong {
    display: block;
    color: #0f172a;
    font-size: 1.8rem;
    line-height: 1;
}

body.page-product-detail .pdp-review-score span {
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 800;
}

body.page-product-detail .pdp-review-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

body.page-product-detail .pdp-review-stat {
    padding: 0.95rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.84);
}

body.page-product-detail .pdp-related {
    margin-top: 1.3rem;
}

@media (max-width: 1180px) {
    body.page-product-detail .pdp-stage-grid,
    body.page-product-detail .pdp-customer-grid,
    body.page-product-detail .pdp-experience-grid {
        grid-template-columns: 1fr;
    }

    body.page-product-detail .pdp-gallery-shell {
        position: relative;
        top: 0;
    }

    body.page-product-detail .pdp-highlight-board,
    body.page-product-detail .pdp-assurance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    body.page-product-detail .pdp-stage {
        padding-top: 6.35rem;
    }

    body.page-product-detail .pdp-title {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    body.page-product-detail .pdp-experience-card {
        padding: 1.3rem 1.2rem;
    }

    body.page-product-detail .pdp-experience-card .section-title {
        font-size: clamp(1.2rem, 5vw, 1.58rem);
    }

    body.page-product-detail .pdp-micro-proof,
    body.page-product-detail .pdp-review-stat-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body.page-product-detail .pdp-stage {
        padding-top: 5.9rem;
        padding-bottom: 3.2rem;
    }

    body.page-product-detail .pdp-gallery-card,
    body.page-product-detail .pdp-summary-card,
    body.page-product-detail .pdp-assurance-card,
    body.page-product-detail .card-like {
        border-radius: 24px;
    }

    body.page-product-detail .pdp-highlight-board,
    body.page-product-detail .pdp-assurance-grid,
    body.page-product-detail .pdp-secondary-actions {
        grid-template-columns: 1fr;
    }

    body.page-product-detail .pdp-price-panel,
    body.page-product-detail .pdp-review-summary-head {
        grid-template-columns: 1fr;
        display: grid;
    }

    body.page-product-detail .pdp-review-score {
        text-align: left;
    }

    body.page-product-detail .pdp-thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .nav-container {
        gap: 0.75rem;
    }

    .nav-utility-cluster {
        gap: 0.45rem;
    }

    .nav-account,
    .nav-account-logout,
    .nav-cart {
        padding-inline: 0.8rem;
    }

    .nav-account-label {
        display: none;
    }

    .nav-account {
        min-width: 38px;
        padding-inline: 0.55rem;
    }

    .customer-auth-layout,
    .customer-auth-panel-top,
    .account-auth-grid,
    .account-dashboard-layout,
    .account-summary-grid,
    .account-address-grid,
    .account-form-grid {
        grid-template-columns: 1fr;
    }

    .customer-auth-command-grid,
    .customer-auth-form-grid,
    .account-auth-hero-grid,
    .account-dashboard-hero-grid,
    .account-auth-benefits,
    .account-hero-meta {
        grid-template-columns: 1fr;
    }

    .customer-auth-side-nav {
        grid-template-columns: 1fr;
    }

    .customer-auth-security-badges {
        flex-direction: column;
        align-items: stretch;
    }

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

    .account-dashboard-nav {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .storefront-alert-wrap {
        padding-top: 4.9rem;
    }

    .store-search-panel {
        width: calc(100% - 1rem);
        margin-top: 4.8rem;
        padding: 1rem;
        border-radius: 24px;
    }

    .store-search-panel-head,
    .store-search-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .store-search-input-shell {
        min-height: 64px;
        padding: 0 1rem;
        border-radius: 20px;
    }

    .store-search-input {
        font-size: 1rem;
    }

    .customer-auth-stage {
        padding-top: 0.75rem;
    }

    .customer-auth-aside,
    .customer-auth-panel,
    .customer-auth-card {
        padding: 1.15rem;
        border-radius: 24px;
    }

    .customer-auth-aside h1 {
        font-size: clamp(1.6rem, 7vw, 2.3rem);
    }

    .customer-auth-console-bar,
    .customer-auth-card-head,
    .customer-auth-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-container {
        min-height: 62px;
        gap: 0.55rem;
    }

    .nav-brand {
        gap: 0.6rem;
        min-height: 38px;
    }

    .nav-actions {
        flex: 1 1 auto;
        min-width: 0;
    }

    .nav-utility-cluster {
        margin-left: auto;
    }

    .nav-account {
        padding: 0;
        width: 38px;
        min-width: 38px;
    }

    .nav-account-icon {
        width: 100%;
        height: 100%;
        background: transparent;
    }

    .nav-account-logout-form {
        display: none;
    }

    .nav-cart {
        gap: 0.38rem;
    }

    .nav-cart-label {
        display: none;
    }

    .account-auth-hero-grid,
    .account-dashboard-hero-grid {
        padding: 1.15rem;
        border-radius: 24px;
    }

    .account-summary-card strong {
        font-size: 1.75rem;
    }
}

@media (max-width: 560px) {
    .tracking-progress {
        grid-template-columns: 1fr;
    }

    .tracking-code-box strong {
        word-break: break-all;
    }

    .nav-cart {
        padding-inline: 0.74rem;
    }

    .store-search-card,
    .store-search-panel {
        border-radius: 20px;
    }

    .nav-cart-icon,
    .nav-cart-icon svg {
        width: 1rem;
        height: 1rem;
    }

    .nav-cart-label {
        font-size: 0.68rem;
    }
}
