:root {
    --bg: #050b1b;
    --bg-alt: #0a1733;
    --surface: rgba(10, 22, 46, 0.95);
    --surface-soft: rgba(10, 22, 46, 0.75);
    --ink: #f1f5ff;
    --ink-muted: rgba(227, 234, 255, 0.72);
    --accent: #dcb86a;
    --accent-strong: #f6dd92;
    --accent-soft: rgba(220, 184, 106, 0.24);
    --shadow: 0 30px 80px rgba(5, 12, 28, 0.45);
    --radius-lg: 24px;
    --radius-md: 16px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body.site-body {
    font-family: 'Poppins', 'Assistant', sans-serif;
    margin: 0;
    background: linear-gradient(180deg, var(--bg), #03112a);
    color: var(--ink);
    line-height: 1.6;
}

body.site-body.rtl {
    direction: rtl;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    backdrop-filter: blur(18px);
    background: rgba(4, 12, 28, 0.82);
    border-bottom: 1px solid rgba(220, 184, 106, 0.22);
}

.header-top {
    background: linear-gradient(90deg, rgba(7, 16, 34, 0.92), rgba(14, 32, 58, 0.86));
    border-bottom: 1px solid rgba(220, 184, 106, 0.18);
}

.header-top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(230, 236, 255, 0.7);
}

.header-tagline {
    color: rgba(247, 222, 162, 0.75);
}

.header-auth {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.72rem;
}

.header-auth__greeting {
    color: rgba(247, 222, 162, 0.9);
    letter-spacing: 0.08em;
}

.header-link {
    color: rgba(235, 241, 255, 0.78);
    transition: color 0.3s ease;
}

.header-link:hover {
    color: var(--accent);
}

.header-divider {
    opacity: 0.4;
}

.header-announcement {
    display: flex;
    justify-content: center;
    padding: 0.6rem 5vw;
    font-size: 0.78rem;
    color: rgba(225, 232, 253, 0.78);
    background: linear-gradient(90deg, rgba(7, 18, 38, 0.82), rgba(7, 24, 46, 0.6));
    border-bottom: 1px solid rgba(220, 184, 106, 0.22);
}

.header-main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2.5rem;
    padding: 1.1rem 0;
}

.header-brand {
    display: inline-flex;
    align-items: center;
    gap: 1.1rem;
    color: var(--ink);
}

.header-brand__logo {
    width: 82px;
    height: 82px;
    border-radius: 26px;
    object-fit: contain;
    background: radial-gradient(circle at 30% 30%, rgba(220, 184, 106, 0.25), rgba(5, 12, 28, 0.82));
    border: 1px solid rgba(220, 184, 106, 0.45);
    padding: 10px;
    box-shadow: 0 18px 48px rgba(5, 12, 28, 0.55);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.header-brand__logo:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 22px 60px rgba(5, 12, 28, 0.6);
}

.header-brand__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    gap: 1.8rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(206, 217, 244, 0.75);
}

.primary-nav a {
    position: relative;
    padding-bottom: 0.35rem;
    transition: color 0.3s ease;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    inset-block-end: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
    width: 100%;
}

.primary-nav a:hover,
.primary-nav a.active {
    color: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.header-pods {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.header-actions .icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
}

.header-actions .icon svg {
    width: 22px;
    height: 22px;
    fill: rgba(236, 242, 255, 0.85);
}

.locale-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(7, 12, 24, 0.82);
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    box-shadow: 0 14px 32px rgba(5, 12, 28, 0.4);
}

.locale-switch__form {
    margin: 0;
}

.locale-pill {
    border: none;
    background: transparent;
    color: rgba(206, 217, 244, 0.75);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.locale-pill:hover {
    color: var(--accent);
}

.locale-pill--active {
    background: rgba(37, 99, 235, 0.25);
    color: #f8fafc;
    cursor: default;
}

.locale-switch--compact {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 0.35rem;
}

.locale-switch--compact .locale-pill {
    padding: 0.25rem 0.45rem;
    font-size: 0.66rem;
}

.locale-switch--compact .locale-pill--active {
    background: rgba(37, 99, 235, 0.32);
}

.header-pod {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(12, 24, 48, 0.65);
    border: 1px solid rgba(220, 184, 106, 0.22);
    box-shadow: 0 16px 36px rgba(5, 12, 28, 0.4);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.header-pod:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(5, 12, 28, 0.5);
    background: rgba(220, 184, 106, 0.2);
    border-color: rgba(220, 184, 106, 0.45);
}

.header-pod strong {
    display: block;
    font-size: 0.86rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(243, 246, 255, 0.95);
}

.header-pod small {
    display: block;
    font-size: 0.64rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(225, 232, 253, 0.72);
}

.header-pod .pod-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.header-pod .pod-icon {
    width: 34px;
    height: 34px;
    border-radius: 14px;
    border: 1px solid rgba(220, 184, 106, 0.2);
    background: rgba(9, 18, 34, 0.82);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    display: grid;
    place-items: center;
}

.header-pod .pod-icon svg {
    width: 18px;
    height: 18px;
    fill: rgba(236, 242, 255, 0.9);
}

.header-pod .pod-badge {
    position: absolute;
    inset-block-start: -0.25rem;
    inset-inline-end: -0.25rem;
    min-width: 1.45rem;
    height: 1.45rem;
    border-radius: 999px;
    background: var(--accent-strong);
    color: #0b1327;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.45);
}

.header-pod--bell .pod-icon {
    background: rgba(29, 40, 62, 0.82);
}

.header-pod--cart .pod-icon {
    background: rgba(31, 54, 86, 0.84);
}

.notification-center {
    position: relative;
}

.notification-center summary {
    list-style: none;
    cursor: pointer;
}

.notification-center summary.header-pod {
    padding: 0.55rem 1rem;
}

.notification-center summary::-webkit-details-marker {
    display: none;
}

.notification-center summary:focus-visible {
    outline: 2px solid var(--accent-strong);
    outline-offset: 4px;
}

.notification-center.has-alerts .header-pod {
    border-color: rgba(220, 184, 106, 0.52);
    background: rgba(220, 184, 106, 0.18);
}

.notification-center[open] .header-pod {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(5, 12, 28, 0.5);
    border-color: rgba(220, 184, 106, 0.6);
}

.notification-dropdown {
    position: absolute;
    inset-block-start: calc(100% + 0.6rem);
    inset-inline-end: 0;
    min-width: 280px;
    background: rgba(9, 21, 44, 0.96);
    border: 1px solid rgba(220, 184, 106, 0.25);
    border-radius: var(--radius-md);
    box-shadow: 0 24px 60px rgba(5, 12, 28, 0.6);
    padding: 1rem;
    transform: translateX(0);
}

.notification-dropdown p {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(225, 232, 253, 0.72);
}

.notification-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.notification-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.notification-label {
    font-size: 0.82rem;
    color: rgba(245, 229, 196, 0.92);
}

.notification-item time {
    font-size: 0.72rem;
    color: rgba(225, 232, 253, 0.6);
    letter-spacing: 0.08em;
}

.header-cart {
    text-decoration: none;
    color: inherit;
}

[dir="rtl"] .notification-dropdown {
    inset-inline-end: auto;
    inset-inline-start: 0;
}
.concierge-bar {
    background: linear-gradient(90deg, rgba(7, 16, 34, 0.92), rgba(14, 32, 58, 0.86));
    border-bottom: 1px solid rgba(220, 184, 106, 0.18);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(230, 236, 255, 0.7);
}

.concierge-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.7rem 0;
}

.concierge-actions {
    display: inline-flex;
    gap: 0.8rem;
    align-items: center;
    font-size: 0.72rem;
}

.concierge-client {
    color: rgba(247, 222, 162, 0.9);
}

.announcement {
    display: flex;
    justify-content: center;
    padding: 0.6rem 5vw;
    font-size: 0.78rem;
    color: rgba(225, 232, 253, 0.78);
    background: linear-gradient(90deg, rgba(7, 18, 38, 0.82), rgba(7, 24, 46, 0.6));
}

.nav-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2.5rem;
    padding: 1.2rem 0;
}

.brand-logo {
    width: 86px;
    height: 86px;
    border-radius: 26px;
    object-fit: contain;
    background: radial-gradient(circle at 30% 30%, rgba(220, 184, 106, 0.25), rgba(5, 12, 28, 0.82));
    border: 1px solid rgba(220, 184, 106, 0.45);
    padding: 10px;
    box-shadow: 0 18px 48px rgba(5, 12, 28, 0.55);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.brand-logo:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 22px 60px rgba(5, 12, 28, 0.6);
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(206, 217, 244, 0.75);
}

.nav-links a {
    position: relative;
    padding-bottom: 0.35rem;
}

.nav-links a::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    inset-block-end: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.lang-switcher {
    display: inline-flex;
    border-radius: 999px;
    border: 1px solid rgba(220, 184, 106, 0.45);
    overflow: hidden;
    background: rgba(12, 24, 48, 0.65);
    margin-inline-end: 0.8rem;
}

.lang-switcher button {
    border: none;
    background: transparent;
    color: rgba(206, 217, 244, 0.75);
    padding: 0.35rem 0.85rem;
    font-size: 0.72rem;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.lang-switcher button.active {
    background: var(--accent);
    color: #1d2537;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-outline.slim {
    padding: 0.7rem 1.4rem;
    background: rgba(12, 24, 48, 0.7);
}

.btn-outline.slim:hover {
    background: rgba(220, 184, 106, 0.3);
    color: #101832;
}

.hero {
    position: relative;
    padding: 5rem 0 4rem;
}

.hero-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.hero-tags span {
    border-radius: 999px;
    padding: 0.45rem 1.1rem;
    background: rgba(217, 178, 83, 0.14);
    color: var(--accent-strong);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
}

.hero h1 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5vw, 4.3rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
}

.hero p {
    margin: 0.8rem 0 0;
    max-width: 540px;
    color: var(--ink-muted);
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.85rem 1.9rem;
    letter-spacing: 0.18em;
    font-size: 0.74rem;
    text-transform: uppercase;
    border: 1px solid rgba(220, 184, 106, 0.4);
}

.btn-primary {
    background: var(--accent);
    color: #1f273f;
    box-shadow: 0 18px 48px rgba(217, 178, 83, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(217, 178, 83, 0.35);
}

.btn-outline {
    background: rgba(12, 24, 48, 0.6);
    color: var(--accent);
}

.btn-outline:hover {
    background: rgba(220, 184, 106, 0.24);
    color: #1d2537;
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.metric {
    border-radius: var(--radius-md);
    background: var(--surface-soft);
    border: 1px solid rgba(220, 184, 106, 0.22);
    padding: 0.85rem 1.1rem;
    min-width: 150px;
}

.metric strong {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.metric span {
    font-size: 0.74rem;
    color: var(--ink-muted);
}

.hero-feature {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(220, 184, 106, 0.26);
    padding: 1.6rem;
    display: grid;
    gap: 1.1rem;
    box-shadow: var(--shadow);
}

.hero-feature figure {
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.label-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(217, 178, 83, 0.18);
    color: var(--accent-strong);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-feature h3 {
    margin: 0;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}

.btn-link {
    color: var(--accent);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.hero-luxe {
    position: relative;
    padding: 6.5rem 0;
    background: radial-gradient(circle at top, rgba(220, 184, 106, 0.08), transparent 45%);
    overflow: hidden;
    --hero-visual: none;
}

.hero-luxe::before {
    content: "";
    position: absolute;
    inset: -10% -30% 0;
    background: var(--hero-visual) center / contain no-repeat;
    opacity: 0.12;
    filter: blur(1px);
    pointer-events: none;
}

.hero-luxe::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 12, 28, 0.92), rgba(5, 12, 28, 0.25));
    pointer-events: none;
}

.hero-luxe__inner {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3.5rem;
    z-index: 1;
    align-items: center;
    position: relative;
}

.hero-luxe__inner::after {
    content: "";
    position: absolute;
    inset-inline: -10%;
    inset-block-end: -4.5rem;
    height: 300px;
    background: radial-gradient(circle at center, rgba(220, 184, 106, 0.18), transparent 65%);
    filter: blur(45px);
    z-index: -1;
}

.hero-luxe__copy {
    display: grid;
    gap: 1.4rem;
}

.hero-luxe__tag {
    font-size: 0.78rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(247, 222, 162, 0.85);
    display: inline-flex;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    background: rgba(217, 178, 83, 0.12);
    border: 1px solid rgba(220, 184, 106, 0.32);
}

.hero-luxe h1 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 4.8rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
}

.hero-luxe p {
    margin: 0;
    max-width: 46ch;
    color: rgba(235, 241, 255, 0.74);
    line-height: 1.8;
}

.hero-luxe__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.hero-luxe__actions .btn-outline.slim {
    padding-inline: 1.5rem;
    background: rgba(5, 12, 28, 0.45);
    border-color: rgba(220, 184, 106, 0.32);
}

.hero-luxe__actions .btn-outline.slim:hover {
    background: rgba(220, 184, 106, 0.25);
    color: #1d2537;
}

.hero-luxe__stats {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.1rem;
}

.hero-luxe__stats li {
    position: relative;
    padding: 0.8rem 1.1rem 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(6, 16, 32, 0.55);
    border: 1px solid rgba(220, 184, 106, 0.16);
    box-shadow: 0 18px 40px rgba(5, 12, 28, 0.45);
}

[dir="ltr"] .hero-luxe__stats li {
    padding-inline-start: 1.5rem;
}

[dir="rtl"] .hero-luxe__stats li {
    padding-inline-end: 1.5rem;
}

.hero-luxe__stats li::before {
    content: "";
    position: absolute;
    inset-block: 0.9rem;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(247, 222, 162, 0.8), rgba(220, 184, 106, 0.2));
    inset-inline-start: 0.7rem;
}

[dir="rtl"] .hero-luxe__stats li::before {
    inset-inline-start: auto;
    inset-inline-end: 0.7rem;
}

.hero-luxe__stats strong {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-strong);
}

.hero-luxe__stats span {
    display: block;
    font-size: 0.78rem;
    color: rgba(203, 213, 243, 0.76);
}

.hero-luxe__visual {
    position: relative;
    padding: 2.4rem;
    border-radius: var(--radius-lg);
    background: rgba(6, 16, 32, 0.65);
    border: 1px solid rgba(220, 184, 106, 0.22);
    box-shadow: 0 28px 80px rgba(5, 12, 28, 0.55);
    overflow: hidden;
    transform: translateZ(0);
}

.hero-luxe__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(220, 184, 106, 0.18), transparent 60%);
    opacity: 0.4;
}

.hero-luxe__visual figure {
    position: relative;
    margin: 0;
    text-align: center;
    z-index: 1;
}

.hero-luxe__visual img {
    max-width: min(320px, 100%);
    border-radius: 18px;
    border: 1px solid rgba(220, 184, 106, 0.24);
    box-shadow: 0 20px 60px rgba(5, 12, 28, 0.55);
}

.hero-luxe__legend {
    position: relative;
    z-index: 1;
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(220, 184, 106, 0.18);
    display: grid;
    gap: 0.4rem;
}

.hero-luxe__legend strong {
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.hero-luxe__legend p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(235, 241, 255, 0.7);
}

.hero-luxe__price {
    display: inline-flex;
    align-items: center;
    margin-top: 0.4rem;
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(247, 222, 162, 0.9);
}

.precision-suite {
    padding: 5rem 0 2rem;
}

.precision-suite__header {
    display: grid;
    gap: 0.8rem;
    justify-items: center;
    text-align: center;
    margin-bottom: 3rem;
}

.section-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(235, 241, 255, 0.58);
}

.precision-suite__header h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.precision-suite__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.precision-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(6, 16, 32, 0.72);
    border: 1px solid rgba(220, 184, 106, 0.15);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-rows: 220px 1fr;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.precision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(5, 12, 28, 0.55);
}

.precision-card h3 {
    margin: 0;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.precision-card figure {
    margin: 0;
    height: 100%;
    overflow: hidden;
}

.precision-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.6s ease;
}

.precision-card:hover img {
    transform: scale(1.07);
}

.precision-card__content {
    padding: 1.8rem;
    display: grid;
    gap: 0.7rem;
}

.precision-card__content h3 {
    margin: 0;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.precision-card__content p {
    margin: 0;
    color: rgba(235, 241, 255, 0.72);
    line-height: 1.7;
}

.precision-card__price {
    margin-top: 0.6rem;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(247, 222, 162, 0.85);
}

.duet-gallery {
    padding: 5rem 0;
}

.duet-gallery__header {
    display: grid;
    gap: 0.8rem;
    justify-items: center;
    text-align: center;
    margin-bottom: 3rem;
}

.duet-gallery__header h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.duet-gallery__grid {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.duet-card {
    background: rgba(5, 12, 28, 0.7);
    border-radius: 24px;
    border: 1px solid rgba(220, 184, 106, 0.16);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding: 1.8rem 2rem;
    gap: 1.2rem;
    align-items: center;
}

.duet-card__side {
    display: grid;
    gap: 0.4rem;
}

.duet-card__side span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(235, 241, 255, 0.48);
}

.duet-card__side strong {
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.duet-card__side p {
    margin: 0;
    color: rgba(235, 241, 255, 0.7);
}

.duet-card__price {
    margin-top: 0.5rem;
    display: inline-flex;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 222, 162, 0.85);
}

.duet-card__divider {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(220, 184, 106, 0.35), transparent);
}

.atelier-immersion {
    position: relative;
    margin: 5rem 0;
    padding: 6rem 0;
    background: url('https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.atelier-immersion__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(5, 12, 28, 0.85), rgba(5, 12, 28, 0.55));
}

.atelier-immersion__content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.2rem;
    justify-items: start;
    max-width: 580px;
}

.atelier-immersion__content h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.atelier-immersion__content p {
    margin: 0;
    color: rgba(245, 239, 222, 0.85);
    line-height: 1.8;
}

.heritage-ribbon {
    padding: 4.5rem 0;
}

.heritage-ribbon__header {
    display: grid;
    gap: 0.8rem;
    justify-items: center;
    text-align: center;
    margin-bottom: 3rem;
}

.heritage-ribbon__header h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.heritage-ribbon__grid {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.heritage-card {
    background: rgba(6, 16, 32, 0.7);
    border-radius: 24px;
    border: 1px solid rgba(220, 184, 106, 0.14);
    padding: 1.8rem;
    display: grid;
    gap: 0.6rem;
}

.heritage-card__year {
    font-size: 0.82rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(220, 184, 106, 0.82);
}

.heritage-card h3 {
    margin: 0;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.heritage-card p {
    margin: 0;
    color: rgba(235, 241, 255, 0.7);
    line-height: 1.7;
}

.collection-showcase {
    padding: 5rem 0;
}

.collection-showcase__grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.collection-column {
    display: grid;
    gap: 1.6rem;
    background: rgba(6, 16, 32, 0.68);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(220, 184, 106, 0.18);
    padding: 2.2rem;
    box-shadow: var(--shadow);
}

.collection-column header h3 {
    margin: 0.4rem 0 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.collection-column header {
    position: relative;
    padding-bottom: 0.6rem;
}

.collection-column header::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    inset-block-end: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(220, 184, 106, 0), rgba(220, 184, 106, 0.35), rgba(220, 184, 106, 0));
}

.collection-cards {
    display: grid;
    gap: 1.2rem;
}

.collection-card {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 1.1rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(5, 12, 28, 0.65);
    border: 1px solid rgba(220, 184, 106, 0.12);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.collection-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(5, 12, 28, 0.45);
}

.collection-card figure {
    margin: 0;
}

.collection-card img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(220, 184, 106, 0.18);
}

.collection-card strong {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.collection-card p {
    margin: 0.4rem 0;
    color: rgba(235, 241, 255, 0.7);
    line-height: 1.6;
}

.collection-card span {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 222, 162, 0.8);
}

.duet-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    background: linear-gradient(120deg, rgba(6, 16, 32, 0.7), rgba(6, 16, 32, 0.85));
    border: 1px solid rgba(220, 184, 106, 0.18);
}

.duet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 56px rgba(5, 12, 28, 0.45);
}

.salon-invite {
    padding: 4.5rem 0 6rem;
}

.salon-invite__wrap {
    background: rgba(6, 16, 32, 0.72);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(220, 184, 106, 0.2);
    box-shadow: var(--shadow);
    padding: 3rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
}

.salon-invite__wrap h2 {
    margin: 0.6rem 0 1rem;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.salon-invite__wrap p {
    margin: 0;
    color: rgba(235, 241, 255, 0.7);
    line-height: 1.7;
}

.page-hero {
    display: grid;
    gap: 0.8rem;
    text-align: center;
    margin: 4rem auto 2rem;
}

.page-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(235, 241, 255, 0.6);
}

.page-hero h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
}

.collection-panels {
    display: grid;
    gap: 2rem;
}

.collection-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(220, 184, 106, 0.18);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.panel-visual {
    position: relative;
    min-height: 320px;
}

.panel-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 12, 28, 0.1), rgba(5, 12, 28, 0.7));
}

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

.category-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(235, 241, 255, 0.6);
}

.panel-body h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}

.panel-body p {
    margin: 0;
    color: var(--ink-muted);
}

.panel-points {
    margin: 0;
    padding-inline-start: 1.2rem;
    color: rgba(235, 241, 255, 0.75);
}

.panel-cta {
    align-self: flex-start;
    display: inline-flex;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(220, 184, 106, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.catalog-teasers {
    padding: 4rem 0;
}

.teaser-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.catalog-grid {
    padding: 3rem 0;
}

.catalog-section {
    padding: 3rem 0 4rem;
    background: linear-gradient(180deg, rgba(4, 12, 28, 0.92), rgba(8, 16, 32, 0.96));
}

.catalog-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(227, 234, 255, 0.72);
    padding: 3rem 1rem;
    border-radius: 24px;
    background: rgba(5, 12, 28, 0.65);
    border: 1px solid rgba(220, 184, 106, 0.14);
    box-shadow: 0 24px 46px rgba(5, 12, 28, 0.45);
}

.catalog-grid .product-grid {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gender-header {
    display: grid;
    gap: 0.8rem;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.gender-intro {
    margin: 0;
    color: rgba(227, 234, 255, 0.72);
}

.gender-catalog {
    padding: 2rem 0 4rem;
}

.gender-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.gender-section {
    display: grid;
    gap: 1.8rem;
    padding: 2.2rem;
    border-radius: 26px;
    background: rgba(6, 16, 32, 0.7);
    border: 1px solid rgba(220, 184, 106, 0.18);
    box-shadow: var(--shadow);
}

.gender-section header {
    display: grid;
    gap: 0.8rem;
    text-align: center;
}

.catalog-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(220, 184, 106, 0.18);
    overflow: hidden;
    display: grid;
    box-shadow: var(--shadow);
}

.product-hero {
    padding: 4rem 0;
}

.product-hero-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-gallery figure {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.product-thumbs {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
}

.product-thumbs img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(220, 184, 106, 0.3);
}

.product-summary {
    display: grid;
    gap: 1.2rem;
}

.product-summary h1 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.08em;
}

.product-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(235, 241, 255, 0.6);
}

.product-price {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.product-price .price-stack {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-price .price-old {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
}

.product-price .price-current {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(247, 222, 162, 0.96);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(220, 184, 106, 0.18);
    color: var(--accent-strong);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.product-gift {
    background: rgba(220, 184, 106, 0.12);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.4rem;
    border: 1px solid rgba(220, 184, 106, 0.28);
}

.product-actions {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.product-specs {
    padding: 3rem 0;
}

.specs-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.spec-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid rgba(220, 184, 106, 0.18);
    padding: 1.2rem 1.4rem;
    box-shadow: var(--shadow);
}

.spec-label {
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(235, 241, 255, 0.6);
}

.spec-value {
    font-size: 1rem;
    color: var(--ink);
}

.product-related {
    padding: 4rem 0;
}

.product-related h2 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
}

.inventory-backorder,
.inventory-preorder {
    background: rgba(80, 190, 255, 0.2);
    color: #8be0ff;
}

.inventory-in_stock {
    background: rgba(130, 255, 180, 0.18);
    color: #a3ffcf;
}

.inventory-low_stock {
    background: rgba(255, 210, 120, 0.2);
    color: #ffd778;
}

.inventory-sold_out {
    background: rgba(255, 100, 120, 0.2);
    color: #ff9aaa;
}
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.price {
    font-weight: 600;
}

.badge-vip {
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(220, 184, 106, 0.24);
    color: var(--accent-strong);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.catalog-body {
    padding: 1.8rem;
    display: grid;
    gap: 0.9rem;
}

.catalog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-link {
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
}

.snippet-note {
    font-size: 0.72rem;
    color: var(--ink-muted);
}

.page-contact .contact-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-card {
    background: var(--surface);
    border: 1px solid rgba(220, 184, 106, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-card ul {
    padding-inline-start: 1.2rem;
    color: rgba(235, 241, 255, 0.75);
}

.contact-form label {
    display: grid;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    background: rgba(5, 12, 28, 0.4);
    border: 1px solid rgba(220, 184, 106, 0.24);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: var(--ink);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.site-footer {
    padding: 2.5rem 0 1.5rem;
    background: rgba(4, 12, 28, 0.9);
    border-top: 1px solid rgba(220, 184, 106, 0.18);
}

.footer-main {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: flex-start;
}

.footer-main ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column strong {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.footer-column ul li {
    margin-bottom: 0.45rem;
    font-size: 0.85rem;
    color: rgba(235, 241, 255, 0.75);
}

.footer-brand p,
.footer-column p {
    margin: 0.25rem 0;
    color: rgba(235, 241, 255, 0.75);
}

.footer-brand__link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(247, 222, 162, 0.9);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-brand__logo {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    object-fit: contain;
    border: 1px solid rgba(220, 184, 106, 0.35);
    padding: 8px;
    background: radial-gradient(circle at 30% 30%, rgba(220, 184, 106, 0.18), rgba(5, 12, 28, 0.82));
}

.footer-link,
.footer-column a {
    color: rgba(235, 241, 255, 0.78);
    font-size: 0.85rem;
}

.footer-link:hover,
.footer-column a:hover,
.footer-instagram:hover {
    color: var(--accent);
}

.footer-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.82rem;
    color: rgba(247, 222, 162, 0.9);
}

.footer-instagram .icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(220, 184, 106, 0.22);
    border: 1px solid rgba(220, 184, 106, 0.3);
}

.footer-instagram svg {
    width: 18px;
    height: 18px;
    fill: rgba(247, 222, 162, 0.9);
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(235, 241, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(235, 241, 255, 0.72);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.footer-bottom a {
    color: rgba(247, 222, 162, 0.88);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: rgba(247, 222, 162, 1);
}

.footer-bottom .footer-copy {
    font-weight: 600;
    color: rgba(235, 241, 255, 0.88);
}

.footer-bottom .footer-separator {
    opacity: 0.35;
    font-size: 0.75rem;
}

.cart-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.cart-count {
    min-width: 1.4rem;
    height: 1.4rem;
    border-radius: 999px;
    background: var(--accent);
    color: #1d2537;
    font-size: 0.72rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.storefront-flash {
    width: min(640px, 92vw);
    margin: 1.5rem auto;
    padding: 0.9rem 1.4rem;
    border-radius: 16px;
    background: rgba(28, 45, 78, 0.8);
    border: 1px solid rgba(220, 184, 106, 0.35);
    text-align: center;
    box-shadow: var(--shadow);
}

.storefront-flash.success {
    border-color: rgba(148, 231, 155, 0.45);
    background: rgba(28, 64, 45, 0.75);
}

.storefront-flash.error {
    border-color: rgba(231, 148, 148, 0.45);
    background: rgba(78, 28, 33, 0.75);
}

.cart-section,
.checkout-section,
.checkout-complete {
    padding: 4rem 0 5rem;
}

.cart-layout,
.checkout-layout {
    display: grid;
    gap: 2.5rem;
    align-items: flex-start;
}

.cart-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
}

.cart-main,
.checkout-main {
    background: rgba(6, 16, 32, 0.72);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(220, 184, 106, 0.18);
    box-shadow: var(--shadow);
}

.cart-main h1,
.checkout-main h1 {
    margin-top: 0;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cart-empty {
    display: grid;
    gap: 1.4rem;
    justify-items: start;
}

.cart-form {
    display: grid;
    gap: 2rem;
}

.cart-items {
    display: grid;
    gap: 1.5rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 20px;
    background: rgba(10, 22, 46, 0.6);
    border: 1px solid rgba(220, 184, 106, 0.16);
}

.cart-item-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(220, 184, 106, 0.2);
}

.cart-item-details header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.cart-item-details h2 {
    margin: 0;
    font-size: 1.05rem;
}

.cart-item-sku {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(225, 232, 253, 0.55);
}

.cart-item-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.cart-item-meta label {
    display: grid;
    gap: 0.4rem;
}

.cart-item-meta input[type="number"],
.product-cart-form input[type="number"] {
    width: 80px;
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(220, 184, 106, 0.22);
    background: rgba(4, 12, 28, 0.6);
    color: var(--ink);
}

.cart-line-total {
    margin-inline-start: auto;
    font-weight: 600;
}

.cart-remove-btn {
    margin-top: 1rem;
    border: none;
    background: transparent;
    color: rgba(239, 174, 174, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
    font-size: 0.72rem;
}

.cart-gift,
.checkout-gift {
    display: grid;
    gap: 1rem;
    padding: 1.8rem;
    border-radius: 20px;
    background: rgba(8, 20, 40, 0.7);
    border: 1px solid rgba(220, 184, 106, 0.18);
}

.gift-toggle {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.92rem;
}

.gift-toggle input {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
}

.gift-message {
    display: grid;
    gap: 0.6rem;
}

.gift-message textarea,
.checkout-form textarea {
    min-height: 110px;
    resize: vertical;
    border-radius: 16px;
    border: 1px solid rgba(220, 184, 106, 0.22);
    background: rgba(4, 12, 28, 0.6);
    color: var(--ink);
    padding: 0.9rem 1rem;
}

.gift-message textarea:focus {
    outline: none;
    border-color: rgba(220, 184, 106, 0.6);
}

.cart-actions,
.checkout-submit {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.cart-login-hint {
    margin: 0.75rem 0 0;
    font-size: 0.82rem;
    color: rgba(225, 232, 253, 0.72);
}

.cart-meta-tag,
.summary-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    margin-inline-start: 0.6rem;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: rgba(220, 184, 106, 0.18);
    color: rgba(247, 222, 162, 0.9);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.cart-summary,
.checkout-summary {
    background: rgba(6, 16, 32, 0.85);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(220, 184, 106, 0.18);
    box-shadow: var(--shadow);
}

.cart-summary h2,
.checkout-summary h2 {
    margin-top: 0;
    font-size: 1.2rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cart-summary dl,
.checkout-summary dl {
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.9rem;
}

.cart-summary dl div,
.checkout-summary dl div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-total dt {
    font-weight: 600;
}

.summary-total dd {
    font-size: 1.1rem;
    font-weight: 600;
}

.summary-note {
    font-size: 0.85rem;
    color: rgba(227, 234, 255, 0.7);
    line-height: 1.6;
}

.checkout-form {
    display: grid;
    gap: 1.6rem;
}

.shipping-block {
    display: grid;
    gap: 1.2rem;
    background: rgba(8, 20, 40, 0.68);
    border-radius: 20px;
    border: 1px solid rgba(220, 184, 106, 0.18);
    padding: 1.8rem;
}

.shipping-block h2 {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(235, 241, 255, 0.85);
}

.form-row {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form-row label {
    display: grid;
    gap: 0.5rem;
}

.form-row label.full-width,
.shipping-block .full-width {
    grid-column: 1 / -1;
}

.form-row input {
    padding: 0.75rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(220, 184, 106, 0.22);
    background: rgba(6, 16, 32, 0.6);
    color: var(--ink);
}

.form-row input:focus,
.checkout-form textarea:focus {
    outline: none;
    border-color: rgba(220, 184, 106, 0.6);
}

.input-error {
    color: #ff9aaa;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.summary-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.summary-items li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(220, 184, 106, 0.1);
    padding-bottom: 0.6rem;
}

.summary-items strong {
    display: block;
    font-size: 0.9rem;
}

.checkout-submit p {
    max-width: 420px;
    font-size: 0.85rem;
    color: rgba(227, 234, 255, 0.7);
    margin: 0;
}

.complete-card {
    background: rgba(6, 16, 32, 0.8);
    border-radius: 28px;
    padding: 3rem;
    border: 1px solid rgba(220, 184, 106, 0.22);
    box-shadow: var(--shadow);
    text-align: center;
    display: grid;
    gap: 1.5rem;
    width: min(560px, 92vw);
}

.complete-card h1 {
    margin: 0;
    font-size: 1.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.complete-card .order-ref {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: rgba(236, 244, 255, 0.75);
}

.complete-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-cart-form {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-cart-form label {
    display: grid;
    gap: 0.4rem;
}

.product-actions .btn-outline {
    text-align: center;
}


.account-shell {
    padding: 5rem 0;
    background: #f5f7fb;
}

.account-shell__grid {
    display: grid;
    gap: 2.8rem;
    grid-template-columns: minmax(280px, 420px) minmax(340px, 520px);
    align-items: stretch;
}

.account-shell__summary {
    display: grid;
    gap: 2rem;
    align-content: start;
}

.account-shell__header {
    display: grid;
    gap: 0.8rem;
}

.account-shell__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #8fb5ff;
}

.account-shell__header h1 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f4f6fc;
}

.account-shell__header p {
    margin: 0;
    color: rgba(203, 213, 243, 0.76);
    line-height: 1.7;
}

.account-progress {
    list-style: none;
    margin: 0;
    padding: 1.4rem;
    display: flex;
    gap: 1rem;
    border-radius: 22px;
    background: rgba(10, 16, 28, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
}

.account-progress__item {
    flex: 1;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-align: center;
    color: #94a3b8;
    position: relative;
}

.account-progress__item::after {
    content: '';
    position: absolute;
    bottom: -1.1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 4px;
    border-radius: 999px;
    background: transparent;
}

.account-progress__item--complete {
    color: #f4f6fc;
}

.account-progress__item--complete::after {
    background: #0f172a;
}

.account-progress__item--current {
    color: #89a7ff;
}

.account-progress__item--current::after {
    background: #2563eb;
}

.account-perks {
    display: grid;
    gap: 1.4rem;
    padding: 1.6rem;
    border-radius: 22px;
    background: rgba(10, 16, 28, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
}

.account-perks strong {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f4f6fc;
}

.account-perks ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.6rem;
    color: rgba(203, 213, 243, 0.76);
    font-size: 0.92rem;
}

.account-perks li {
    position: relative;
    padding-inline-start: 1.4rem;
}

.account-perks li::before {
    content: '✓';
    position: absolute;
    inset-inline-start: 0;
    color: #22c55e;
    font-size: 0.95rem;
}

.account-support {
    display: grid;
    gap: 0.35rem;
    font-size: 0.88rem;
    color: rgba(203, 213, 243, 0.76);
}

.account-support a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.account-shell__panel {
    background: rgba(10, 16, 28, 0.82);
    border-radius: 28px;
    padding: clamp(2rem, 5vw, 3rem);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 28px 48px rgba(15, 23, 42, 0.1);
    display: grid;
    gap: 2rem;
    align-content: start;
}

.account-panel__head {
    display: grid;
    gap: 0.7rem;
}

.account-panel__head h2 {
    margin: 0;
    font-size: 1.6rem;
    color: #f4f6fc;
    letter-spacing: 0.04em;
}

.account-panel__head p {
    margin: 0;
    color: rgba(203, 213, 243, 0.76);
}

.account-form {
    display: grid;
    gap: 1.4rem;
}

.account-form__field {
    display: grid;
    gap: 0.5rem;
}

.account-form__field span {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(203, 213, 243, 0.76);
}

.account-form__field input {
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: linear-gradient(160deg, #070c16 0%, #0a1226 45%, #040810 100%);
    color: #f1f5ff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.account-form__field input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.account-form__label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.account-form__label-row a {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #2563eb;
    text-decoration: none;
}

.account-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: space-between;
    align-items: center;
}

.account-form__remember {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    color: rgba(203, 213, 243, 0.76);
}

.account-form__remember input {
    width: 18px;
    height: 18px;
}

.account-panel__foot {
    display: grid;
    gap: 0.6rem;
    justify-items: center;
    text-align: center;
}

.account-panel__foot span {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #94a3b8;
}

.account-trust {
    display: grid;
    gap: 0.6rem;
    font-size: 0.78rem;
    color: #94a3b8;
}

.account-trust ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    color: rgba(203, 213, 243, 0.76);
}

@media (max-width: 960px) {
    .account-shell__grid {
        grid-template-columns: 1fr;
    }

    .account-shell__summary {
        order: 2;
    }

    .account-shell__panel {
        order: 1;
    }
}

@media (max-width: 600px) {
    .account-progress {
        flex-direction: column;
        align-items: stretch;
    }

    .account-progress__item::after {
        display: none;
    }

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

.account-form__actions .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

.commerce-shell {
    padding: 5rem 0;
    background: linear-gradient(160deg, #04070f 0%, #060b19 100%);
}

.commerce-shell__grid {
    display: grid;
    gap: 2.8rem;
    grid-template-columns: minmax(280px, 420px) minmax(360px, 560px);
    align-items: start;
}

.commerce-shell__summary {
    display: grid;
    gap: 2rem;
    align-content: start;
}

.commerce-shell__header {
    display: grid;
    gap: 0.8rem;
}

.commerce-shell__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #2563eb;
}

.commerce-shell__header h1 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f1f5ff;
}

.commerce-shell__header p {
    margin: 0;
    color: rgba(203, 213, 243, 0.76);
    line-height: 1.7;
}

.commerce-guidance {
    display: grid;
    gap: 0.4rem;
    padding: 1.5rem;
    border-radius: 22px;
    background: rgba(10, 16, 28, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
    color: rgba(203, 213, 243, 0.76);
    font-size: 0.9rem;
}

.commerce-guidance strong {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f1f5ff;
}

.commerce-guidance a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.commerce-shell__panel {
    background: rgba(10, 16, 28, 0.82);
    border-radius: 28px;
    padding: clamp(2rem, 5vw, 3rem);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 28px 50px rgba(15, 23, 42, 0.1);
    display: grid;
    gap: 2rem;
    align-content: start;
}

.commerce-shell__aside {
    background: transparent;
}

.commerce-empty {
    text-align: center;
    display: grid;
    gap: 1rem;
    justify-items: center;
}

.commerce-empty h2 {
    margin: 0;
    font-size: 1.6rem;
    color: #f1f5ff;
}

.commerce-empty p {
    margin: 0;
    color: rgba(203, 213, 243, 0.76);
    max-width: 48ch;
}

.commerce-form {
    display: grid;
    gap: 2.2rem;
}

.commerce-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1rem 0 0;
}

.commerce-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.18);
    color: #e2e8f0;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.commerce-badge::before {
    content: '✦';
    color: #facc15;
    font-size: 0.75rem;
}

.commerce-tip {
    margin: 1rem 0 0;
    font-size: 0.82rem;
    color: rgba(203, 213, 243, 0.72);
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.commerce-tip::before {
    content: 'ℹ︎';
    font-size: 0.95rem;
    color: #60a5fa;
    opacity: 0.85;
}

.commerce-timeline {
    list-style: none;
    margin: 1.6rem 0;
    padding: 0;
    display: grid;
    gap: 1.1rem;
}

.commerce-timeline__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.commerce-timeline__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.35), rgba(8, 13, 26, 0.6));
    display: grid;
    place-items: center;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    color: #f8fafc;
    border: 1px solid rgba(37, 99, 235, 0.35);
    box-shadow: 0 8px 18px rgba(4, 7, 15, 0.42);
}

.commerce-timeline__content {
    display: grid;
    gap: 0.35rem;
}

.commerce-timeline__content strong {
    font-size: 0.92rem;
    color: #f1f5ff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.commerce-timeline__content p {
    margin: 0;
    font-size: 0.84rem;
    color: rgba(203, 213, 243, 0.7);
    line-height: 1.6;
}

.commerce-delivery {
    display: grid;
    gap: 1rem;
    margin: 1.6rem 0;
}

.commerce-delivery__card {
    display: grid;
    gap: 0.75rem;
    padding: 1.3rem 1.5rem;
    border-radius: 22px;
    background: rgba(8, 13, 26, 0.86);
    border: 1px solid rgba(37, 99, 235, 0.14);
    box-shadow: 0 20px 40px rgba(4, 7, 15, 0.34);
}

.commerce-delivery__card h3 {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #f1f5ff;
}

.commerce-delivery__card p {
    margin: 0;
    font-size: 0.88rem;
    color: rgba(203, 213, 243, 0.76);
    line-height: 1.6;
}

.commerce-delivery__card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.4rem;
}

.commerce-delivery__card li {
    position: relative;
    padding-inline-start: 1.2rem;
    font-size: 0.8rem;
    color: rgba(203, 213, 243, 0.72);
    line-height: 1.45;
}

.commerce-delivery__card li::before {
    content: '•';
    position: absolute;
    inset-inline-start: 0;
    color: #60a5fa;
}

@media (min-width: 720px) {
    .commerce-delivery {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

.commerce-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.2rem;
}

.commerce-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1.4rem;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(10, 16, 28, 0.82);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
    padding: 1.4rem;
    align-items: center;
}

.commerce-item__media {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f3f4f6;
}

.commerce-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.commerce-item__body {
    display: grid;
    gap: 1rem;
}

.commerce-item__meta {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #94a3b8;
}

.commerce-item__body h2 {
    margin: 0.2rem 0 0;
    font-size: 1.1rem;
    color: #f1f5ff;
}

.commerce-item__controls {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(auto-fit, minmax(120px, auto));
    align-items: center;
}

.commerce-item__price,
.commerce-item__total {
    font-weight: 600;
    color: #f1f5ff;
}

.commerce-item__quantity {
    display: grid;
    gap: 0.3rem;
    font-size: 0.72rem;
    color: #6b7280;
}

.commerce-item__quantity input {
    width: 80px;
    padding: 0.55rem 0.6rem;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #f8f9fb;
    color: #f1f5ff;
}

.commerce-item__remove {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
}

.commerce-addon {
    display: grid;
    gap: 1.4rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 1.4rem;
}

.commerce-addon header {
    display: grid;
    gap: 0.4rem;
    color: rgba(203, 213, 243, 0.76);
}

.commerce-addon h3 {
    margin: 0;
    color: #f1f5ff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
}

.commerce-addon__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    color: rgba(203, 213, 243, 0.76);
}

.commerce-addon__message {
    display: grid;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: rgba(203, 213, 243, 0.76);
}

.commerce-addon__message textarea {
    min-height: 100px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #f8f9fb;
    padding: 0.75rem 1rem;
    color: #f1f5ff;
}

.commerce-hint {
    margin: 0;
    font-size: 0.8rem;
    color: #6b7280;
}

.commerce-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.commerce-summary {
    background: rgba(10, 16, 28, 0.82);
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 28px 48px rgba(15, 23, 42, 0.08);
    padding: 2.4rem;
    display: grid;
    gap: 1.4rem;
}

.commerce-summary h2 {
    margin: 0;
    font-size: 1.3rem;
    color: #f1f5ff;
}

.commerce-summary dl {
    margin: 0;
    display: grid;
    gap: 0.9rem;
}

.commerce-summary dl div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.9rem;
    color: rgba(203, 213, 243, 0.76);
}

.commerce-summary__total {
    font-size: 1.05rem;
    font-weight: 600;
    color: #f1f5ff;
}

.commerce-summary__tag {
    display: inline-block;
    margin-inline-start: 0.6rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: #1d4ed8;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.commerce-summary__note {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(203, 213, 243, 0.76);
    line-height: 1.6;
}

.commerce-form__field {
    display: grid;
    gap: 0.45rem;
}

.commerce-form__field span {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(203, 213, 243, 0.76);
}

.commerce-form__field input,
.commerce-form__field textarea {
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #f8f9fb;
    color: #f1f5ff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.commerce-form__field input:focus,
.commerce-form__field textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.commerce-fieldset {
    display: grid;
    gap: 1.4rem;
}

.commerce-fieldset header {
    display: grid;
    gap: 0.4rem;
    color: rgba(203, 213, 243, 0.76);
}

.commerce-fieldset h2 {
    margin: 0;
    font-size: 1.1rem;
    color: #f1f5ff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.commerce-fieldset__grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.commerce-form__field--wide textarea {
    min-height: 120px;
}

@media (max-width: 960px) {
    .commerce-shell__grid {
        grid-template-columns: 1fr;
    }

    .commerce-shell__summary {
        order: 2;
    }

    .commerce-shell__panel,
    .commerce-shell__aside {
        order: 1;
    }
}

@media (max-width: 700px) {
    .commerce-item {
        grid-template-columns: 1fr;
    }

    .commerce-item__controls {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

@media (max-width: 600px) {
    .commerce-form__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .commerce-form__actions .btn-primary,
    .commerce-form__actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

.auth-section {
    padding: 5.5rem 0;
}

.auth-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.2rem;
    align-items: center;
}

.auth-intro {
    display: grid;
    gap: 1.2rem;
}

.auth-eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(235, 241, 255, 0.55);
}

.auth-intro h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.auth-intro p {
    margin: 0;
    color: rgba(230, 236, 255, 0.72);
    max-width: 38ch;
}

.auth-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.7rem;
    font-size: 0.92rem;
    color: rgba(235, 241, 255, 0.78);
}

.auth-benefits li {
    position: relative;
    padding-inline-start: 1.4rem;
}

.auth-benefits li::before {
    content: "•";
    position: absolute;
    inset-inline-start: 0;
    color: var(--accent-strong);
    font-size: 1.2rem;
    line-height: 1;
}

.auth-card {
    background: rgba(6, 16, 32, 0.78);
    border-radius: 28px;
    padding: 3rem;
    border: 1px solid rgba(220, 184, 106, 0.22);
    box-shadow: 0 40px 120px rgba(4, 12, 28, 0.55);
    display: grid;
    gap: 1.8rem;
}

.auth-form {
    display: grid;
    gap: 1.4rem;
}

.auth-form label {
    display: grid;
    gap: 0.55rem;
}

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

.auth-form input {
    padding: 0.75rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(220, 184, 106, 0.22);
    background: rgba(5, 12, 28, 0.6);
    color: var(--ink);
}

.auth-form input:focus {
    outline: none;
    border-color: rgba(220, 184, 106, 0.6);
}

.auth-card .btn-primary {
    width: 100%;
    justify-content: center;
}

.auth-switch {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(225, 232, 253, 0.72);
    margin: 0;
}

.auth-switch a {
    color: var(--accent);
    font-weight: 600;
    margin-inline-start: 0.35rem;
}

@media (max-width: 900px) {
    .header-top__inner {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }

    .header-auth {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.6rem;
    }

    .header-main {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 1.6rem;
        text-align: center;
    }

    .primary-nav {
        justify-content: center;
        gap: 1.2rem;
    }

    .header-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .notification-dropdown {
        inset-inline-start: 50%;
        inset-inline-end: auto;
        transform: translateX(-50%);
        min-width: min(320px, 90vw);
    }

    .auth-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.4rem;
    }

    .auth-card {
        order: 1;
    }

    .auth-intro {
        order: 2;
    }

    .auth-benefits li {
        padding-inline-start: 1rem;
    }

    .hero-luxe {
        padding: 5.2rem 0;
    }

    .hero-luxe__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-luxe__copy {
        justify-items: center;
    }

    .hero-luxe__actions {
        justify-content: center;
    }

    .hero-luxe__stats {
        justify-content: center;
    }

    .hero-luxe__visual {
        margin: 0 auto;
        max-width: 360px;
    }

    .precision-suite__header,
    .duet-gallery__header,
    .heritage-ribbon__header {
        justify-items: center;
        text-align: center;
    }

    .duet-card {
        grid-template-columns: 1fr;
        gap: 1.4rem;
        text-align: center;
    }

    .duet-card__side {
        justify-items: center;
    }

    .duet-card__divider {
        display: none;
    }

    .salon-invite__wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .salon-invite__wrap .btn-outline {
        justify-self: center;
    }

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

    .hero-feature {
        order: -1;
    }

    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

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

    .cart-item-image img {
        height: auto;
    }

    .cart-actions,
    .checkout-submit {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 600px) {
    .auth-card {
        padding: 2.2rem;
    }

    .auth-form__row {
        grid-template-columns: 1fr;
    }

    .header-pod--cart {
        width: 100%;
        justify-content: center;
    }

    .header-pods {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .header-brand__logo {
        width: 68px;
        height: 68px;
    }

    .header-brand__name {
        font-size: 0.95rem;
        letter-spacing: 0.24em;
    }

    .footer-main {
        justify-items: center;
        text-align: center;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .hero-luxe__visual {
        padding: 1.6rem;
    }

    .hero-luxe__visual img {
        max-width: min(280px, 100%);
    }

    .precision-card {
        grid-template-rows: 180px 1fr;
    }

    .duet-gallery__grid,
    .heritage-ribbon__grid {
        grid-template-columns: 1fr;
    }

.collection-showcase__grid {
    grid-template-columns: 1fr;
}

.collection-card {
    grid-template-columns: 1fr;
    text-align: center;
}

.collection-card figure {
    justify-self: center;
}
}

.gender-hero {
    position: relative;
    padding: 5rem 0;
    background: radial-gradient(circle at 15% 20%, rgba(46, 66, 109, 0.45), transparent 55%), #050a14;
    overflow: hidden;
}

.gender-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    filter: saturate(1.05);
}

.gender-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(5, 9, 18, 0.95) 0%, rgba(8, 17, 32, 0.85) 45%, rgba(9, 18, 34, 0.6) 100%);
    pointer-events: none;
}

.gender-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(260px, 340px);
    gap: 3rem;
    align-items: stretch;
    z-index: 1;
}

.gender-hero__copy {
    display: grid;
    gap: 1.8rem;
    color: rgba(237, 244, 255, 0.92);
}

.gender-hero__copy h1 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.7rem, 5vw, 3.8rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f4f6fc;
}

.gender-hero__copy p {
    margin: 0;
    color: rgba(214, 223, 241, 0.76);
    line-height: 1.8;
    max-width: 46ch;
}

.gender-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.gender-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.gender-hero__media-card {
    background: rgba(8, 14, 28, 0.88);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 30px 70px rgba(3, 7, 15, 0.6);
    border: 1px solid rgba(87, 115, 177, 0.28);
    display: grid;
    gap: 1.2rem;
    align-content: start;
    color: rgba(226, 234, 255, 0.92);
}

.gender-hero__media-card strong {
    font-size: 1.3rem;
    letter-spacing: 0.05em;
}

.gender-hero__media-card figure {
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(14, 22, 39, 0.82);
    aspect-ratio: 4 / 5;
}

.gender-hero__media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gender-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    background: rgba(80, 118, 235, 0.22);
    color: #c7d4ff;
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.gender-hero__media-status {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(186, 201, 229, 0.75);
}

.gender-hero__media-price {
    font-size: 1.12rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #e7ecf8;
}

.gender-hero__portals {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.collection-entry {
    position: relative;
    display: grid;
    grid-template-rows: 200px auto;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: rgba(8, 14, 27, 0.82);
    border: 1px solid rgba(87, 115, 177, 0.25);
    box-shadow: 0 24px 52px rgba(5, 10, 20, 0.55);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-entry:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 68px rgba(5, 10, 20, 0.65);
}

.collection-entry__media {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: saturate(1.08);
}

.collection-entry__body {
    padding: 1.7rem 1.9rem 2rem;
    display: grid;
    gap: 0.7rem;
    color: rgba(226, 233, 247, 0.92);
}

.collection-entry__body span:first-child {
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(167, 184, 216, 0.62);
}

.collection-entry__body h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f4f6fc;
}

.collection-entry__body p {
    margin: 0;
    color: rgba(200, 211, 233, 0.78);
    line-height: 1.6;
}
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.82rem 1.9rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.76rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #d39b42 0%, #f4dca0 100%);
    color: #0a101d;
    box-shadow: 0 18px 40px rgba(211, 155, 66, 0.32);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e0b35b 0%, #ffeac2 100%);
    box-shadow: 0 22px 52px rgba(211, 155, 66, 0.4);
}

.btn-primary--ghost {
    background: transparent;
    color: #f4f6fc;
    border: 1px solid rgba(211, 155, 66, 0.5);
    box-shadow: none;
}

.btn-primary--ghost:hover {
    background: rgba(211, 155, 66, 0.12);
}

.btn-secondary {
    background: rgba(9, 14, 28, 0.75);
    color: #f4f6fc;
    border: 1px solid rgba(98, 120, 178, 0.35);
    box-shadow: 0 16px 32px rgba(2, 6, 14, 0.55);
}

.btn-secondary:hover {
    background: rgba(14, 22, 43, 0.9);
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 1.2rem;
    border-radius: 999px;
    background: rgba(8, 14, 27, 0.7);
    color: rgba(233, 239, 255, 0.82);
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(87, 115, 177, 0.25);
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.chip:hover {
    border-color: rgba(211, 155, 66, 0.6);
    background: rgba(211, 155, 66, 0.18);
    color: #f4f1e6;
}

.catalog-hero {
    position: relative;
    padding: 4.5rem 0 3rem;
    background: radial-gradient(circle at top, rgba(32, 45, 78, 0.6), rgba(5, 12, 28, 0.95));
    border-bottom: 1px solid rgba(220, 184, 106, 0.1);
    overflow: hidden;
}

.catalog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(220, 184, 106, 0.12), transparent 55%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.catalog-hero__grid {
    position: relative;
    display: grid;
    gap: 2.4rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
}

.catalog-hero__copy h1 {
    margin: 0.6rem 0 1rem;
    font-size: clamp(2.2rem, 3vw, 3rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalog-hero__copy p {
    margin: 0;
    max-width: 520px;
    color: rgba(235, 241, 255, 0.72);
    line-height: 1.7;
}

.catalog-hero__stats {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.stat-card {
    min-width: 160px;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    background: rgba(5, 12, 28, 0.65);
    border: 1px solid rgba(220, 184, 106, 0.16);
    box-shadow: 0 18px 36px rgba(5, 12, 28, 0.45);
    display: grid;
    gap: 0.35rem;
}

.stat-card strong {
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    color: rgba(243, 246, 255, 0.96);
}

.stat-card span {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(235, 241, 255, 0.58);
}

.catalog-hero__spotlight {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: minmax(0, 1fr);
    background: rgba(5, 12, 28, 0.7);
    border-radius: 24px;
    border: 1px solid rgba(220, 184, 106, 0.18);
    padding: 1.6rem;
    box-shadow: 0 24px 46px rgba(5, 12, 28, 0.45);
}

.catalog-hero__spotlight figure {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(220, 184, 106, 0.18);
}

.catalog-hero__spotlight img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.catalog-hero__spotlight-body {
    display: grid;
    gap: 0.8rem;
}

.catalog-hero__spotlight-body strong {
    font-size: 1.35rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(243, 246, 255, 0.96);
}

.catalog-hero__spotlight-body p {
    margin: 0;
    color: rgba(235, 241, 255, 0.7);
    line-height: 1.65;
}

.catalog-hero__spotlight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.price-tag {
    font-size: 0.88rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(247, 222, 162, 0.95);
}

.catalog-toolbar {
    padding: 1.8rem 0;
    background: rgba(5, 12, 28, 0.82);
    border-bottom: 1px solid rgba(220, 184, 106, 0.12);
}

.catalog-toolbar__inner {
    display: grid;
    gap: 1.4rem;
    justify-items: center;
}

.catalog-toolbar__summary {
    display: grid;
    gap: 0.35rem;
    justify-items: center;
}

.catalog-toolbar__summary strong {
    font-size: 1.4rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(243, 246, 255, 0.95);
}

.catalog-toolbar__summary span {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(235, 241, 255, 0.58);
}

.catalog-toolbar__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
}

.chip__count {
    margin-left: 0.5rem;
    font-size: 0.7rem;
    opacity: 0.7;
}

.chip--vip {
    border-color: rgba(220, 184, 106, 0.55);
    background: rgba(220, 184, 106, 0.18);
    color: rgba(247, 222, 162, 0.95);
}

.chip--status {
    border-color: rgba(120, 180, 255, 0.3);
    background: rgba(120, 180, 255, 0.16);
    color: rgba(203, 219, 255, 0.9);
}

.chip--low_stock {
    border-color: rgba(234, 179, 8, 0.45);
    background: rgba(234, 179, 8, 0.18);
    color: rgba(255, 244, 193, 0.95);
}

.chip--sold_out {
    border-color: rgba(239, 68, 68, 0.45);
    background: rgba(239, 68, 68, 0.18);
    color: rgba(255, 226, 226, 0.95);
}

.chip--preorder {
    border-color: rgba(56, 189, 248, 0.45);
    background: rgba(56, 189, 248, 0.18);
    color: rgba(224, 248, 255, 0.95);
}

.chip--backorder {
    border-color: rgba(45, 212, 191, 0.45);
    background: rgba(45, 212, 191, 0.18);
    color: rgba(209, 250, 229, 0.95);
}

.gender-intro {
    position: relative;
    padding: 4.2rem 0 3.4rem;
    background: radial-gradient(circle at top, rgba(24, 36, 70, 0.6), rgba(5, 12, 28, 0.95));
    overflow: hidden;
}

.gender-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(220, 184, 106, 0.18), transparent 55%), var(--gender-backdrop, rgba(5, 12, 28, 0.4));
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    mix-blend-mode: screen;
    pointer-events: none;
}

.gender-intro__inner {
    position: relative;
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 1.2rem;
}

.gender-intro__inner h1 {
    margin: 0.35rem 0 0;
    font-size: clamp(2rem, 3vw, 2.8rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gender-intro__inner p {
    margin: 0;
    max-width: 540px;
    color: rgba(235, 241, 255, 0.75);
    line-height: 1.7;
}

.gender-intro__chips {
    margin-top: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.gender-options {
    padding: 3.2rem 0 4.2rem;
    background: linear-gradient(180deg, rgba(4, 12, 28, 0.95), rgba(8, 16, 32, 0.96));
}

.gender-options__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.catalog-simple {
    padding: 3.5rem 0 4.5rem;
    background: linear-gradient(180deg, rgba(4, 12, 28, 0.96), rgba(8, 16, 32, 0.97));
}

.catalog-simple__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 2.6rem;
}

.catalog-simple__header h1 {
    margin: 0.35rem 0 0;
    font-size: clamp(2rem, 2.8vw, 2.6rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.catalog-simple__meta {
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(203, 213, 243, 0.72);
}

.catalog-simple__grid {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.catalog-simple__card {
    display: grid;
    gap: 1.4rem;
    background: rgba(5, 12, 28, 0.7);
    border-radius: 26px;
    border: 1px solid rgba(220, 184, 106, 0.16);
    padding: 1.5rem;
    box-shadow: 0 20px 44px rgba(5, 12, 28, 0.45);
}

.catalog-simple__thumb {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(220, 184, 106, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.catalog-simple__thumb img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.catalog-simple__body {
    display: grid;
    gap: 0.8rem;
}

.catalog-simple__body h2 {
    margin: 0;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(243, 246, 255, 0.96);
}

.catalog-simple__body p {
    margin: 0;
    color: rgba(235, 241, 255, 0.72);
    line-height: 1.65;
}

.catalog-simple__meta-line {
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(203, 213, 243, 0.58);
}

.catalog-simple__pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    font-size: 0.92rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.catalog-simple__pricing .price-current {
    color: rgba(247, 222, 162, 0.95);
}

.catalog-simple__pricing .price-old {
    color: rgba(203, 213, 243, 0.5);
    text-decoration: line-through;
}

.catalog-simple__footer {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.catalog-simple__footer .chip {
    letter-spacing: 0.18em;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(220, 184, 106, 0.88);
    text-decoration: none;
}

.link-arrow::after {
    content: '›';
    font-size: 0.95rem;
}

.price-old {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(203, 213, 243, 0.58);
    text-decoration: line-through;
}

.price-current {
    display: block;
}

.catalog-simple__placeholder {
    text-align: center;
    padding: 3rem 1rem;
    border-radius: 26px;
    background: rgba(5, 12, 28, 0.65);
    border: 1px solid rgba(220, 184, 106, 0.14);
    box-shadow: 0 24px 46px rgba(5, 12, 28, 0.45);
    color: rgba(235, 241, 255, 0.75);
    display: grid;
    gap: 0.8rem;
}
.option-card {
    display: grid;
    gap: 1.3rem;
    background: rgba(5, 12, 28, 0.7);
    border-radius: 26px;
    border: 1px solid rgba(220, 184, 106, 0.16);
    padding: 1.6rem;
    box-shadow: 0 24px 48px rgba(5, 12, 28, 0.45);
}

.option-card figure {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(220, 184, 106, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.option-card figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.option-card__body {
    display: grid;
    gap: 1rem;
}

.option-card__body h2 {
    margin: 0.35rem 0 0;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(243, 246, 255, 0.96);
}

.option-card__body p {
    margin: 0;
    color: rgba(235, 241, 255, 0.7);
    line-height: 1.65;
}

.option-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(203, 213, 243, 0.76);
}

.option-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(203, 213, 243, 0.76);
}

.option-card__footer .btn-secondary {
    min-width: 180px;
    justify-content: center;
}

.option-card__count {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(203, 213, 243, 0.58);
}

.option-card__topline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
    justify-content: space-between;
}

.option-card {
    position: relative;
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: linear-gradient(135deg, rgba(220, 184, 106, 0.22), transparent 55%);
    pointer-events: none;
}

.option-card:hover::before {
    opacity: 0.6;
}

.option-card--watch {
    border-color: rgba(95, 143, 255, 0.22);
}

.option-card--watch::before {
    background: linear-gradient(135deg, rgba(93, 154, 255, 0.2), transparent 50%);
}

.option-card--parfum {
    border-color: rgba(220, 184, 106, 0.2);
}

.option-card--parfum::before {
    background: linear-gradient(135deg, rgba(220, 184, 106, 0.22), transparent 50%);
}

.gender-hero__portals {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.gender-hero__portals {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.collection-entry {
    position: relative;
    display: grid;
    grid-template-rows: 180px auto;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: rgba(10, 16, 28, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-entry:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
}

.collection-entry__media {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: saturate(1.05);
}

.collection-entry__body {
    padding: 1.6rem 1.8rem 1.8rem;
    display: grid;
    gap: 0.65rem;
}

.collection-entry__body span:first-child {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #6b7280;
}

.collection-entry__body h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1f2933;
}

.collection-entry__body p {
    margin: 0;
    color: rgba(203, 213, 243, 0.76);
    line-height: 1.6;
}

@media (max-width: 960px) {
    .gender-hero__inner {
        grid-template-columns: 1fr;
    }

    .gender-hero__media-card {
        order: -1;
    }
}

.cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    background: rgba(220, 184, 106, 0.18);
    border: 1px solid rgba(220, 184, 106, 0.32);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.gender-hero__spotlight {
    display: grid;
    gap: 1.4rem;
}

.gender-spotlight-card {
    display: grid;
    grid-template-columns: minmax(160px, 200px) 1fr;
    gap: 1.4rem;
    padding: 1.8rem;
    border-radius: var(--radius-lg);
    background: rgba(6, 16, 32, 0.7);
    border: 1px solid rgba(220, 184, 106, 0.16);
    box-shadow: var(--shadow);
}

.gender-spotlight-card figure {
    margin: 0;
    display: grid;
    place-items: center;
    background: rgba(4, 12, 28, 0.6);
    border-radius: var(--radius-md);
    padding: 0.6rem;
}

.gender-spotlight-card img {
    width: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.gender-spotlight-card h2 {
    margin: 0.4rem 0 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.spotlight-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(217, 178, 83, 0.14);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(247, 222, 162, 0.85);
}

.spotlight-price {
    display: inline-block;
    margin-top: 0.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(247, 222, 162, 0.85);
}

.store-badges {
    padding: 1.8rem 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    margin-bottom: 1.8rem;
}

.store-badges__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.store-badges__item {
    padding: 1.2rem 1.4rem;
    border-radius: var(--radius-lg);
    background: rgba(10, 16, 28, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 0.35rem;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.store-badges__item strong {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1f2933;
}

.store-badges__item span {
    font-size: 0.85rem;
    color: rgba(203, 213, 243, 0.76);
}

.catalog-utility {
    padding: 2.5rem 0 2rem;
    background: #f9fafc;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    margin-bottom: 3rem;
}

.catalog-utility__summary {
    display: grid;
    gap: 0.6rem;
    text-align: center;
    justify-items: center;
    max-width: 680px;
    margin: 0 auto 1.6rem;
}

.catalog-utility__summary p {
    margin: 0;
    color: rgba(203, 213, 243, 0.76);
}

.catalog-utility__controls {
    display: grid;
    gap: 1.2rem;
    align-items: center;
}

.catalog-tabs {
    display: flex;
    gap: 0.7rem;
    justify-content: center;
    flex-wrap: wrap;
}

.catalog-tab {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(10, 16, 28, 0.82);
    text-decoration: none;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.68rem;
    color: #1f2933;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.catalog-tab:hover,
.catalog-tab:focus-visible {
    border-color: rgba(37, 99, 235, 0.35);
    background: rgba(37, 99, 235, 0.12);
    color: #1d4ed8;
}

.catalog-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.catalog-action {
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(10, 16, 28, 0.82);
    color: #1f2933;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.66rem;
    cursor: pointer;
}

.catalog-action:hover,
.catalog-action:focus-visible {
    border-color: rgba(37, 99, 235, 0.28);
    color: #1d4ed8;
}

.catalog-sort {
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6b7280;
}

.catalog-sort__value {
    color: #1f2933;
}

@media (min-width: 900px) {
    .catalog-utility__controls {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .catalog-tabs {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .catalog-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.4rem;
        scroll-snap-type: x proximity;
    }

    .catalog-tabs .catalog-tab {
        scroll-snap-align: center;
    }
}

@media (max-width: 680px) {
    .catalog-utility {
        margin-bottom: 2.4rem;
    }

    .store-badges {
        padding: 1.2rem 0;
        margin-bottom: 1.4rem;
    }

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

.gender-curations {
    padding: 4rem 0;
}

.gender-curations__header {
    display: grid;
    gap: 0.6rem;
    text-align: center;
    justify-items: center;
    margin-bottom: 2.4rem;
}

.gender-curations__grid {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.curation-card {
    background: rgba(10, 16, 28, 0.82);
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
    display: grid;
    grid-template-rows: 220px auto;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.curation-card figure {
    margin: 0;
}

.curation-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.curation-body {
    padding: 1.6rem 1.8rem 1.8rem;
    display: grid;
    gap: 0.6rem;
}

.curation-type {
    font-size: 0.68rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #6b7280;
}

.curation-body strong {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #1f2933;
}

.curation-body p {
    margin: 0;
    color: rgba(203, 213, 243, 0.76);
}

.curation-price {
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #2563eb;
}

.gender-catalog {
    padding: 4.8rem 0 5.5rem;
}

.gender-columns {
    display: grid;
    gap: 2.4rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.catalog-column {
    background: rgba(10, 16, 28, 0.82);
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 2.8rem;
    display: grid;
    gap: 2rem;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}

.catalog-column header h3 {
    margin: 0.4rem 0 0;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1f2933;
}

.catalog-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.catalog-card {
    display: grid;
    grid-template-rows: auto 1fr auto;
    background: rgba(10, 16, 28, 0.82);
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 44px rgba(15, 23, 42, 0.12);
}

.catalog-card__thumb {
    position: relative;
    aspect-ratio: 4 / 5;
    background: #f3f4f6;
    overflow: hidden;
}

.catalog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.catalog-card:hover .catalog-card__thumb img {
    transform: scale(1.05);
}

.catalog-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: rgba(16, 185, 129, 0.88);
    color: #ffffff;
}

.catalog-card__badge--low_stock,
.catalog-card__badge--backorder,
.catalog-card__badge--preorder,
.catalog-card__badge--sold_out {
    background: rgba(37, 99, 235, 0.85);
}

.catalog-card__badge--low_stock {
    background: rgba(234, 179, 8, 0.9);
}

.catalog-card__badge--sold_out {
    background: rgba(239, 68, 68, 0.85);
}

.catalog-card__badge--preorder {
    background: rgba(14, 165, 233, 0.85);
}

.catalog-card__badge--backorder {
    background: rgba(20, 184, 166, 0.85);
}

.catalog-card__body {
    padding: 1.6rem 1.8rem 1.2rem;
    display: grid;
    gap: 0.6rem;
}

.catalog-card__body strong {
    text-transform: none;
    letter-spacing: 0.03em;
    font-size: 1.05rem;
    color: #111827;
}

.catalog-card__body p {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
}

.catalog-card__meta {
    font-size: 0.64rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6b7280;
}

.catalog-card__footer {
    padding: 0 1.8rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.catalog-card__price {
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #111827;
}

.catalog-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #2563eb;
}

.catalog-card__cta::after {
    content: '›';
    font-size: 0.88rem;
}
.gender-curations {
    padding: 4.5rem 0;
}

.gender-curations__header {
    display: grid;
    gap: 0.6rem;
    text-align: center;
    justify-items: center;
    margin-bottom: 2.5rem;
}

.gender-curations__grid {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.curation-card {
    background: rgba(6, 16, 32, 0.68);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(220, 184, 106, 0.14);
    overflow: hidden;
    display: grid;
    grid-template-rows: 200px auto;
    box-shadow: var(--shadow);
}

.curation-card figure {
    margin: 0;
}

.curation-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.curation-body {
    padding: 1.4rem 1.6rem 1.6rem;
    display: grid;
    gap: 0.5rem;
}

.curation-type {
    font-size: 0.68rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(235, 241, 255, 0.6);
}

.curation-body strong {
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.curation-body p {
    margin: 0;
    color: rgba(235, 241, 255, 0.7);
}

.curation-price {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 222, 162, 0.8);
}

.gender-catalog {
    padding: 5rem 0 6rem;
}

.gender-columns {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.catalog-column {
    background: rgba(6, 16, 32, 0.68);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(220, 184, 106, 0.16);
    padding: 2.4rem;
    display: grid;
    gap: 1.6rem;
    box-shadow: var(--shadow);
}

.catalog-column header h3 {
    margin: 0.4rem 0 0;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.catalog-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.catalog-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.2rem;
    padding: 1.2rem;
    border-radius: 20px;
    background: rgba(5, 12, 28, 0.6);
    border: 1px solid rgba(220, 184, 106, 0.12);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 54px rgba(5, 12, 28, 0.45);
}

.catalog-card figure {
    margin: 0;
}

.catalog-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(220, 184, 106, 0.18);
}

.catalog-card strong {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(243, 246, 255, 0.94);
}

.catalog-card p {
    margin: 0.4rem 0;
    color: rgba(235, 241, 255, 0.7);
}

.catalog-card__body {
    display: grid;
    gap: 0.4rem;
}

.catalog-card__meta {
    font-size: 0.64rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(235, 241, 255, 0.5);
}

.catalog-card__price {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(247, 222, 162, 0.92);
}

.catalog-card__footer {
    margin-top: auto;
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.catalog-card__cta {
    margin-left: auto;
    font-size: 0.64rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(220, 184, 106, 0.85);
}

.catalog-card__cta::after {
    content: '›';
    margin-left: 0.35rem;
    font-size: 0.9rem;
}

.browse-row {
    margin-top: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(203, 213, 243, 0.76);
}

@media (max-width: 900px) {
    .gender-spotlight-card {
        grid-template-columns: 1fr;
    }

    .catalog-simple__header {
        justify-content: center;
        text-align: center;
    }

    .catalog-simple__meta {
        width: 100%;
        text-align: center;
    }

    .catalog-simple__grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .gender-intro {
        padding: 3.2rem 0 2.6rem;
    }

    .gender-options__grid {
        grid-template-columns: 1fr;
    }

    .option-card__meta {
        justify-content: center;
    }

    .option-card__footer {
        justify-content: center;
    }

    .option-card__topline {
        justify-content: center;
    }

    .catalog-hero {
        padding: 3.2rem 0 2.4rem;
    }

    .catalog-hero__grid {
        grid-template-columns: 1fr;
    }

    .catalog-hero__spotlight {
        grid-template-columns: 1fr;
    }

    .catalog-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .catalog-card figure {
        justify-self: center;
    }

    .catalog-toolbar__inner {
        justify-items: stretch;
    }

}

@media (max-width: 680px) {
    .gender-hero {
        padding: 4.5rem 0;
    }

    .gender-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .collection-entry {
        grid-template-rows: 180px auto;
    }
}


.cart {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: linear-gradient(160deg, #04070f 0%, #060b19 100%);
}

.cart__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    align-items: start;
}

.cart__main {
    display: grid;
    gap: 1.8rem;
    background: rgba(10, 16, 28, 0.84);
    border-radius: 18px;
    padding: clamp(1.8rem, 4vw, 2.4rem);
    border: 1px solid rgba(37, 99, 235, 0.08);
    box-shadow: 0 28px 60px rgba(4, 7, 15, 0.45);
    color: rgba(226, 232, 240, 0.88);
}

.cart__header h1 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f1f5ff;
}

.cart__header p {
    margin: 0.4rem 0 0;
    color: rgba(203, 213, 243, 0.7);
    line-height: 1.6;
}

.cart-progress {
    margin: 0;
    justify-content: flex-start;
    padding: 0;
}

.cart-empty {
    display: grid;
    gap: 1rem;
    text-align: center;
    padding: 3rem 1.5rem;
    border: 1px dashed rgba(148, 163, 184, 0.35);
    border-radius: 16px;
    background: rgba(12, 18, 32, 0.76);
}

.cart-empty h2 {
    margin: 0;
    font-size: 1.4rem;
    color: #f8fafc;
}

.cart-empty p {
    margin: 0;
    color: rgba(203, 213, 243, 0.72);
    max-width: 46ch;
    justify-self: center;
}

.cart-form {
    display: grid;
    gap: 1.8rem;
}

.cart-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.2rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 1.2rem;
    padding: 1.2rem;
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 14px;
    background: rgba(8, 13, 26, 0.88);
}

.cart-item__media {
    width: 96px;
    height: 96px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(148, 163, 184, 0.18);
}

.cart-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.cart-item__info h2 {
    margin: 0;
    font-size: 1rem;
    color: #f1f5ff;
}

.cart-item__sku {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(148, 163, 184, 0.7);
}

.cart-item__pricing {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: flex-end;
    justify-content: space-between;
}

.cart-item__quantity {
    display: grid;
    gap: 0.35rem;
    font-size: 0.78rem;
    color: rgba(203, 213, 243, 0.7);
}

.cart-item__quantity input {
    width: 82px;
    padding: 0.55rem 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    background: rgba(15, 23, 42, 0.8);
    color: #f8fafc;
}

.cart-item__amounts {
    display: flex;
    gap: 1.4rem;
}

.cart-item__amounts > div {
    display: grid;
    gap: 0.25rem;
}

.cart-item__label {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.7);
}

.cart-item__price,
.cart-item__line {
    font-weight: 600;
    font-size: 0.95rem;
    color: #f8fafc;
}

.cart-item__remove {
    justify-self: flex-start;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f97316;
    cursor: pointer;
}

.cart-item__remove:hover {
    color: #ea580c;
}

.cart-options {
    display: grid;
    gap: 1rem;
    padding: 1.4rem 1.6rem;
    border-radius: 14px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    background: rgba(8, 13, 26, 0.85);
}

.cart-options header h3 {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f5f5ff;
}

.cart-options header p {
    margin: 0.3rem 0 0;
    color: rgba(203, 213, 243, 0.7);
    font-size: 0.9rem;
}

.cart-options__toggle {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.88rem;
    color: #e2e8f0;
}

.cart-options__message {
    display: grid;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: rgba(203, 213, 243, 0.72);
}

.cart-options__message textarea {
    min-height: 90px;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    background: rgba(15, 23, 42, 0.82);
    color: #f8fafc;
    resize: vertical;
}

.cart-options__message textarea::placeholder {
    color: rgba(148, 163, 184, 0.6);
}

.cart-hint {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(203, 213, 243, 0.68);
}

.cart-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: flex-end;
}

.cart__summary {
    position: sticky;
    top: 2rem;
}

.cart-summary {
    display: grid;
    gap: 1.4rem;
    background: rgba(10, 16, 28, 0.88);
    border-radius: 18px;
    padding: 1.8rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 24px 56px rgba(4, 7, 15, 0.42);
}

.cart-summary h2 {
    margin: 0;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f1f5ff;
}

.cart-summary__rows {
    display: grid;
    gap: 0.75rem;
}

.cart-summary__rows > div {
    display: flex;
    justify-content: space-between;
    font-size: 0.94rem;
    color: #f8fafc;
}

.cart-summary__rows dt {
    color: rgba(203, 213, 243, 0.7);
}

.cart-summary__rows dd {
    margin: 0;
    font-weight: 600;
}

.cart-summary__tag,
.checkout-summary__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.18);
    color: #60a5fa;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-inline-start: 0.4rem;
}

.cart-summary__total {
    font-size: 1.05rem;
    border-top: 1px solid rgba(37, 99, 235, 0.14);
    padding-top: 0.75rem;
}

.cart-summary__note {
    margin: 0;
    color: rgba(203, 213, 243, 0.68);
    font-size: 0.88rem;
    line-height: 1.6;
}

.cart-summary__cta {
    justify-self: stretch;
    text-align: center;
}

@media (max-width: 1024px) {
    .cart__grid {
        grid-template-columns: 1fr;
    }

    .cart__summary {
        position: static;
    }
}

@media (max-width: 720px) {
    .cart-item {
        grid-template-columns: 1fr;
    }

    .cart-item__media {
        width: 100%;
        height: 200px;
    }

    .cart-item__pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cart-item__amounts {
        width: 100%;
        justify-content: space-between;
    }

    .cart-actions {
        justify-content: stretch;
    }

    .cart-actions .btn-secondary,
    .cart-actions .btn-primary {
        flex: 1 1 48%;
        text-align: center;
    }
}

.checkout {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: linear-gradient(160deg, #050913 0%, #071125 100%);
}

.checkout__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    align-items: start;
}

.checkout__main {
    display: grid;
    gap: 1.8rem;
    background: rgba(7, 12, 24, 0.92);
    border-radius: 20px;
    padding: clamp(1.8rem, 4vw, 2.6rem);
    border: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: 0 28px 58px rgba(4, 7, 15, 0.5);
    color: rgba(226, 232, 240, 0.92);
}

.checkout__header {
    display: grid;
    gap: 0.75rem;
}

.checkout__eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.82);
}

.checkout__header h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f8fafc;
}

.checkout__header p {
    margin: 0;
    color: rgba(203, 213, 243, 0.75);
    line-height: 1.7;
    max-width: 60ch;
}

.checkout-progress {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.checkout-progress__item {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.78);
    background: rgba(12, 21, 38, 0.78);
    border: 1px solid rgba(37, 99, 235, 0.12);
    transition: transform 0.2s ease;
}

.checkout-progress__item::before {
    content: '';
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.55);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.18);
}

.checkout-progress__item--complete {
    background: rgba(37, 99, 235, 0.25);
    color: #e2e8f0;
    border-color: rgba(37, 99, 235, 0.38);
}

.checkout-progress__item--complete::before {
    background: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
}

.checkout-progress__item--current {
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.38), rgba(14, 23, 42, 0.88));
    color: #f8fafc;
    border-color: rgba(59, 130, 246, 0.45);
    box-shadow: 0 14px 30px rgba(6, 12, 24, 0.35);
}

.checkout-progress__item--current::before {
    background: #60a5fa;
    box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.28);
}

.checkout-form {
    display: grid;
    gap: 1.6rem;
}

.checkout-card {
    display: grid;
    gap: 1.4rem;
    padding: clamp(1.6rem, 4vw, 2rem);
    border-radius: 18px;
    background: rgba(9, 15, 28, 0.92);
    border: 1px solid rgba(37, 99, 235, 0.16);
    box-shadow: 0 20px 44px rgba(4, 7, 15, 0.42);
}

.checkout-card__header {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
    align-items: baseline;
}

.checkout-card__header h2 {
    margin: 0;
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f1f5ff;
}

.checkout-card__header p {
    margin: 0.2rem 0 0;
    color: rgba(148, 163, 184, 0.78);
    max-width: 56ch;
    font-size: 0.9rem;
    line-height: 1.6;
}

.checkout-card__grid {
    display: grid;
    gap: 1rem;
}

.checkout-card__grid--two {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.checkout-field {
    display: grid;
    gap: 0.5rem;
}

.checkout-field span {
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.78);
}

.checkout-field input,
.checkout-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    background: linear-gradient(160deg, rgba(7, 13, 24, 0.4) 0%, rgba(6, 9, 18, 0.9) 100%);
    color: #f8fafc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-field input::placeholder,
.checkout-field textarea::placeholder {
    color: rgba(148, 163, 184, 0.52);
}

.checkout-field input:focus,
.checkout-field textarea:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.7);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.checkout-field textarea {
    min-height: 120px;
    resize: vertical;
}

.checkout-field__hint {
    font-size: 0.78rem;
    color: rgba(148, 163, 184, 0.65);
    line-height: 1.5;
}

.checkout-field--span {
    grid-column: 1 / -1;
}

.checkout-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: flex-end;
    align-items: center;
}

.delivery-insights {
    display: grid;
    gap: 1.2rem;
    padding: 1.6rem 1.8rem;
    border-radius: 16px;
    background: rgba(8, 14, 28, 0.88);
    border: 1px solid rgba(37, 99, 235, 0.16);
    box-shadow: 0 20px 44px rgba(4, 7, 15, 0.36);
}

.delivery-insights--compact {
    padding: 1.2rem 1.4rem;
    border-radius: 14px;
    box-shadow: none;
}

.checkout-summary .delivery-insights--compact,
.cart-summary .delivery-insights--compact {
    background: rgba(8, 14, 28, 0.78);
    border-color: rgba(37, 99, 235, 0.12);
}

.delivery-insights__grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 720px) {
    .delivery-insights__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

.delivery-insights__card {
    display: grid;
    gap: 0.4rem;
}

.delivery-insights__card h3 {
    margin: 0;
    font-size: 0.88rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f1f5ff;
}

.delivery-insights__card p {
    margin: 0;
    color: rgba(203, 213, 243, 0.72);
    font-size: 0.88rem;
    line-height: 1.6;
}

.delivery-fees {
    display: grid;
    gap: 0.6rem;
    border-top: 1px solid rgba(37, 99, 235, 0.14);
    padding-top: 0.8rem;
}

.delivery-fees__title {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.78);
}

.delivery-fees__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.delivery-fees__list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.88rem;
    color: rgba(226, 232, 240, 0.9);
    gap: 0.75rem;
}

.delivery-fees__list li span {
    color: rgba(203, 213, 243, 0.72);
}

.delivery-fees__list li strong {
    font-weight: 600;
    color: #f8fafc;
}

.checkout__summary {
    position: sticky;
    top: 2rem;
    align-self: start;
}

.checkout-summary {
    display: grid;
    gap: 1.6rem;
    background: rgba(9, 15, 28, 0.92);
    border-radius: 18px;
    padding: 1.9rem;
    border: 1px solid rgba(37, 99, 235, 0.16);
    box-shadow: 0 24px 56px rgba(4, 7, 15, 0.42);
}

.checkout-summary__section {
    display: grid;
    gap: 0.75rem;
}

.checkout-summary__section-title {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.7);
}

.checkout-summary__items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.9rem;
}

.checkout-summary__items li {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 0.9rem;
    align-items: center;
}

.checkout-summary__thumb {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(37, 99, 235, 0.12);
}

.checkout-summary__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-summary__info {
    display: grid;
    gap: 0.35rem;
}

.checkout-summary__info strong {
    font-size: 0.92rem;
    color: #f1f5ff;
}

.checkout-summary__info span {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.7);
}

.checkout-summary__meta {
    display: grid;
    gap: 0.35rem;
    justify-items: end;
    text-align: end;
    font-size: 0.88rem;
    color: #f1f5ff;
}

.checkout-summary__totals {
    display: grid;
    gap: 0.75rem;
}

.checkout-summary__totals > div {
    display: flex;
    justify-content: space-between;
    font-size: 0.94rem;
    color: #f8fafc;
}

.checkout-summary__totals dt {
    color: rgba(203, 213, 243, 0.72);
}

.checkout-summary__totals dd {
    margin: 0;
    font-weight: 600;
}

.checkout-summary__total {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(37, 99, 235, 0.18);
    font-size: 1.05rem;
}

.checkout-summary__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.2);
    color: #cbd5f5;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.checkout-summary__note {
    margin: 0;
    color: rgba(203, 213, 243, 0.72);
    font-size: 0.88rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .checkout__grid {
        grid-template-columns: 1fr;
    }

    .checkout__summary {
        position: static;
    }
}


.track {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: linear-gradient(160deg, #04070f 0%, #070e1d 100%);
}

.track__inner {
    display: grid;
    gap: 2rem;
}

.track__header {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-end;
    background: rgba(7, 12, 24, 0.92);
    border-radius: 20px;
    padding: clamp(1.8rem, 4vw, 2.4rem);
    border: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: 0 26px 52px rgba(4, 7, 15, 0.48);
}

.track__header h1 {
    margin: 0.4rem 0 0;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f8fafc;
}

.track__header p {
    margin: 0.6rem 0 0;
    color: rgba(203, 213, 243, 0.76);
    max-width: 54ch;
    line-height: 1.6;
}

.track__eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.82);
}

.track-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: flex-end;
}

.track-filter label {
    display: grid;
    gap: 0.4rem;
}

.track-filter label span {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.78);
}

.track-filter input {
    padding: 0.75rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    background: rgba(6, 11, 22, 0.9);
    color: #f8fafc;
    min-width: 240px;
}

.track-filter__reset {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #60a5fa;
    text-decoration: none;
}

.track-empty {
    background: rgba(7, 12, 24, 0.88);
    border-radius: 20px;
    padding: clamp(2rem, 5vw, 3rem);
    border: 1px dashed rgba(96, 165, 250, 0.45);
    text-align: center;
    color: rgba(203, 213, 243, 0.82);
    display: grid;
    gap: 1rem;
    justify-items: center;
}

.track-empty h2 {
    margin: 0;
    font-size: 1.6rem;
    color: #f1f5ff;
}

.track-list {
    display: grid;
    gap: 1.8rem;
}

.track-card {
    display: grid;
    gap: 1.4rem;
    background: rgba(7, 12, 24, 0.92);
    border-radius: 22px;
    padding: clamp(1.8rem, 4vw, 2.4rem);
    border: 1px solid rgba(37, 99, 235, 0.16);
    box-shadow: 0 28px 56px rgba(4, 7, 15, 0.46);
}

.track-card__head {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: flex-start;
}

.track-card__order {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.72);
}

.track-card__head h2 {
    margin: 0.3rem 0 0;
    font-size: 1.8rem;
    color: #f8fafc;
}

.track-card__head p {
    margin: 0.4rem 0 0;
    color: rgba(203, 213, 243, 0.72);
    max-width: 48ch;
}

.track-card__meta {
    display: grid;
    gap: 0.4rem;
    justify-items: end;
    font-size: 0.88rem;
    color: rgba(203, 213, 243, 0.78);
    text-align: end;
}

.track-card__body {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: minmax(0, 1.4fr) minmax(240px, 1fr);
}

.track-timeline {
    background: rgba(6, 9, 18, 0.9);
    border-radius: 18px;
    padding: 1.6rem;
    border: 1px solid rgba(37, 99, 235, 0.16);
    display: grid;
    gap: 1rem;
}

.track-timeline h3 {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f1f5ff;
}

.track-timeline ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1rem;
}

.track-timeline__item {
    position: relative;
    padding-inline-start: 1.6rem;
    display: grid;
    gap: 0.35rem;
    color: rgba(203, 213, 243, 0.72);
}

.track-timeline__item::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 0.3rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.65);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.22);
}

.track-timeline__item.is-current::before {
    background: rgba(34, 197, 94, 0.85);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

.track-timeline__status {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f8fafc;
}

.track-timeline__note {
    font-size: 0.82rem;
    color: rgba(148, 163, 184, 0.78);
    border-inline-start: 2px solid rgba(96, 165, 250, 0.35);
    padding-inline-start: 0.6rem;
}

.track-details {
    display: grid;
    gap: 1.2rem;
}

.track-details h3 {
    margin: 0 0 0.4rem;
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f1f5ff;
}

.track-destination,
.track-items,
.track-hints {
    background: rgba(6, 9, 18, 0.9);
    border-radius: 16px;
    padding: 1.4rem 1.6rem;
    border: 1px solid rgba(37, 99, 235, 0.14);
}

.track-destination p {
    margin: 0;
    color: rgba(203, 213, 243, 0.75);
}

.track-destination__notes {
    margin: 0.6rem 0 0;
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.78);
}

.track-items ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.5rem;
    color: rgba(203, 213, 243, 0.8);
}

.track-items li {
    display: flex;
    justify-content: space-between;
    gap: 0.6rem;
}

.track-items li strong {
    font-weight: 600;
    color: #f8fafc;
}

.track-hints ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(203, 213, 243, 0.75);
}

@media (max-width: 1024px) {
    .track-card__body {
        grid-template-columns: 1fr;
    }

    .track-card__meta {
        justify-items: start;
        text-align: start;
    }
}

@media (max-width: 720px) {
    .track__header {
        flex-direction: column;
        align-items: stretch;
    }

    .track-filter input {
        min-width: 100%;
    }
}
@media (max-width: 720px) {
    .checkout__main {
        padding: 1.6rem;
    }

    .checkout-progress {
        gap: 0.6rem;
    }

    .checkout-card__grid--two {
        grid-template-columns: 1fr;
    }

    .checkout-field--span {
        grid-column: auto;
    }

    .checkout-form__actions {
        justify-content: stretch;
    }

    .checkout-form__actions .btn-secondary,
    .checkout-form__actions .btn-primary {
        flex: 1 1 48%;
        text-align: center;
    }

    .checkout-summary__items li {
        grid-template-columns: 56px 1fr;
        grid-template-areas:
            "thumb info"
            "thumb meta";
        align-items: start;
    }

    .checkout-summary__thumb {
        grid-area: thumb;
        width: 56px;
        height: 56px;
    }

    .checkout-summary__info {
        grid-area: info;
    }

    .checkout-summary__meta {
        grid-area: meta;
        justify-items: start;
        text-align: start;
    }
}
