html,
body{
    width: 100% !important; 
    overflow-x: hidden !important;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter_n4.b2a3f24c19b4de56e8871f609e73ca7f6d2e2bb9.woff2") format("woff2");
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter_n7.02711e6b374660cfc7915d1afc1c204e633421e4.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/playfairdisplay_n7.592b3435e0fff3f50b26d410c73ae7ec893f6910.woff2") format("woff2");
}

:root {
  --ink: #111111;
  --muted: #69645f;
  --line: #e7e1d9;
  --paper: #fffdfa;
  --soft: #f6f1ec;
  --rose: #f7e4e0;
  --sage: #dce5d5;
  --gold: #b9975b;
  --gold-dark: #7f5f28;
  --shadow: 0 22px 70px rgba(24, 21, 18, 0.11);
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.is-locked {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 999;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.8rem 1rem;
  color: #ffffff;
  background: var(--ink);
  clip: auto;
}

.announcement-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0.65rem 1.25rem;
  color: #ffffff;
  background: #111111;
  font-size: 0.78rem;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 253, 250, 0.88);
  border-bottom: 1px solid rgba(231, 225, 217, 0.82);
  backdrop-filter: blur(18px);
}

.site-header{
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

.nav-wrap{
    width: 100% !important;
    max-width: 1400px !important;

    margin: 0 auto !important;

    box-sizing: border-box !important;
}

.quantity-picker div{
    display: flex !important;
    align-items: center !important;

    width: fit-content !important;

    border: 1px solid #ddd !important;
    border-radius: 999px !important;

    overflow: hidden !important;

    background: white !important;
}

.quantity-picker button{
    width: 56px !important;
    height: 56px !important;

    border: none !important;
    background: transparent !important;

    font-size: 1.5rem !important;
    cursor: pointer !important;

    transition: 0.2s !important;
}

.quantity-picker button:hover{
    background: #f5f5f5 !important;
}

.quantity-picker input{
    width: 70px !important;
    height: 56px !important;

    border: none !important;
    outline: none !important;

    text-align: center !important;

    font-size: 1.1rem !important;
    font-weight: 600 !important;

    background: white !important;

    appearance: textfield !important;
    -moz-appearance: textfield !important;
}

.quantity-picker input::-webkit-outer-spin-button,
.quantity-picker input::-webkit-inner-spin-button{
    -webkit-appearance: none !important;
    margin: 0 !important;
}

@media (max-width: 768px){

    .nav-wrap{
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;

        gap: 12px !important;

        width: 100% !important;

        padding: 0 14px !important;
    }

    .desktop-nav{
        display: none !important;
    }

    .brand img{
        max-width: 90px !important;
        height: auto !important;
    }

    .header-actions{
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;

        margin-left: auto !important;
    }

    .header_actions_btn{
        width: 38px !important;
        height: 38px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        padding: 0 !important;
    }

    .cart-count-bubble{
        width: 18px !important;
        height: 18px !important;

        font-size: 0.7rem !important;

        top: -4px !important;
        right: -4px !important;
    }

    .product-detail{
        display: flex !important;
        flex-direction: column !important;

        gap: 32px !important;
    }

    .gallery-main img{
        width: 100% !important;
        height: auto !important;
    }

    .product-summary h1{
        font-size: 2.2rem !important;
        line-height: 1.05 !important;
    }

    .detail-actions{
        display: flex !important;
        flex-direction: column !important;

        gap: 12px !important;
    }

    .detail-actions .button{
        width: 100% !important;
    }

}
.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  width: min(100% - 2rem, 1280px);
  min-height: var(--header-height);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 150px;
}

.brand img,
.footer-logo {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  color: #27231f;
  font-size: 0.88rem;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 0.4rem 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  content: "";
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
}

.search-form {
  display: grid;
  grid-template-columns: minmax(8rem, 13rem) 2.5rem;
  align-items: center;
  height: 2.7rem;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.search-form input {
  width: 100%;
  min-width: 0;
  padding: 0 0 0 1rem;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.search-form button,
.icon-link,
.mobile-menu-button {
  display: inline-grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.search-form button {
  border: 0;
  background: transparent;
}

.icon-link,
.mobile-menu-button {
  position: relative;
  transition: transform 180ms ease, border-color 180ms ease;
}

.icon-link:hover,
.mobile-menu-button:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.icon-link svg,
.search-form svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-count {
  position: absolute;
  top: -0.25rem;
  right: -0.2rem;
  display: grid;
  place-items: center;
  min-width: 1.2rem;
  height: 1.2rem;
  padding: 0 0.3rem;
  color: #ffffff;
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.mobile-menu-button {
  display: none;
  gap: 0.22rem;
}

.mobile-menu-button span {
  width: 1rem;
  height: 1px;
  background: currentColor;
}

.mobile-nav {
  display: none;
  width: min(100% - 2rem, 1280px);
  margin: 0 auto;
  padding: 0 0 1rem;
}

.mobile-nav a {
  display: block;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.flash-stack {
  position: fixed;
  z-index: 80;
  right: 1rem;
  top: calc(var(--header-height) + 3rem);
  display: grid;
  gap: 0.5rem;
  width: min(24rem, calc(100vw - 2rem));
}

.flash,
.toast {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(185, 151, 91, 0.35);
  border-radius: 0.75rem;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.toast {
  position: fixed;
  z-index: 90;
  right: 1rem;
  bottom: 1rem;
  max-width: 22rem;
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section {
  width: min(100% - 2rem, 1280px);
  margin: 0 auto;
  padding: 5.5rem 0;
}

.section-tight {
  padding-top: 4rem;
}

.section-heading {
  max-width: 48rem;
  margin: 0 0 2rem;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  max-width: none;
}

.eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.banner__heading {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
}

h1 {
  max-width: 14ch;
  margin-bottom: 1rem;
  font-size: 5.2rem;
}

h2 {
  margin-bottom: 1rem;
  font-size: 3.3rem;
}

h3 {
  font-size: 1rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.text-link,
.text-button {
  color: var(--gold-dark);
  background: transparent;
  border: 0;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 14px 35px rgba(17, 17, 17, 0.14);
}

.button-light {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.button-gold {
  color: #ffffff;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.hero-section {
  overflow: hidden;
  background: var(--soft);
}

.slideshow__wrapper {
  position: relative;
  overflow: hidden;
}

.swiper-wrapper {
  position: relative;
  min-height: clamp(34rem, 72vh, 48rem);
}

.swiper-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 650ms ease, visibility 650ms ease;
}

.swiper-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.slideshow__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--soft);
}

.slideshow__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 253, 250, 0.78), rgba(255, 253, 250, 0.18) 45%, rgba(255, 253, 250, 0));
  content: "";
}

.slideshow__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.d-sm-only-visible {
  display: none;
}

.slideshow__text-wrapper {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  align-items: center;
  width: min(100% - 2rem, 1280px);
  margin: 0 auto;
  pointer-events: none;
}

.banner__box {
  max-width: 34rem;
  padding: 2rem 0;
  pointer-events: auto;
}

.banner__text {
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
}

.banner__heading {
  margin-bottom: 1.6rem;
  color: var(--ink);
  font-size: 6.2rem;
}

.slideshow--banner-button .button {
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 14px 35px rgba(17, 17, 17, 0.14);
}

.right__btn_svg svg {
  width: 0.85rem;
  height: 0.85rem;
  fill: currentColor;
}

.slideshow--nav-button {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.swiper-button-prev {
  left: 1rem;
}

.swiper-button-next {
  right: 1rem;
}

.slideshow--nav-button svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.slider--controls--bullet {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 1.35rem;
  left: 0;
  display: flex;
  justify-content: center;
}

.swiper-pagination {
  display: flex;
  gap: 0.55rem;
}

.hero-dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  background: rgba(17, 17, 17, 0.25);
  border: 0;
  border-radius: 999px;
}

.hero-dot.is-active {
  width: 1.5rem;
  background: var(--ink);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.category-tile {
  position: relative;
  display: block;
  min-height: 24rem;
  overflow: hidden;
  border-radius: 0.5rem;
  isolation: isolate;
}

.category-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.38));
  content: "";
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.category-tile:hover img {
  transform: scale(1.04);
}

.category-tile span {
  position: absolute;
  z-index: 2;
  bottom: 1.25rem;
  left: 1.25rem;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.product-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(231, 225, 217, 0.85);
  border-radius: 0.5rem;
  box-shadow: 0 18px 55px rgba(24, 21, 18, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  border-color: rgba(185, 151, 91, 0.5);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, #fbf4ef, #f7e4e0);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 240ms ease, transform 400ms ease;
}

.product-card__hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .product-card__hover {
  opacity: 1;
}

.product-card:hover .product-card__media img:first-of-type {
  transform: scale(1.03);
}

.product-badge {
  position: absolute;
  z-index: 3;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.35rem 0.55rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.product-card__body {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.product-meta span {
  padding: 0.25rem 0.45rem;
  background: var(--soft);
  border-radius: 999px;
}

.product-card h3 {
  margin-bottom: 0;
}

.product-card p {
  min-height: 2.7rem;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.product-card__price,
.detail-price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-weight: 700;
}

.product-card__price s,
.detail-price s {
  color: var(--muted);
  font-weight: 400;
}

.product-card__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
}

.product-card__actions .button {
  min-height: 2.65rem;
  padding: 0.75rem 0.85rem;
  font-size: 0.86rem;
}

.cinematic-band {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 5rem max(1rem, calc((100vw - 1280px) / 2));
  background: linear-gradient(135deg, #151515, #28221c);
}

.cinematic-copy {
  color: #ffffff;
}

.cinematic-copy p {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.72);
}

.cinematic-media {
  min-height: 30rem;
  overflow: hidden;
  border-radius: 0.5rem 0 0 0.5rem;
}

.cinematic-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-row,
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-row div,
.value-grid article {
  padding: 1.3rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row span {
  margin-top: 0.35rem;
  color: var(--muted);
}

.site-footer {
  padding: 4rem 1rem 1.4rem;
  color: #ffffff;
  background: #111111;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 2rem;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.footer-grid h2 {
  margin-bottom: 0.8rem;
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer-logo {
  max-width: 10rem;
  margin-bottom: 1rem;
  filter: invert(1) grayscale(1) brightness(2);
  mix-blend-mode: screen;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.newsletter-form input {
  min-width: 0;
  padding: 0.85rem 1rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.newsletter-form button {
  padding: 0.85rem 1rem;
  color: var(--ink);
  background: #ffffff;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, 1280px);
  margin: 3rem auto 0;
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
}

.page-hero {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 2rem;
  align-items: center;
  width: min(100% - 2rem, 1280px);
  margin: 0 auto;
  padding: 5rem 0 3rem;
}

.page-hero p {
  max-width: 44rem;
  font-size: 1.08rem;
}

.page-hero img {
  width: 100%;
  height: clamp(24rem, 42vw, 38rem);
  object-fit: cover;
  border-radius: 0.5rem;
}

.compact-hero {
  display: block;
  padding-bottom: 2rem;
}

.compact-hero h1 {
  max-width: 13ch;
}

.products-layout {
  display: grid;
  grid-template-columns: 15rem 1fr;
  gap: 2rem;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}

.filter-panel h2 {
  margin-bottom: 0.5rem;
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.filter-panel a {
  padding: 0.7rem 0.8rem;
  color: var(--muted);
  border-radius: 999px;
  font-weight: 700;
}

.filter-panel a.is-active,
.filter-panel a:hover {
  color: var(--ink);
  background: var(--soft);
}

.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.results-bar span,
.results-bar strong {
  display: block;
}

.results-bar label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-weight: 700;
}

.results-bar select,
.contact-form select,
.checkout-form select {
  padding: 0.75rem 0.9rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  gap: 3rem;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 1rem;
}

.gallery-main {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--soft);
  border-radius: 0.5rem;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.65rem;
}

.gallery-thumbs button {
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}

.gallery-thumbs button.is-active {
  border-color: var(--gold);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-summary {
  display: grid;
  gap: 1.25rem;
}

.product-summary h1 {
  max-width: 12ch;
  margin-bottom: 0;
}

.product-lede {
  max-width: 42rem;
  font-size: 1.04rem;
}

.rating-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: var(--gold-dark);
}

.rating-line span {
  color: var(--gold);
}

.detail-price {
  font-size: 1.45rem;
}

.variant-picker {
  padding: 0;
  border: 0;
}

.variant-picker legend,
.quantity-picker > span {
  margin-bottom: 0.65rem;
  font-weight: 700;
}

.variant-picker > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.variant-picker input {
  position: absolute;
  opacity: 0;
}

.variant-picker span {
  display: inline-flex;
  min-width: 5rem;
  justify-content: center;
  padding: 0.8rem 1rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
}

.variant-picker input:checked + span {
  color: #ffffff;
  background: var(--ink);
  border-color: var(--ink);
}

.quantity-picker {
  display: grid;
  gap: 0.65rem;
}

.quantity-picker div {
  display: inline-grid;
  grid-template-columns: 2.8rem 4rem 2.8rem;
  width: max-content;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.quantity-picker button,
.quantity-picker input {
  height: 2.8rem;
  text-align: center;
  background: #ffffff;
  border: 0;
}

.quantity-picker input {
  width: 4rem;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.detail-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.notes-panel,
.accordions details,
.contact-card,
.cart-summary,
.form-section,
.auth-card,
.cart-panel {
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}

.notes-panel h2,
.cart-summary h2,
.form-section h2,
.contact-card h2 {
  font-family: Inter, sans-serif;
  font-size: 1rem;
}

.notes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.notes-list span {
  padding: 0.55rem 0.8rem;
  background: var(--soft);
  border-radius: 999px;
}

.accordions {
  display: grid;
  gap: 0.75rem;
}

.accordions summary,
.policy-content summary {
  cursor: pointer;
  font-weight: 700;
}

.accordions p,
.policy-content p {
  margin: 0.75rem 0 0;
}

.cart-layout,
.checkout-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24rem;
  gap: 2rem;
  align-items: start;
}

.cart-items {
  display: grid;
  gap: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 6rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.cart-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.cart-item img {
  width: 6rem;
  height: 6rem;
  object-fit: cover;
  background: var(--soft);
  border-radius: 0.5rem;
}

.cart-item h2 {
  margin-bottom: 0.35rem;
  font-family: Inter, sans-serif;
  font-size: 1rem;
}

.cart-item p {
  margin-bottom: 0.45rem;
}

.cart-item__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mini-qty {
  display: inline-grid;
  grid-template-columns: 2.2rem 2.6rem 2.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.mini-qty button,
.mini-qty span {
  display: grid;
  place-items: center;
  min-height: 2.2rem;
  background: #ffffff;
  border: 0;
}

.mini-qty span {
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.remove-button {
  color: var(--muted);
  background: transparent;
  border: 0;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.cart-summary {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  display: grid;
  gap: 0.9rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.summary-line.total {
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  font-size: 1.18rem;
}

.checkout-button {
  width: 100%;
}

.checkout-form,
.contact-form {
  display: grid;
  gap: 1rem;
}

.form-section {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: #34302c;
  font-weight: 700;
}

input,
textarea,
select {
  min-width: 0;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}

textarea {
  resize: vertical;
}

.radio-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.radio-line input {
  width: auto;
}

.checkout-items {
  display: grid;
  gap: 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.empty-state {
  display: grid;
  justify-items: start;
  gap: 0.5rem;
  padding: 2rem;
  background: var(--soft);
  border-radius: 0.5rem;
}

.contact-card {
  display: grid;
  gap: 1rem;
}

.contact-card a {
  color: var(--gold-dark);
  font-weight: 700;
}

.contact-card div {
  display: grid;
  gap: 0.3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.contact-card span {
  color: var(--muted);
}

.auth-page {
  display: grid;
  place-items: center;
  min-height: 70vh;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, var(--soft), var(--rose));
}

.auth-card {
  display: grid;
  gap: 1rem;
  width: min(100%, 28rem);
}

.auth-card h1 {
  max-width: none;
  font-size: 3.8rem;
}

.auth-card p {
  margin-bottom: 0;
}

.auth-card a {
  color: var(--gold-dark);
  font-weight: 700;
}

.text-card {
  justify-items: start;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.policy-content {
  display: grid;
  gap: 0.8rem;
  max-width: 850px;
}

.policy-content details {
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-row,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero,
  .product-detail,
  .cinematic-band,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .cinematic-media {
    min-height: 24rem;
    border-radius: 0.5rem;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .announcement-bar {
    flex-direction: column;
    gap: 0.15rem;
    text-align: center;
  }

  .nav-wrap {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }

  .brand {
    width: 124px;
  }

  .desktop-nav {
    display: none;
  }

  .nav-actions {
    gap: 0.4rem;
  }

  .search-form {
    display: none;
  }

  .mobile-menu-button {
    display: inline-grid;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .swiper-wrapper {
    min-height: 36rem;
  }

  .slideshow__media::after {
    background: linear-gradient(180deg, rgba(255, 253, 250, 0.12), rgba(255, 253, 250, 0.74) 58%, rgba(255, 253, 250, 0.9));
  }

  .slideshow__media img:not(.d-sm-only-visible) {
    display: none;
  }

  .d-sm-only-visible {
    display: block;
  }

  .slideshow__text-wrapper {
    align-items: end;
    padding-bottom: 4.4rem;
  }

  .banner__box {
    max-width: 100%;
  }

  .banner__heading {
    font-size: 4rem;
  }

  .slideshow--nav-button {
    display: none;
  }

  .category-grid,
  .products-layout,
  .cart-layout,
  .checkout-layout,
  .contact-layout,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .filter-panel,
  .cart-summary {
    position: static;
  }

  .filter-panel {
    display: flex;
    overflow-x: auto;
    padding: 0.75rem;
  }

  .filter-panel h2 {
    display: none;
  }

  .product-grid,
  .product-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-tile {
    min-height: 18rem;
  }

  .results-bar,
  .split-heading,
  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 3.5rem 0;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .banner__heading,
  .auth-card h1 {
    font-size: 3.35rem;
  }

  .product-grid,
  .trust-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-card__actions,
  .detail-actions,
  .form-row,
  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-hero {
    padding-top: 3.5rem;
  }

  .auth-page {
    place-items: start center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
