:root {
    --lux-black: #111111;
    --lux-charcoal: #282522;
    --lux-gray: #6f6a63;
    --lux-light: #f7f3ed;
    --lux-border: rgba(17, 17, 17, 0.08);
    --lux-gold: #c6a768;
    --lux-gold-deep: #a98742;
    --lux-shadow: 0 32px 80px rgba(17, 17, 17, 0.08);
    --lux-shadow-soft: 0 18px 44px rgba(17, 17, 17, 0.06);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.storefront-body {
    margin: 0;
    min-height: 100vh;
    color: var(--lux-charcoal);
    background:
        radial-gradient(circle at top left, rgba(198, 167, 104, 0.12), transparent 26%),
        radial-gradient(circle at 85% 15%, rgba(169, 135, 66, 0.12), transparent 22%),
        linear-gradient(180deg, #faf7f1 0%, #ffffff 32%, #f8f5ef 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

.storefront-shell {
    width: min(1240px, calc(100vw - 40px));
    margin: 0 auto;
}

.announcement-bar {
    background: linear-gradient(90deg, var(--lux-black), #30291f);
    color: #f4e7c8;
    border-bottom: 1px solid rgba(198, 167, 104, 0.24);
}

.announcement-bar__inner {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.storefront-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.04);
}

.storefront-header__inner {
    display: flex;
    align-items: center;
    gap: 28px;
    justify-content: space-between;
    min-height: 88px;
}

.storefront-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.storefront-brand__badge {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(198, 167, 104, 0.9), rgba(17, 17, 17, 0.9));
    padding: 4px;
    box-shadow: 0 14px 24px rgba(17, 17, 17, 0.12);
}

.storefront-brand__badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
}

.storefront-brand__name {
    margin: 0;
    font-size: 1.75rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, var(--lux-black) 0%, var(--lux-gold) 46%, var(--lux-black) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.storefront-brand__tagline {
    display: block;
    margin-top: 4px;
    color: var(--lux-gray);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.storefront-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
}

.nav-item {
    position: relative;
}

.nav-item--mega {
    position: static;
    padding-bottom: 14px;
    margin-bottom: -14px;
}

.nav-link,
.nav-link--button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    color: var(--lux-charcoal);
    background: transparent;
    border: 0;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.nav-link:hover,
.nav-link--button:hover,
.nav-item:hover > .nav-link,
.nav-item:hover > .nav-link--button,
.nav-link.is-active,
.nav-link--button.is-active {
    color: var(--lux-gold-deep);
    border-bottom-color: var(--lux-gold);
}

.dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #dddddd;
    box-shadow: 0 18px 34px rgba(16, 16, 16, 0.1);
    border-radius: 0;
    padding: 28px;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-item--mega .dropdown-menu {
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: min(1120px, calc(100vw - 64px));
    min-width: 960px;
}

.nav-item--mega:hover .dropdown-menu,
.nav-item--mega:focus-within .dropdown-menu {
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) 220px 220px;
    gap: 22px;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mega-menu-label {
    margin: 0 0 2px;
    color: var(--lux-gray);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.mega-menu-link {
    color: var(--lux-charcoal);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.25s ease, transform 0.25s ease;
}

.mega-menu-link:hover {
    color: var(--lux-gold-deep);
    transform: translateX(3px);
}

.mega-menu-promo {
    position: relative;
    min-height: 248px;
    border-radius: 22px;
    padding: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.mega-menu-promo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.82));
}

.mega-menu-promo > * {
    position: relative;
    z-index: 1;
}

.mega-menu-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #f4dfb4;
}

.mega-menu-promo strong {
    font-size: 1.3rem;
    line-height: 1.2;
}

.mega-menu-promo span:last-child {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.9);
}

.storefront-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: #ffffff;
    color: var(--lux-charcoal);
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.icon-button:hover {
    transform: translateY(-1px);
    color: var(--lux-gold-deep);
    border-color: rgba(169, 135, 66, 0.3);
}

.cart-link {
    position: relative;
}

.cart-badge {
    position: absolute;
    right: -6px;
    top: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--lux-gold-deep);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
}

.account-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 0;
    color: var(--lux-charcoal);
    cursor: pointer;
    font-weight: 600;
}

.account-menu {
    min-width: 230px;
    right: 0;
    left: auto;
    padding: 8px 0;
    border-radius: 0;
}

.storefront-actions .nav-item {
    padding-bottom: 12px;
    margin-bottom: -12px;
}

.account-menu__link {
    display: block;
    padding: 11px 18px;
    color: #242424;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.account-menu__link:hover {
    background: #f5f4f1;
    color: #000000;
}

.account-menu__divider {
    height: 1px;
    margin: 7px 0;
    background: #dddddd;
}

.mobile-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 16px;
    background: #ffffff;
    color: var(--lux-charcoal);
}

.mobile-menu {
    display: none;
    border-top: 1px solid rgba(17, 17, 17, 0.06);
    background: rgba(255, 255, 255, 0.97);
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu__inner {
    padding: 18px 0 26px;
}

.mobile-menu__group {
    padding: 10px 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

.mobile-menu__group:last-child {
    border-bottom: 0;
}

.mobile-menu__title {
    margin: 0 0 10px;
    color: var(--lux-gray);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.mobile-menu__link {
    display: block;
    padding: 10px 0;
    color: var(--lux-charcoal);
    font-weight: 600;
}

.mobile-menu__link--muted {
    color: var(--lux-gray);
}

.storefront-main {
    padding-bottom: 64px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 74px 0 42px;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(198, 167, 104, 0.16), transparent 46%),
        radial-gradient(circle at 82% 18%, rgba(17, 17, 17, 0.06), transparent 20%);
    pointer-events: none;
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 28px;
    align-items: end;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
}

.page-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(17, 17, 17, 0.06);
    color: var(--lux-gold-deep);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: var(--lux-shadow-soft);
}

.page-hero h1 {
    margin: 18px 0 16px;
    color: var(--lux-black);
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.page-hero p {
    margin: 0;
    max-width: 760px;
    color: var(--lux-gray);
    font-size: 1.08rem;
    line-height: 1.85;
}

.hero-card {
    border-radius: 28px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(54, 44, 31, 0.92));
    color: #ffffff;
    box-shadow: 0 28px 80px rgba(17, 17, 17, 0.18);
}

.hero-card__label {
    color: rgba(244, 231, 200, 0.84);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-card__value {
    margin-top: 14px;
    font-size: 2rem;
    line-height: 1.05;
    font-weight: 800;
}

.hero-card__copy {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.75;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--lux-gray);
    font-size: 0.85rem;
    font-weight: 600;
}

.breadcrumb span.current {
    color: var(--lux-charcoal);
}

.page-shell {
    display: grid;
    gap: 28px;
}

.card-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.two-column {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.surface-card,
.surface-muted,
.surface-dark,
.content-copy section,
.stat-card,
.list-row,
.review-card,
.media-card {
    border-radius: 28px;
    border: 1px solid var(--lux-border);
    box-shadow: var(--lux-shadow-soft);
}

.surface-card,
.content-copy section,
.stat-card,
.list-row,
.review-card,
.media-card {
    background: rgba(255, 255, 255, 0.95);
}

.surface-muted {
    background: rgba(247, 243, 237, 0.84);
}

.surface-dark {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(58, 47, 29, 0.94));
    box-shadow: 0 28px 80px rgba(17, 17, 17, 0.18);
}

.surface-card,
.surface-muted,
.surface-dark {
    padding: 30px;
}

.surface-card h2,
.surface-card h3,
.surface-muted h2,
.surface-muted h3,
.surface-dark h2,
.surface-dark h3,
.content-copy h2 {
    margin: 0 0 14px;
    font-size: 1.45rem;
    line-height: 1.18;
}

.surface-card p,
.surface-muted p,
.surface-dark p,
.content-copy p,
.content-copy li {
    margin: 0;
    line-height: 1.8;
}

.surface-dark p {
    color: rgba(255, 255, 255, 0.78);
}

.surface-list {
    display: grid;
    gap: 14px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.surface-list li {
    position: relative;
    padding-left: 24px;
    color: var(--lux-charcoal);
    line-height: 1.7;
}

.surface-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--lux-gold);
}

.surface-dark .surface-list li {
    color: rgba(255, 255, 255, 0.8);
}

.stat-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat-card {
    padding: 24px;
}

.stat-card__value {
    display: block;
    color: var(--lux-black);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.stat-card__label {
    display: block;
    margin-top: 8px;
    color: var(--lux-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.pill,
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pill,
.badge--gold {
    background: rgba(198, 167, 104, 0.14);
    color: var(--lux-gold-deep);
}

.badge--dark {
    background: rgba(17, 17, 17, 0.9);
    color: #ffffff;
}

.badge--success {
    background: rgba(44, 120, 82, 0.12);
    color: #2c7852;
}

.badge--warning {
    background: rgba(177, 116, 27, 0.14);
    color: #a56515;
}

.badge--danger {
    background: rgba(180, 69, 52, 0.14);
    color: #b44534;
}

.badge--muted {
    background: rgba(91, 88, 82, 0.12);
    color: #5b5852;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button-primary,
.button-secondary,
.button-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button-primary {
    background: var(--lux-black);
    color: #ffffff;
    box-shadow: 0 18px 30px rgba(17, 17, 17, 0.14);
}

.button-primary:hover {
    transform: translateY(-1px);
    background: #222222;
}

.button-secondary {
    background: rgba(198, 167, 104, 0.12);
    color: var(--lux-black);
    border-color: rgba(169, 135, 66, 0.18);
}

.button-secondary:hover {
    transform: translateY(-1px);
    border-color: rgba(169, 135, 66, 0.3);
}

.button-ghost {
    background: #ffffff;
    color: var(--lux-charcoal);
    border-color: rgba(17, 17, 17, 0.08);
}

.button-ghost:hover {
    transform: translateY(-1px);
    border-color: rgba(17, 17, 17, 0.18);
}

.stack,
.form-stack,
.list-card,
.metric-list,
.content-copy {
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-group {
    display: grid;
    gap: 8px;
}

.field-label {
    color: var(--lux-charcoal);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.field-input,
.field-select,
.field-textarea {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    background: rgba(255, 255, 255, 0.92);
    color: var(--lux-charcoal);
    padding: 0.95rem 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
    outline: none;
    border-color: rgba(169, 135, 66, 0.46);
    box-shadow: 0 0 0 4px rgba(198, 167, 104, 0.16);
    background: #ffffff;
}

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

.field-help {
    color: var(--lux-gray);
    font-size: 0.88rem;
    line-height: 1.6;
}

.alert {
    border-radius: 22px;
    padding: 18px 20px;
    border: 1px solid transparent;
    line-height: 1.7;
}

.alert--success {
    background: rgba(44, 120, 82, 0.1);
    color: #2c7852;
    border-color: rgba(44, 120, 82, 0.24);
}

.alert--danger {
    background: rgba(180, 69, 52, 0.1);
    color: #b44534;
    border-color: rgba(180, 69, 52, 0.24);
}

.content-copy ul,
.content-copy ol {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding-left: 20px;
}

.media-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.media-card {
    overflow: hidden;
}

.media-card__visual {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, rgba(198, 167, 104, 0.14), rgba(17, 17, 17, 0.05));
}

.media-card__visual img,
.media-card__visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-card__body {
    padding: 18px 20px 22px;
}

.media-card__title,
.list-row__title {
    margin: 0 0 8px;
    color: var(--lux-black);
    font-size: 1.1rem;
    font-weight: 700;
}

.media-card__meta,
.list-row__meta {
    color: var(--lux-gray);
    font-size: 0.92rem;
    line-height: 1.6;
}

.list-row {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 22px;
}

.item-table {
    width: 100%;
    border-collapse: collapse;
}

.item-table th,
.item-table td {
    padding: 16px 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    text-align: left;
}

.item-table th {
    color: var(--lux-gray);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.item-table td {
    color: var(--lux-charcoal);
    line-height: 1.6;
}

.review-card {
    display: grid;
    gap: 18px;
    grid-template-columns: 84px minmax(0, 1fr);
    padding: 24px;
}

.review-card__media {
    width: 84px;
    height: 84px;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(198, 167, 104, 0.12);
}

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

.review-stars {
    display: inline-flex;
    gap: 4px;
    color: var(--lux-gold-deep);
}

.footer-shell {
    background: linear-gradient(180deg, #171717 0%, #101010 100%);
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-shell__inner {
    padding: 68px 0 54px;
}

.footer-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

.footer-title {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.footer-copy,
.footer-link,
.footer-meta {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.8;
}

.footer-link {
    display: block;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #f1dfb4;
}

.footer-bottom {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 1100px) {
    .storefront-nav {
        display: none;
    }

    .mobile-toggle {
        display: inline-flex;
    }

    .page-hero__inner,
    .two-column,
    .footer-grid,
    .form-grid,
    .list-row,
    .review-card {
        grid-template-columns: 1fr;
    }

    .review-card__media {
        width: 100%;
        max-width: 120px;
        height: 120px;
    }
}

@media (max-width: 760px) {
    .storefront-shell {
        width: min(1240px, calc(100vw - 24px));
    }

    .announcement-bar__inner {
        letter-spacing: 0.1em;
        font-size: 0.72rem;
    }

    .storefront-header__inner {
        min-height: 78px;
        gap: 16px;
    }

    .storefront-brand__name {
        font-size: 1.38rem;
    }

    .storefront-brand__tagline,
    .storefront-actions .account-toggle span {
        display: none;
    }

    .page-hero {
        padding: 52px 0 28px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .surface-card,
    .surface-muted,
    .surface-dark,
    .content-copy section,
    .stat-card,
    .list-row,
    .review-card {
        padding: 22px;
        border-radius: 24px;
    }

    .button-primary,
    .button-secondary,
    .button-ghost {
        width: 100%;
    }
}
