:root {
    --paper: #f7f7f4;
    --surface: #ffffff;
    --ink: #111111;
    --muted: #77736a;
    --line: #dedbd2;
    --accent: #111111;
    --accent-dark: #000000;
    --danger: #9d2f2f;
    --success: #2d6a4f;
    --shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
    --header-action-size: 42px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

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

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    min-height: 76px;
    padding: 0 5vw;
    border-bottom: 1px solid rgba(21, 21, 21, 0.08);
    background: rgba(251, 251, 250, 0.9);
    backdrop-filter: blur(18px);
}

.brand {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    letter-spacing: 0;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.main-nav a,
.language-select,
.text-button {
    min-height: 40px;
    border: 1px solid transparent;
    border-radius: 4px;
    color: var(--muted);
    background: transparent;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--ink);
    border-color: rgba(21, 21, 21, 0.12);
    background: rgba(255, 255, 255, 0.72);
}

.cart-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--surface);
    font-size: 0.75rem;
}

.language-form {
    justify-self: end;
}

.language-select {
    width: 96px;
    padding: 0 10px;
    border-color: rgba(21, 21, 21, 0.12);
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
}

.flash {
    width: min(90vw, 980px);
    margin: 22px auto 0;
    padding: 12px 16px;
    border: 1px solid;
    border-radius: 4px;
    background: var(--surface);
}

.flash-success {
    color: var(--success);
    border-color: rgba(45, 106, 79, 0.25);
}

.flash-error {
    color: var(--danger);
    border-color: rgba(157, 47, 47, 0.25);
}

.product-feed {
    padding: clamp(52px, 9vw, 96px) 0 80px;
}

.page-heading {
    width: min(90vw, 1120px);
    margin: 0 auto 34px;
}

.page-title {
    margin: 0 0 34px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0;
}

.page-heading.has-subtitle .page-title {
    margin-bottom: 12px;
}

.page-subtitle {
    margin: 0;
    max-width: 720px;
    color: var(--muted);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
    text-transform: uppercase;
}

.product-section {
    width: 100%;
    padding: clamp(28px, 7vw, 72px) 0;
    border-bottom: 1px solid rgba(21, 21, 21, 0.08);
}

.product-carousel {
    position: relative;
    width: min(90vw, 1080px);
    aspect-ratio: 4 / 5;
    max-height: 82vh;
    min-height: 360px;
    margin: 0 auto;
    overflow: hidden;
    background: #f1f1ef;
    box-shadow: var(--shadow);
    touch-action: pan-y;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 360ms ease;
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    display: grid;
    place-items: center;
    min-width: 100%;
    height: 100%;
    margin: 0;
    padding: clamp(12px, 3vw, 28px);
}

.carousel-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.image-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(21, 21, 21, 0.12);
    color: var(--muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(21, 21, 21, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    cursor: pointer;
}

.carousel-prev {
    left: 18px;
}

.carousel-next {
    right: 18px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    pointer-events: auto;
}

.carousel-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid rgba(21, 21, 21, 0.35);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
}

.carousel-dot.is-active {
    background: var(--ink);
    border-color: var(--ink);
}

.product-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    display: grid;
    gap: 8px;
    justify-items: center;
    min-width: 112px;
    padding: 8px 10px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    backdrop-filter: blur(12px);
    pointer-events: none;
}

.product-badges span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    font-size: 0.72rem;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.product-section--showcase .product-badges,
.product-section--store .product-badges {
    top: auto;
    bottom: 44px;
    left: 50%;
    justify-items: center;
    transform: translateX(-50%);
}

.product-info {
    display: grid;
    justify-items: center;
    gap: 10px;
    width: min(90vw, 1080px);
    margin: 24px auto 0;
    text-align: center;
}

.product-info h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 3vw, 2.3rem);
    font-weight: 400;
}

.product-detail {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--muted);
    font-size: 1.05rem;
    font-weight: 400;
}

.product-price {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: inherit;
    font-size: clamp(1.45rem, 3vw, 2.3rem);
    font-weight: 400;
}

.product-line {
    margin: -2px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.lux-button,
.secondary-button,
.text-button {
    cursor: pointer;
}

.lux-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    min-width: 170px;
    padding: 12px 22px;
    border-radius: 4px;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0;
}

.lux-button {
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--surface);
}

.lux-button:hover {
    background: #000000;
}

.lux-button:disabled {
    border-color: var(--line);
    background: var(--line);
    color: var(--muted);
    cursor: not-allowed;
}

.secondary-button {
    border: 1px solid rgba(21, 21, 21, 0.18);
    background: var(--surface);
    color: var(--ink);
}

.load-more-wrap {
    display: flex;
    justify-content: center;
    padding: 36px 0 0;
}

.choice-page,
.table-page,
.checkout-page,
.faq-page,
.rotation-page {
    width: min(90vw, 1120px);
    margin: 0 auto;
    padding: clamp(52px, 9vw, 96px) 0;
}

.choice-page h1,
.table-page h1,
.checkout-page h1,
.faq-page h1,
.rotation-page h1 {
    margin-bottom: 34px;
}

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

.choice-card {
    display: grid;
    align-content: space-between;
    min-height: 220px;
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid rgba(21, 21, 21, 0.12);
    border-radius: 6px;
    background: var(--surface);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.choice-card span {
    color: var(--muted);
}

.choice-card strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 400;
}

.choice-card:hover {
    border-color: rgba(21, 21, 21, 0.28);
}

.choice-form {
    gap: 26px;
}

.choice-form form {
    display: grid;
    gap: 12px;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(21, 21, 21, 0.16);
    border-radius: 4px;
    background: var(--paper);
    color: var(--ink);
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid rgba(21, 21, 21, 0.1);
    background: var(--surface);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

th,
td {
    padding: 16px;
    border-bottom: 1px solid rgba(21, 21, 21, 0.08);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
}

tr:last-child td {
    border-bottom: 0;
}

.cart-product {
    display: grid;
    gap: 10px;
    justify-items: start;
}

.cart-product-detail {
    color: var(--muted);
}

.cart-product-image {
    display: block;
    width: min(120px, 100%);
    height: auto;
    border: 1px solid rgba(21, 21, 21, 0.08);
    background: #ececea;
}

.remove-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.remove-button-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
}

.remove-button-icon::before,
.remove-button-icon::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 1px;
    width: 12px;
    height: 2px;
    border-radius: 999px;
    background: var(--danger);
}

.remove-button-icon::before {
    transform: rotate(45deg);
}

.remove-button-icon::after {
    transform: rotate(-45deg);
}

.link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.link-list a,
.text-button {
    padding: 7px 10px;
    border: 1px solid rgba(21, 21, 21, 0.12);
    background: var(--paper);
    color: var(--ink);
}

.muted,
.empty-state,
.form-error {
    color: var(--muted);
}

.form-error {
    margin: 12px 0 0;
}

.checkout-summary {
    display: grid;
    gap: 12px;
    width: min(100%, 520px);
    margin: 28px 0 52px auto;
    padding: 24px;
    border: 1px solid rgba(21, 21, 21, 0.1);
    background: var(--surface);
}

.checkout-summary > div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.summary-total {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(21, 21, 21, 0.1);
    font-size: 1.15rem;
}

.discount-table {
    margin-top: 34px;
}

.discount-table h2 {
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.discount-table tr.is-active-discount td {
    background: rgba(17, 17, 17, 0.06);
    font-weight: 600;
}

.faq-list {
    display: grid;
    gap: 12px;
    width: min(100%, 820px);
}

.faq-item {
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 6px;
    background: var(--surface);
}

.faq-item summary {
    min-height: 58px;
    padding: 17px 20px;
    cursor: pointer;
    font-weight: 600;
}

.faq-item p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
}

.rotation-page > .empty-state {
    margin: -18px 0 26px;
}

.rotation-table table {
    min-width: 760px;
}

.rotation-table input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.rotation-product {
    display: grid;
    gap: 10px;
    justify-items: start;
}

.rotation-product-mobile {
    display: none;
}

.rotation-product-image {
    display: block;
    width: min(120px, 100%);
    height: auto;
    border: 1px solid rgba(21, 21, 21, 0.08);
    background: #ececea;
}

.rotation-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

.site-footer {
    display: flex;
    justify-content: center;
    padding: 32px 5vw;
    color: var(--muted);
    font-size: 0.8rem;
}

@media (max-width: 820px) {
    .site-header {
        grid-template-columns: 1fr auto;
        gap: 12px;
        padding: 14px 5vw;
    }

    .main-nav {
        grid-column: 1 / -1;
        order: 3;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 2px;
    }

    .main-nav a {
        flex: 0 0 auto;
    }

    .product-carousel {
        width: 90vw;
        min-height: 300px;
    }

    .carousel-control {
        width: 38px;
        height: 38px;
    }

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

    .checkout-summary {
        margin-left: 0;
    }
}

@media (max-width: 520px) {
    .product-carousel {
        min-height: 260px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

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

body {
    background: #050505;
    color: var(--ink);
}

.site-header {
    border-bottom-color: rgba(244, 239, 227, 0.12);
    background: rgba(5, 5, 5, 0.9);
}

.brand {
    color: var(--ink);
}

.main-nav a,
.text-button {
    color: var(--muted);
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--ink);
    border-color: rgba(198, 163, 90, 0.35);
    background: rgba(244, 239, 227, 0.06);
}

.language-form {
    position: relative;
}

.language-menu {
    position: relative;
}

.language-menu[open] {
    z-index: 80;
}

.language-trigger {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 40px;
    padding: 7px 12px;
    border: 1px solid rgba(198, 163, 90, 0.35);
    border-radius: 4px;
    background: rgba(244, 239, 227, 0.05);
    color: var(--ink);
    cursor: pointer;
    list-style: none;
}

.language-trigger::-webkit-details-marker {
    display: none;
}

.language-trigger::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
    transform: rotate(45deg) translateY(-2px);
}

.language-options {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: grid;
    width: 190px;
    padding: 6px;
    border: 1px solid rgba(198, 163, 90, 0.3);
    border-radius: 6px;
    background: #0b0b0a;
    box-shadow: var(--shadow);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 8px 10px;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    text-align: left;
}

.language-option:hover,
.language-option.is-active {
    background: rgba(244, 239, 227, 0.08);
    color: var(--ink);
}

.flag-icon {
    display: inline-block;
    width: 24px;
    height: 16px;
    flex: 0 0 24px;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
    overflow: hidden;
}

.flag-en {
    background:
        linear-gradient(27deg, transparent 43%, #fff 43%, #fff 48%, #c8102e 48%, #c8102e 52%, #fff 52%, #fff 57%, transparent 57%),
        linear-gradient(-27deg, transparent 43%, #fff 43%, #fff 48%, #c8102e 48%, #c8102e 52%, #fff 52%, #fff 57%, transparent 57%),
        linear-gradient(90deg, transparent 38%, #fff 38%, #fff 62%, transparent 62%),
        linear-gradient(0deg, transparent 34%, #fff 34%, #fff 66%, transparent 66%),
        linear-gradient(90deg, transparent 43%, #c8102e 43%, #c8102e 57%, transparent 57%),
        linear-gradient(0deg, transparent 40%, #c8102e 40%, #c8102e 60%, transparent 60%),
        #012169;
}

.flag-pt {
    background:
        radial-gradient(circle at 42% 50%, #f7d35c 0 14%, transparent 15%),
        linear-gradient(90deg, #046a38 0 40%, #da291c 40% 100%);
}

.flag-es {
    background: linear-gradient(180deg, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%);
}

.flag-fr {
    background: linear-gradient(90deg, #0055a4 0 33.33%, #fff 33.33% 66.66%, #ef4135 66.66% 100%);
}

.flag-de {
    background: linear-gradient(180deg, #000 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
}

.flag-it {
    background: linear-gradient(90deg, #009246 0 33.33%, #fff 33.33% 66.66%, #ce2b37 66.66% 100%);
}

.flash,
.choice-card,
.table-wrap,
.checkout-summary,
.faq-item {
    background: var(--surface);
}

.flash {
    border-color: rgba(198, 163, 90, 0.24);
}

.product-section {
    border-bottom-color: rgba(244, 239, 227, 0.1);
}

.product-carousel {
    background: #0d0d0c;
}

.image-placeholder {
    border-color: rgba(244, 239, 227, 0.16);
}

.carousel-control {
    border-color: rgba(198, 163, 90, 0.35);
    background: rgba(5, 5, 5, 0.72);
    color: var(--ink);
}

.carousel-dot {
    border-color: rgba(244, 239, 227, 0.5);
    background: rgba(244, 239, 227, 0.2);
}

.carousel-dot.is-active {
    border-color: var(--accent);
    background: var(--accent);
}

.lux-button {
    border-color: var(--accent);
    background: var(--accent);
    color: #080808;
}

.lux-button:hover {
    border-color: #d8ba76;
    background: #d8ba76;
}

.secondary-button {
    border-color: rgba(198, 163, 90, 0.42);
    background: transparent;
    color: var(--ink);
}

.secondary-button:hover,
.text-button:hover {
    border-color: var(--accent);
    color: var(--ink);
}

.choice-card,
.table-wrap,
.checkout-summary,
.faq-item {
    border-color: rgba(198, 163, 90, 0.24);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}

.choice-card:hover {
    border-color: rgba(198, 163, 90, 0.5);
}

input[type="email"],
input[type="password"] {
    border-color: rgba(198, 163, 90, 0.32);
    background: #070707;
    color: var(--ink);
}

th,
td {
    border-bottom-color: rgba(244, 239, 227, 0.1);
}

.link-list a,
.text-button {
    border-color: rgba(198, 163, 90, 0.28);
    background: rgba(244, 239, 227, 0.04);
    color: var(--ink);
}

.summary-total {
    border-top-color: rgba(244, 239, 227, 0.12);
}

.store-tools {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    width: min(90vw, 1080px);
    margin: 24px auto 0;
}

@media (max-width: 820px) {
    .language-form {
        align-self: start;
    }

    .language-options {
        right: 0;
    }

    .store-tools {
        justify-content: stretch;
    }

    .store-tools .secondary-button,
    .store-tools .text-button {
        flex: 1 1 0;
    }
}

/* Light streetwear direction */
:root {
    --paper: #f7f7f4;
    --surface: #ffffff;
    --ink: #111111;
    --muted: #77736a;
    --line: #dedbd2;
    --accent: #111111;
    --accent-dark: #000000;
    --shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
}

body {
    background: var(--paper);
    color: var(--ink);
}

.site-header {
    border-bottom-color: rgba(17, 17, 17, 0.08);
    background: rgba(247, 247, 244, 0.9);
}

.brand,
.main-nav a.is-active,
.main-nav a:hover {
    color: var(--ink);
}

.main-nav a,
.text-button {
    color: var(--muted);
}

.main-nav a:hover,
.main-nav a.is-active {
    border-color: rgba(17, 17, 17, 0.12);
    background: rgba(255, 255, 255, 0.82);
}

.language-trigger {
    border-color: rgba(17, 17, 17, 0.14);
    background: #ffffff;
    color: var(--ink);
}

.language-trigger::after {
    border-color: var(--ink);
}

.language-options {
    border-color: rgba(17, 17, 17, 0.12);
    background: #ffffff;
}

.language-option {
    color: var(--muted);
}

.language-option:hover,
.language-option.is-active {
    background: #f1f1ee;
    color: var(--ink);
}

.flag-icon {
    box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.16);
}

.product-section {
    border-bottom-color: rgba(17, 17, 17, 0.08);
}

.product-carousel {
    background: #ececea;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.07);
}

.carousel-control {
    display: none;
}

.carousel-dot {
    border-color: rgba(17, 17, 17, 0.35);
    background: rgba(255, 255, 255, 0.78);
}

.carousel-dot.is-active {
    border-color: var(--ink);
    background: var(--ink);
}

.lux-button {
    border-color: var(--ink);
    background: var(--ink);
    color: #ffffff;
}

.lux-button:hover {
    border-color: #2a2a2a;
    background: #2a2a2a;
}

.secondary-button {
    border-color: rgba(17, 17, 17, 0.16);
    background: #ffffff;
    color: var(--ink);
}

.secondary-button:hover,
.text-button:hover {
    border-color: var(--ink);
    color: var(--ink);
}

.flash,
.choice-card,
.table-wrap,
.checkout-summary,
.faq-item {
    background: var(--surface);
}

.flash,
.choice-card,
.table-wrap,
.checkout-summary,
.faq-item {
    border-color: rgba(17, 17, 17, 0.1);
}

.choice-card {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.05);
}

.choice-card:hover {
    border-color: rgba(17, 17, 17, 0.24);
}

input[type="email"],
input[type="password"] {
    border-color: rgba(17, 17, 17, 0.14);
    background: #ffffff;
    color: var(--ink);
}

th,
td,
.summary-total {
    border-color: rgba(17, 17, 17, 0.08);
}

.link-list a,
.text-button {
    border-color: rgba(17, 17, 17, 0.12);
    background: #ffffff;
    color: var(--ink);
}

.contacts-page {
    width: min(90vw, 1120px);
    margin: 0 auto;
    padding: clamp(56px, 10vw, 120px) 0;
}

.contacts-hero {
    min-height: 32vh;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: clamp(28px, 6vw, 58px) 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.contact-info p {
    margin: 0;
    padding: clamp(20px, 4vw, 30px);
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 6px;
    background: #ffffff;
}

.contact-info strong,
.contact-form label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
}

.contact-info a {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.contact-form-section {
    padding-top: clamp(28px, 6vw, 58px);
}

.contact-form {
    display: grid;
    gap: 14px;
    width: min(100%, 720px);
}

.contact-success {
    width: min(100%, 720px);
    padding: clamp(28px, 5vw, 44px);
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 6px;
    background: #ffffff;
}

.contact-success h2 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
}

.contact-success p {
    margin: 0;
    color: var(--muted);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: 4px;
    background: #ffffff;
    color: var(--ink);
}

.contact-form input {
    min-height: 48px;
    padding: 12px 14px;
}

.contact-form textarea {
    min-height: 180px;
    padding: 14px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(17, 17, 17, 0.18);
    outline-offset: 2px;
}

.website-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

@media (max-width: 820px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* Compact content pages */
.contacts-page {
    padding-top: clamp(52px, 9vw, 96px);
}

.contacts-hero {
    min-height: auto;
    align-content: start;
    padding-top: 0;
    padding-bottom: clamp(24px, 5vw, 48px);
}

.contact-success-page {
    min-height: auto;
    display: block;
}

.contact-success {
    width: min(100%, 760px);
}

.contact-success p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.contact-success h1 {
    margin-bottom: 12px;
}

.contact-success span {
    display: block;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

/* Final responsive refinements */
.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    display: block;
    width: clamp(110px, 13vw, 170px);
    height: auto;
}

.footer-logo {
    display: block;
    width: clamp(90px, 10vw, 140px);
    height: auto;
}

.site-header {
    grid-template-columns: auto 1fr auto;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.site-header.is-store-header {
    display: flex;
    justify-content: flex-end;
}

.site-header.is-store-header .header-actions {
    width: 100%;
    justify-content: flex-end;
}

.header-actions .language-form {
    align-self: center;
}

.store-subnav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.language-trigger {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: auto;
    height: auto;
    min-width: 0;
    min-height: 40px;
    padding: 7px 12px;
    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: 4px;
    background: #ffffff;
    color: var(--ink);
    cursor: pointer;
    font-size: inherit;
    font-weight: 400;
    text-transform: none;
}

.language-trigger::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    transform: rotate(45deg) translateY(-2px);
}

.store-subnav a {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: var(--header-action-size);
    height: var(--header-action-size);
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    font-size: 1.05rem;
}

.store-nav-icon {
    display: block;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.store-nav-text {
    display: block;
    max-width: 50px;
    padding: 0 4px;
    overflow: hidden;
    font-size: 0.56rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
}

.store-subnav a:hover,
.store-subnav a.is-active,
.language-trigger:hover {
    border-color: var(--ink);
}

.store-subnav .cart-pill {
    position: absolute;
    top: -6px;
    right: -6px;
}

.product-carousel {
    width: min(90vw, 1080px, calc(82vh * 4 / 5));
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
}

.carousel-slide {
    aspect-ratio: 4 / 5;
}

.carousel-control {
    display: none;
}

@media (min-width: 821px) {
    .carousel-control {
        display: grid;
        border-color: rgba(17, 17, 17, 0.16);
        background: rgba(255, 255, 255, 0.82);
        color: var(--ink);
    }

    .product-badges {
        top: 28px;
        left: 28px;
        min-width: 132px;
        padding: 10px 13px;
        background: rgba(255, 255, 255, 0.78);
    }

    .product-badges span {
        min-height: 34px;
        font-size: 0.82rem;
    }

    .product-section--showcase .product-badges,
    .product-section--store .product-badges {
        top: auto;
        bottom: 50px;
        left: 50%;
    }
}

@media (max-width: 820px) {
    .site-header {
        grid-template-columns: auto 1fr;
    }

    .brand-logo {
        width: 120px;
    }

    .header-actions {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        justify-self: end;
        gap: 6px;
    }

    .site-header.is-store-header .header-actions {
        justify-content: flex-end;
    }

    .store-subnav {
        grid-column: auto;
        grid-row: auto;
        align-self: auto;
    }

    .product-carousel {
        width: min(90vw, 520px);
        aspect-ratio: 4 / 5;
        min-height: 0;
        max-height: none;
    }

    .carousel-control {
        display: none;
    }

    .discount-table .table-wrap {
        overflow-x: visible;
    }

    .discount-table table {
        min-width: 0;
        width: 100%;
    }

    .discount-table th,
    .discount-table td {
        padding: 12px;
    }

    .rotation-table .table-wrap,
    .rotation-table {
        overflow-x: visible;
    }

    .rotation-table table {
        min-width: 0;
        width: 100%;
    }

    .rotation-order-column,
    .rotation-date-column,
    .rotation-product-desktop {
        display: none;
    }

    .rotation-product-mobile {
        display: grid;
    }

    .rotation-table th,
    .rotation-table td {
        padding: 12px;
    }
}

@media (max-width: 520px) {
    :root {
        --header-action-size: 38px;
    }

    .brand-logo {
        width: 104px;
    }

    .store-subnav {
        gap: 5px;
    }
}

/* About editorial layout */
.about-page {
    --about-content-width: 700px;
    width: min(90vw, var(--about-content-width));
    margin: 0 auto;
    padding: clamp(52px, 9vw, 96px) 0 clamp(58px, 9vw, 116px);
}

.about-page .page-heading {
    width: 100%;
}

.about-story {
    display: grid;
    row-gap: clamp(28px, 7vw, 86px);
    justify-items: start;
}

.about-story > * {
    width: 100%;
    min-width: 0;
    max-width: var(--about-content-width);
}

.about-copy {
    display: grid;
    gap: clamp(14px, 2vw, 22px);
}

.about-copy p {
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.02rem, 1.45vw, 1.28rem);
    line-height: 1.68;
}

.about-prompt-line {
    color: var(--ink) !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 3.2vw, 3.1rem) !important;
    line-height: 1.18 !important;
}

.about-photo {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 6px;
    background: #ececea;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.07);
}

.about-photo img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-photo--wide {
    aspect-ratio: 16 / 8.6;
}

.about-photo--left {
    aspect-ratio: 16 / 9;
}

.about-photo--right {
    aspect-ratio: 16 / 9;
}

.about-instagram {
    display: flex;
    margin-top: clamp(4px, 2vw, 18px);
}

.about-instagram .lux-button {
    width: 100%;
    min-width: 230px;
    max-width: var(--about-content-width);
}

@media (max-width: 820px) {
    .about-page {
        width: min(90vw, var(--about-content-width));
    }

    .about-story {
        row-gap: clamp(24px, 9vw, 52px);
    }

    .about-photo,
    .about-photo--wide,
    .about-photo--left,
    .about-photo--right {
        aspect-ratio: 16 / 9;
    }
}
