:root {
--gold: var(--color-gold, #c9a227);
--gold-soft: color-mix(in srgb, var(--gold) 25%, transparent);
--accent-soft: color-mix(in srgb, var(--color-accent) 8%, transparent);
--ink-soft: color-mix(in srgb, var(--color-text) 8%, transparent);
--radius: 2px;
--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
--shadow-1: 0 1px 2px rgba(40, 24, 30, 0.04), 0 10px 28px rgba(40, 24, 30, 0.06);
--shadow-2: 0 2px 6px rgba(40, 24, 30, 0.06), 0 20px 44px rgba(40, 24, 30, 0.12);
--scrim: linear-gradient(180deg, rgba(24, 12, 16, 0.15) 0%, rgba(24, 12, 16, 0.5) 55%, rgba(24, 12, 16, 0.82) 100%);
--tracking: 0.14em;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
margin: 0;
font-family: var(--font-body, system-ui, sans-serif);
font-size: calc(1rem * var(--body-scale, 1));
line-height: 1.65;
color: var(--color-text, #171717);
background: var(--color-bg, #fff);
-webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-heading, Georgia, serif);
text-transform: var(--heading-transform, none);
font-weight: 500;
line-height: 1.15;
letter-spacing: -0.005em;
text-wrap: balance;
margin: 0 0 0.5em;
}
h1 { font-size: calc(clamp(2rem, 1.3rem + 2.6vw, 3.1rem) * var(--heading-scale, 1)); }
h2 { font-size: calc(clamp(1.6rem, 1.2rem + 1.6vw, 2.35rem) * var(--heading-scale, 1)); }
h3 { font-size: calc(1.25rem * var(--heading-scale, 1)); }
p { margin: 0 0 1em; }
::selection { background: var(--gold-soft); }
.skip-to-content {
position: absolute; left: -9999px; top: 0; z-index: 100;
padding: 0.75rem 1rem; background: var(--color-bg); color: var(--color-text);
}
.skip-to-content:focus { left: 0; }
.visually-hidden {
position: absolute !important; width: 1px; height: 1px; overflow: hidden;
clip: rect(0 0 0 0); white-space: nowrap;
}
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.page-width { width: 100%; max-width: var(--page-width, 1400px); margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 750px) { .page-width { padding: 0 2.5rem; } }
.section { padding-block: min(var(--section-spacing, 48px), 12vw); }
.section--tight { padding-block: calc(min(var(--section-spacing, 48px), 12vw) / 2); }
.section__header { display: grid; justify-items: center; gap: 0.35rem; text-align: center; margin-bottom: 2.25rem; }
.section__header h1, .section__header h2 { margin: 0; }
.section__header h1::after, .section__header h2::after {
content: ""; display: block; width: 54px; height: 1px; margin: 0.9rem auto 0;
background: var(--gold);
}
.section__header p { color: var(--color-text-muted); margin: 0; max-width: 46rem; }
.section__header .section__eyebrow, .section__eyebrow {
font-size: 0.74rem; letter-spacing: var(--tracking); text-transform: uppercase;
color: var(--color-accent); margin: 0;
}
.grid { display: grid; gap: var(--grid-gap, 20px); grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 750px)  { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 990px)  { .grid { grid-template-columns: repeat(var(--columns, 4), minmax(0, 1fr)); } }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.button, button.button {
display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
padding: 0.95rem 2rem; border-radius: var(--button-radius, 4px);
background: var(--button-bg, #171717); color: var(--button-text, #fff);
border: var(--button-border-width, 0) solid currentColor;
font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
letter-spacing: 0.1em; line-height: 1.2;
text-transform: var(--button-transform, none); text-decoration: none;
cursor: pointer; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s ease, color 0.2s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: var(--shadow-1); }
.button:active { transform: none; }
.button[disabled] { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }
.button--secondary {
background: transparent; color: inherit;
border: 1px solid color-mix(in srgb, currentColor 40%, transparent);
}
.button--secondary:hover { background: color-mix(in srgb, currentColor 8%, transparent); }
.button--full { width: 100%; }
.field { display: grid; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label {
font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
color: var(--color-text-muted);
}
.field input, .field select, .field textarea {
width: 100%; padding: 0.85rem 0.95rem; font: inherit; font-size: 0.95rem; color: inherit;
background: var(--color-bg); border: 1px solid var(--color-border);
border-radius: var(--radius); transition: border-color 0.2s ease;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--color-text-muted); }
.field input:focus, .field select:focus, .field textarea:focus {
outline: 1px solid var(--color-accent); outline-offset: 0; border-color: var(--color-accent);
}
.form__error, .form-status--error { color: var(--color-sale); font-size: 0.9rem; }
.form__success, .form-status--success { color: var(--color-accent); font-size: 0.9rem; }
.form-status { margin: 0 0 1rem; padding: 0.75rem 1rem; border-radius: var(--radius); background: var(--color-surface); }
.rich-text form {
max-width: 27rem; margin-inline: auto; text-align: left;
background: var(--color-surface); border: 1px solid var(--color-border);
padding: 2rem; border-radius: var(--radius);
}
.rich-text form p { font-size: 0.88rem; margin: 1rem 0 0; text-align: center; }
.header { border-bottom: 1px solid var(--color-border); background: var(--color-bg); }
.header-sticky .header { position: sticky; top: 0; z-index: 20; }
.header__inner { display: flex; align-items: center; gap: 1.25rem; padding-block: 1.15rem; }
.header__logo {
font-family: var(--font-heading); font-size: 1.4rem; line-height: 1.1;
letter-spacing: 0.06em; text-decoration: none; min-width: 0;
}
@media (min-width: 750px) { .header__logo { white-space: nowrap; } }
.header__logo img { width: var(--logo-width, 130px); }
.header__nav { display: none; margin-inline: auto; }
@media (min-width: 990px) { .header__nav { display: block; } .header__toggle { display: none; } }
.header--center .header__inner { flex-direction: column; text-align: center; gap: 0.75rem; }
.header--center .header__actions { margin-left: 0; }
.header__menu { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.header__menu > li > a {
position: relative; text-decoration: none; padding-block: 0.5rem; display: inline-block;
font-size: 0.78rem; letter-spacing: var(--tracking); text-transform: uppercase;
}
.header__menu > li > a::after {
content: ""; position: absolute; left: 0; right: 0; bottom: 0.15rem; height: 1px;
background: var(--gold); transform: scaleX(0); transform-origin: left;
transition: transform 0.28s var(--ease);
}
.header__menu > li > a:hover::after,
.header__menu a[aria-current="page"]::after { transform: scaleX(1); }
.header__menu a[aria-current="page"] { text-decoration: none; }
.header__item { position: relative; }
.header__submenu {
position: absolute; top: 100%; left: -1rem; min-width: 220px; z-index: 30;
display: none; list-style: none; margin: 0; padding: 0.6rem 0;
background: var(--color-bg); border: 1px solid var(--color-border);
border-radius: var(--radius); box-shadow: var(--shadow-2);
}
.header__item:hover > .header__submenu, .header__item:focus-within > .header__submenu { display: block; }
.header__submenu a {
padding: 0.5rem 1.25rem; display: block; font-size: 0.9rem; text-decoration: none;
transition: background 0.15s ease, color 0.15s ease;
}
.header__submenu a:hover { background: var(--color-surface); color: var(--color-accent); }
.header__actions { display: flex; align-items: center; gap: 0.35rem; margin-left: auto; }
.header__actions a, .header__actions button {
position: relative; background: none; border: 0; padding: 0.5rem; color: inherit; cursor: pointer;
display: inline-flex; border-radius: 50%; transition: background 0.15s ease, color 0.15s ease;
}
.header__actions a:hover, .header__actions button:hover { background: var(--color-surface); color: var(--color-accent); }
.header__search { display: flex; align-items: center; }
.header__search input { display: none; }
@media (min-width: 990px) {
.header__search input {
display: block; width: 9rem; padding: 0.4rem 0.25rem; appearance: none;
font: inherit; font-size: 0.82rem; color: inherit; background: transparent;
border: 0; border-bottom: 1px solid var(--color-border); border-radius: 0;
transition: width 0.3s var(--ease), border-color 0.2s ease;
}
.header__search input:focus { outline: 0; width: 12rem; border-bottom-color: var(--gold); }
.header__search input::placeholder {
color: var(--color-text-muted); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.header__search input::-webkit-search-cancel-button { appearance: none; }
}
.cart-count {
position: absolute; top: 0.15rem; right: 0.05rem;
min-width: 16px; height: 16px; padding: 0 4px;
display: grid; place-items: center;
font-family: var(--font-body); font-size: 0.62rem; font-weight: 500; line-height: 1;
background: var(--color-accent); color: #fff; border-radius: 999px;
}
.cart-count[hidden] { display: none; }
.header__toggle {
order: -1; margin-left: -0.5rem;
display: inline-flex; align-items: center; justify-content: center;
background: none; border: 0; padding: 0.5rem; color: inherit; cursor: pointer;
border-radius: 50%; transition: background 0.15s ease, color 0.15s ease;
}
@media (min-width: 990px) { .header__toggle { display: none; } }
.header__toggle:hover { background: var(--color-surface); color: var(--color-accent); }
.header__toggle .icon--close { display: none; }
.header__toggle[aria-expanded="true"] .icon--menu { display: none; }
.header__toggle[aria-expanded="true"] .icon--close { display: block; }
.drawer-menu { display: none; border-top: 1px solid var(--color-border); padding-block: 0.5rem 1rem; }
.drawer-menu[open], .drawer-menu.is-open { display: block; }
.drawer-menu ul { list-style: none; margin: 0; padding: 0; }
.drawer-menu > ul > li + li { border-top: 1px solid var(--color-border); }
.drawer-menu a {
display: block; padding: 0.8rem 0; text-decoration: none;
font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.drawer-menu ul ul a { text-transform: none; letter-spacing: 0; font-size: 0.9rem; padding: 0.4rem 0; color: var(--color-text-muted); }
.announcement {
text-align: center; padding: 0.7rem 1rem;
font-size: 0.74rem; letter-spacing: var(--tracking); text-transform: uppercase;
}
.announcement a { color: inherit; }
.card { display: block; text-decoration: none; }
.card__link { display: block; text-decoration: none; }
.card__media {
position: relative; overflow: hidden; background: var(--color-surface);
border-radius: var(--radius);
}
.card__media--square    { aspect-ratio: 1 / 1; }
.card__media--portrait  { aspect-ratio: 4 / 5; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__media-alt {
position: absolute; inset: 0; opacity: 0;
transition: opacity 0.45s ease, transform 0.8s var(--ease);
}
.card:hover .card__media-alt { opacity: 1; }
.card__badge {
position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2;
background: var(--color-sale); color: var(--color-badge-text);
font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase;
padding: 0.3rem 0.6rem; border-radius: var(--radius);
}
.card__badge--sold { background: color-mix(in srgb, var(--color-text) 82%, transparent); }
.card__info { padding-top: 0.9rem; display: grid; gap: 0.3rem; }
.card__title {
font-family: var(--font-heading); font-size: 1.02rem; font-weight: 500;
letter-spacing: 0; margin: 0; transition: color 0.2s ease;
}
.card:hover .card__title { color: var(--color-accent); }
.card__vendor { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); }
.card__quick { margin-top: 0.75rem; }
.card__quick .button { padding-block: 0.7rem; font-size: 0.72rem; }
.card--collection .card__media::after {
content: ""; position: absolute; inset: 0; background: var(--scrim); opacity: 0.85;
}
.card--collection .card__info {
position: absolute; inset-inline: 0; bottom: 0; z-index: 2;
padding: 1.25rem; justify-items: center; text-align: center; color: #fff;
}
.card--collection { position: relative; }
.card--collection .card__title { color: #fff; font-size: 1.15rem; }
.card--collection:hover .card__title { color: #fff; }
.card--collection .card__vendor { color: rgba(255, 255, 255, 0.8); }
.price { display: flex; gap: 0.5rem; align-items: baseline; flex-wrap: wrap; font-size: 0.95rem; }
.price__compare { text-decoration: line-through; color: var(--color-text-muted); font-size: 0.88em; }
.price--on-sale .price__current { color: var(--color-sale); }
.banner { position: relative; display: grid; align-content: center; border-radius: var(--radius); overflow: hidden; }
.banner--small  { min-height: clamp(220px, 34vw, 340px); }
.banner--medium { min-height: clamp(320px, 46vw, 500px); }
.banner--large  { min-height: clamp(420px, 62vw, 680px); }
.banner__media { overflow: hidden; }
.banner__media img { width: 100%; height: 100%; object-fit: cover; }
.banner--small .banner__media  { height: clamp(220px, 34vw, 340px); }
.banner--medium .banner__media { height: clamp(320px, 46vw, 500px); }
.banner--large .banner__media  { height: clamp(420px, 62vw, 680px); }
.banner__content { padding: 3rem 1.5rem; display: grid; gap: 1rem; justify-items: center; text-align: center; }
.banner__content > * { margin: 0; max-width: 42rem; }
.banner__sub {
font-size: 0.76rem; letter-spacing: var(--tracking); text-transform: uppercase;
color: var(--gold);
}
.banner:not(.banner--overlay) {
background: linear-gradient(160deg, var(--color-surface) 0%, var(--accent-soft) 100%);
border: 1px solid var(--color-border);
}
.banner--overlay .banner__media { position: absolute; inset: 0; height: auto; }
.banner--overlay .banner__content { grid-area: 1 / 1; }
.banner--overlay::after { content: ""; grid-area: 1 / 1; background: var(--scrim); }
.banner--overlay .banner__content {
position: relative; z-index: 2; align-content: center; color: #fff;
padding: clamp(2rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4.5rem);
}
.banner--overlay .banner__sub { color: var(--gold); }
.banner__content--left { justify-items: start; text-align: left; }
.banner__content--right { justify-items: end; text-align: right; }
.slideshow { position: relative; }
.slideshow__track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.slideshow__track::-webkit-scrollbar { display: none; }
.slideshow__slide { flex: 0 0 100%; scroll-snap-align: start; }
.slideshow__slide .banner { border-radius: 0; }
.slideshow__dots {
display: flex; gap: 0.6rem; align-items: center;
position: absolute; left: 50%; transform: translateX(-50%); bottom: 1.25rem; z-index: 3;
width: max-content; padding: 0.5rem 0.75rem; border-radius: 999px;
background: rgba(24, 12, 16, 0.3);
}
.slideshow__dot {
width: 28px; height: 2px; border-radius: 0; border: 0; padding: 0; cursor: pointer;
background: rgba(255, 255, 255, 0.55); transition: background 0.25s ease;
}
.slideshow__dot[aria-current="true"] { background: var(--gold); }
.product { display: grid; gap: 2rem; }
@media (min-width: 750px) { .product { grid-template-columns: 1fr 1fr; align-items: start; gap: 3rem; } }
@media (min-width: 990px) {
.product { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; }
.product__details { position: sticky; top: 6.5rem; }
}
.product__gallery { display: grid; gap: 0.75rem; }
.product__zoom { display: block; width: 100%; padding: 0; border: 0; font: inherit; cursor: default; }
.product__zoom[data-zoom-ready] { cursor: zoom-in; }
.zoom {
width: 100vw; max-width: 100vw; height: 100dvh; max-height: 100dvh;
margin: 0; padding: 0; border: 0; background: var(--color-bg); color: var(--color-text);
}
.zoom::backdrop { background: rgba(24, 12, 16, 0.85); }
.zoom__frame { width: 100%; height: 100%; overflow: auto; overscroll-behavior: contain; }
.zoom__frame img { width: 190%; max-width: none; display: block; }
@media (min-width: 990px) { .zoom__frame img { width: 135%; } }
.zoom__close {
position: fixed; top: 1rem; right: 1rem; z-index: 2;
width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--color-border);
background: var(--color-bg); color: inherit; cursor: pointer;
display: grid; place-items: center; box-shadow: var(--shadow-1);
}
.product__thumbs { display: flex; gap: 0.6rem; overflow-x: auto; padding-bottom: 0.25rem; }
.product__thumb {
flex: 0 0 auto; padding: 0; background: none; cursor: pointer;
border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden;
opacity: 0.7; transition: border-color 0.2s ease, opacity 0.2s ease;
}
.product__thumb img { width: 78px; height: 92px; object-fit: cover; display: block; }
.product__thumb:hover { opacity: 1; border-color: var(--gold); }
.product__thumb.is-active { opacity: 1; border-color: var(--color-accent); }
.product__details h1 { margin-bottom: 0.25rem; }
.product__meta { display: grid; gap: 0.5rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--color-border); }
.product__price { font-size: 1.45rem; font-family: var(--font-heading); }
.product__price .price { font-size: inherit; }
.product__options { display: grid; gap: 0.9rem; margin-block: 1.5rem 1rem; }
.product__qty { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--color-border); border-radius: var(--radius); }
.product__qty button {
background: none; border: 0; padding: 0.75rem 0.9rem; color: inherit; cursor: pointer; display: inline-flex;
}
.product__qty button:hover { color: var(--color-accent); }
.product__qty input {
width: 3rem; text-align: center; border: 0; padding: 0.7rem 0; font: inherit;
background: transparent; -moz-appearance: textfield;
}
.product__qty input::-webkit-outer-spin-button,
.product__qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.product__description { margin-top: 1.75rem; }
.product__collapsible { border-top: 1px solid var(--color-border); }
.product__collapsible summary {
cursor: pointer; list-style: none; padding: 1rem 0;
display: flex; justify-content: space-between; align-items: center;
font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.product__collapsible summary::-webkit-details-marker { display: none; }
.product__collapsible summary::after { content: "+"; font-size: 1.1rem; color: var(--color-accent); }
.product__collapsible[open] summary::after { content: "\2013"; }
.product__collapsible > div { padding-bottom: 1rem; color: var(--color-text-muted); font-size: 0.95rem; }
.product__sticky {
position: fixed; inset-inline: 0; bottom: 0; z-index: 30;
display: flex; align-items: center; gap: 1rem;
padding: 0.7rem 1rem; padding-bottom: calc(0.7rem + env(safe-area-inset-bottom, 0px));
background: var(--color-bg); border-top: 1px solid var(--color-border);
box-shadow: 0 -6px 24px rgba(40, 24, 30, 0.12);
}
.product__sticky[hidden] { display: none; }
.product__sticky-info { display: grid; min-width: 0; }
.product__sticky-title {
font-family: var(--font-heading); font-size: 0.95rem;
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.product__sticky-price { font-size: 0.85rem; color: var(--color-text-muted); }
.product__sticky .button { margin-left: auto; flex: 0 0 auto; padding-inline: 1.5rem; }
@media (min-width: 750px) { .product__sticky, .product__sticky[hidden] { display: none; } }
.ring-builder-cta { margin-top: 1rem; }
.ring-builder-cta__note { font-size: 0.82rem; color: var(--color-text-muted); text-align: center; margin: 0.5rem 0 0; }
.product-reviews { max-width: 46rem; }
.product-reviews__summary span[aria-hidden] { color: var(--gold); letter-spacing: 0.15em; font-size: 1.1rem; }
.product-reviews__empty { color: var(--color-text-muted); }
.product-reviews__rating { border: 0; padding: 0; margin: 0 0 1rem; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.product-reviews__rating legend { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); }
.product-reviews__rating label { display: inline-flex; align-items: center; gap: 0.3rem; }
.rte { line-height: 1.8; overflow-wrap: anywhere; }
.rte table { display: block; overflow-x: auto; max-width: 100%; }
.rte > :first-child { margin-top: 0; }
.rte h2, .rte h3 { margin-top: 1.75rem; }
.rte ul, .rte ol { padding-left: 1.15rem; margin: 0 0 1em; }
.rte li { margin-bottom: 0.35rem; }
.rte img { border-radius: var(--radius); margin-block: 1.5rem; }
.rte a { color: var(--color-accent); text-underline-offset: 3px; }
.rte blockquote {
margin: 1.75rem 0; padding-left: 1.25rem; border-left: 2px solid var(--gold);
font-family: var(--font-heading); font-size: 1.15rem; font-style: italic;
}
.collection__toolbar {
display: flex; flex-wrap: wrap; gap: 1rem; align-items: end;
justify-content: space-between; margin-bottom: 2rem;
padding-bottom: 1.25rem; border-bottom: 1px solid var(--color-border);
}
.facets { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: end; }
.collection__toolbar select {
padding: 0.6rem 0.8rem; border: 1px solid var(--color-border); background: var(--color-bg);
border-radius: var(--radius); font: inherit; font-size: 0.9rem; min-width: 11rem;
}
.pagination { display: flex; gap: 0.4rem; justify-content: center; padding-block: 2.5rem; list-style: none; }
.pagination a, .pagination span {
display: inline-flex; min-width: 2.5rem; height: 2.5rem; align-items: center; justify-content: center;
border: 1px solid var(--color-border); text-decoration: none; border-radius: var(--radius);
font-size: 0.9rem; transition: border-color 0.2s ease, color 0.2s ease;
}
.pagination a:hover { border-color: var(--gold); color: var(--color-accent); }
.pagination [aria-current="page"] { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.cart__row {
display: grid; grid-template-columns: 88px 1fr auto; gap: 1.25rem; align-items: start;
padding-block: 1.25rem; border-bottom: 1px solid var(--color-border);
}
@media (max-width: 480px) {
.cart__row { grid-template-columns: 72px 1fr; gap: 0.9rem; }
.cart__row > :last-child { grid-column: 2; font-weight: 500; }
}
.cart__row img { border-radius: var(--radius); }
.cart__row a { text-decoration: none; }
.cart__totals {
display: grid; gap: 0.75rem; padding: 1.5rem; margin-top: 2rem; max-width: 380px; margin-left: auto;
background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius);
}
.cart__totals-row { display: flex; justify-content: space-between; align-items: baseline; }
.cart__totals-row strong { font-family: var(--font-heading); font-size: 1.2rem; }
.cart-drawer {
position: fixed; inset-block: 0; right: 0; width: min(430px, 100%); z-index: 40;
background: var(--color-bg); box-shadow: var(--shadow-2);
transform: translateX(100%); transition: transform 0.3s var(--ease); display: flex; flex-direction: column;
}
.cart-drawer.is-open { transform: none; }
.cart-drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem; border-bottom: 1px solid var(--color-border); }
.cart-drawer__head h2 { margin: 0; font-size: 1.1rem; letter-spacing: 0.08em; text-transform: uppercase; }
.cart-drawer__head button { background: none; border: 0; padding: 0.4rem; cursor: pointer; color: inherit; }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 0 1.25rem; }
.cart-drawer__foot { padding: 1.25rem; border-top: 1px solid var(--color-border); display: grid; gap: 0.75rem; }
.cart-overlay { position: fixed; inset: 0; background: rgba(24, 12, 16, 0.4); z-index: 39; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }
.usp { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 990px) { .usp { grid-template-columns: repeat(var(--usp-columns, 4), minmax(0, 1fr)); } }
.usp--band {
background: var(--color-surface); border-block: 1px solid var(--color-border);
padding: 2.25rem clamp(1.25rem, 4vw, 3rem); border-radius: var(--radius);
}
.usp__item { display: grid; justify-items: center; text-align: center; gap: 0.45rem; }
.usp__icon, .contact__icon {
width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
background: var(--accent-soft); color: var(--color-accent); margin-bottom: 0.25rem;
}
.usp__title { font-family: var(--font-heading); font-size: 1rem; margin: 0; }
.usp__text { font-size: 0.85rem; color: var(--color-text-muted); margin: 0; }
.contact { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 750px) { .contact { grid-template-columns: 1.15fr 0.85fr; gap: 3.5rem; } }
.contact__form { max-width: 40rem; }
.contact__row { display: grid; gap: 0 1rem; }
@media (min-width: 560px) { .contact__row { grid-template-columns: 1fr 1fr; } }
.contact__form textarea { resize: vertical; min-height: 8rem; }
.contact__form .button { margin-top: 0.5rem; }
.contact__aside {
display: grid; gap: 1.75rem; padding: clamp(1.5rem, 4vw, 2rem);
background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius);
}
.contact__item { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.contact__icon { margin-bottom: 0; }
.contact__item-title { font-size: 1.05rem; margin: 0 0 0.2rem; }
.contact__item-text { font-size: 0.92rem; color: var(--color-text-muted); line-height: 1.6; }
.contact__item-text p:last-child { margin-bottom: 0; }
.contact__link {
display: inline-block; margin-top: 0.4rem; font-size: 0.8rem;
letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-accent);
text-underline-offset: 4px;
}
.rich-text { max-width: 46rem; margin-inline: auto; text-align: center; }
.rich-text h1, .rich-text h2 { margin-top: 0; }
.rich-text--left { text-align: left; }
.rich-text--left > h1::after {
content: ""; display: block; width: 54px; height: 1px;
background: var(--gold); margin: 0.9rem 0 1.75rem;
}
.rich-text--left > img { border-radius: var(--radius); margin-bottom: 1.75rem; }
.rich-text .button { margin-top: 0.5rem; }
.newsletter {
text-align: center; background: var(--color-accent); color: #fff;
border-radius: var(--radius); padding: clamp(2.25rem, 5vw, 3.5rem) 1.5rem;
}
.newsletter h2 { color: #fff; margin-top: 0; }
.newsletter p { color: rgba(255, 255, 255, 0.8); margin-bottom: 0; }
.newsletter__form { display: flex; gap: 0.5rem; max-width: 28rem; margin: 1.5rem auto 0; flex-wrap: wrap; }
.newsletter__form input { flex: 1 1 12rem; }
.newsletter .newsletter__form input {
background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.35); color: #fff;
}
.newsletter .newsletter__form input::placeholder { color: rgba(255, 255, 255, 0.65); }
.newsletter .newsletter__form input:focus { outline-color: var(--gold); border-color: var(--gold); }
.newsletter .button { background: var(--gold); color: #2a1a1f; border: 0; }
.newsletter .form__success, .newsletter .form__error { color: #fff; margin-top: 0.75rem; }
.footer { border-top: 1px solid var(--color-border); background: var(--color-surface); }
.footer__grid { display: grid; gap: 2.5rem; padding-block: 3.5rem; grid-template-columns: 1fr; }
@media (min-width: 750px) { .footer__grid { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); } }
.footer__block h3 {
font-family: var(--font-body); font-size: 0.76rem; font-weight: 500;
letter-spacing: var(--tracking); text-transform: uppercase; margin-bottom: 1.1rem;
}
.footer__block ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer__block a { text-decoration: none; font-size: 0.92rem; color: var(--color-text-muted); transition: color 0.15s ease; }
.footer__block a:hover { color: var(--color-accent); }
.footer__block p { font-size: 0.92rem; color: var(--color-text-muted); }
.footer__bottom {
display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
border-top: 1px solid var(--color-border); padding-block: 1.5rem; font-size: 0.8rem;
color: var(--color-text-muted);
}
.social { display: flex; gap: 0.9rem; list-style: none; margin: 0; padding: 0; }
.social a { display: inline-flex; transition: color 0.15s ease; }
.social a:hover { color: var(--color-accent); }
.payment-icons { display: flex; gap: 0.4rem; flex-wrap: wrap; align-items: center; }
.payment-icons svg { height: 22px; width: auto; }
.breadcrumbs { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-muted); padding-block: 0 1.75rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0; padding: 0; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--color-accent); }
.breadcrumbs li[aria-hidden] { opacity: 0.5; }
.account-details { max-width: 32rem; }
.spinner { width: 1.1em; height: 1.1em; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; display: inline-block; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.empty-state { text-align: center; padding-block: 4rem; color: var(--color-text-muted); display: grid; gap: 1rem; justify-items: center; }
@media (pointer: coarse) {
.footer__block ul { gap: 0.15rem; }
.footer__block a { display: inline-block; padding-block: 0.6rem; }
.social { gap: 0.35rem; }
.social a { padding: 0.7rem; margin: -0.2rem; }
.breadcrumbs a, .breadcrumbs span { display: inline-block; padding-block: 0.35rem; }
.pagination a, .pagination span { min-width: 2.75rem; height: 2.75rem; }
.header__menu > li > a { padding-block: 0.75rem; }
.card__title { padding-block: 0.15rem; }
}
@media (max-width: 480px) {
.newsletter__form { flex-direction: column; }
.newsletter__form input, .newsletter__form .button, .newsletter__form button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
html { scroll-behavior: auto; }
}