:root {
  --ink: #050505;
  --muted: #585858;
  --gold: #ac805d;
  --gold-2: #c49760;
  --cream: #fff9f4;
  --sand: #f5e7d6;
  --line: #e5dccf;
  --white: #fff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  --container: 1240px;
  --container-pad: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Marcellus", serif;
}

body.search-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.admin-menu-open {
  overflow: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.top-bar {
  background: var(--ink);
  color: var(--white);
  font-family: Outfit, sans-serif;
}

.top-bar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: var(--container);
  min-height: 56px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.top-bar p {
  margin: 0;
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.top-socials {
  display: flex;
  align-items: center;
  gap: 26px;
}

.top-socials a {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--white);
}

.top-socials svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  display: block;
}

.top-socials a:hover {
  color: var(--gold-2);
}

.top-login {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 999px;
  color: var(--white);
  font: 700 13px Outfit, sans-serif;
}

.top-login:hover {
  border-color: var(--gold-2);
  color: var(--gold-2);
}

.site-header {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 92px;
  align-items: center;
  gap: 26px;
  min-height: 136px;
  padding: 0 max(var(--container-pad), calc((100vw - var(--container)) / 2 + var(--container-pad)));
  background:
    var(--cream);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(172, 128, 93, 0.12);
}

.brand img { width: 260px; height: auto; margin-left: -35px; }

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  font-family: "Marcellus", serif;
  font-size: 16px;
  grid-column: 2;
  min-width: 0;
}

.nav > a,
.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 0;
  white-space: nowrap;
  line-height: 1;
}

.nav-item {
  position: relative;
}

.nav-item.has-dropdown > a::after {
  content: "";
  display: inline-flex;
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-left: 0;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  padding: 10px 0;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

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

.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  color: var(--muted);
  white-space: nowrap;
}

.nav-dropdown a:hover {
  color: var(--gold);
}

.header-actions {
  position: relative;
  z-index: 12;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  grid-column: 3;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle::before,
.menu-toggle::after,
.menu-toggle span {
  content: "";
  position: absolute;
  left: 6px;
  width: 26px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}

.menu-toggle::before { top: 11px; }
.menu-toggle span { top: 18px; }
.menu-toggle::after { top: 25px; }

.menu-toggle.is-active::before {
  top: 18px;
  transform: rotate(45deg);
}

.menu-toggle.is-active span {
  opacity: 0;
}

.menu-toggle.is-active::after {
  top: 18px;
  transform: rotate(-45deg);
}

.search-toggle {
  position: relative;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.search-toggle::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 13px;
  height: 13px;
  border: 1.6px solid var(--ink);
  border-radius: 50%;
}

.search-toggle::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 10px;
  height: 1.6px;
  background: var(--ink);
  transform: rotate(45deg);
  transform-origin: left center;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: start center;
  padding: 18vh var(--container-pad) 40px;
  background: rgba(5, 5, 5, .62);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}

.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.search-panel {
  width: min(760px, 100%);
  padding: 38px;
  background: var(--cream);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.search-panel p {
  margin: 0 0 22px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  text-align: center;
}

.search-panel form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.search-panel input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: 16px Outfit, sans-serif;
  outline-color: var(--gold);
}

.search-close {
  display: block;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: 700 13px Outfit, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-family: Outfit, sans-serif;
  font-weight: 600;
  cursor: pointer;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.hero-slider {
  position: relative;
  min-height: 760px;
  background: linear-gradient(90deg, var(--sand) 0 31%, var(--cream) 31% 100%);
  overflow: hidden;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
  max-width: var(--container);
  min-height: 760px;
  margin: 0 auto;
  padding: 70px var(--container-pad) 90px;
}

.hero-slide.is-active { display: grid; }

.hero-slide.is-active .hero-media img {
  animation: heroImageIn .9s ease both, heroImageFloat 5s ease-in-out .9s infinite;
}

.hero-slide.is-active .hero-copy span {
  animation: heroTextIn .55s ease .12s both;
}

.hero-slide.is-active .hero-copy h1 {
  animation: heroTextIn .65s ease .22s both;
}

.hero-slide.is-active .hero-copy p {
  animation: heroTextIn .72s ease .34s both;
}

.hero-slide.is-active .hero-copy .button {
  animation: heroTextIn .72s ease .46s both;
}

.hero-slide.is-active .hero-thumb {
  animation: heroThumbIn .75s ease .58s both, heroThumbFloat 4.6s ease-in-out 1.35s infinite;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 48% 0 0 0;
}

.hero-copy span,
.eyebrow {
  color: #d17322;
  font-family: Outfit, sans-serif;
  font-size: 14px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 640px;
  margin: 16px 0 22px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.06;
  font-weight: 400;
}

.hero-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.hero-thumb {
  width: 190px;
  margin-top: 44px;
  margin-left: min(12vw, 180px);
  border-radius: 120px 120px 0 0;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  font-family: "Marcellus", serif;
  font-size: 16px;
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--gold);
  color: var(--white);
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: translateX(-36px) scale(1.04);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes heroImageFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.015); }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroThumbIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroThumbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active .hero-media img,
  .hero-slide.is-active .hero-copy span,
  .hero-slide.is-active .hero-copy h1,
  .hero-slide.is-active .hero-copy p,
  .hero-slide.is-active .hero-copy .button,
  .hero-slide.is-active .hero-thumb {
    animation: none;
  }
}

.launch-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px var(--container-pad) 52px;
}

.launch-heading {
  margin: 0 0 18px;
  text-align: center;
}

.launch-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 50px);
  line-height: 1.1;
  font-weight: 400;
}

.launch-heading h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  margin: 20px auto 18px;
  background: var(--ink);
}

.launch-heading p {
  margin: 0;
  color: var(--ink);
  font-family: Outfit, sans-serif;
  font-size: 14px;
  letter-spacing: 0.48em;
  text-transform: uppercase;
}

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

.launch-card {
  position: relative;
  display: grid;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.launch-card img,
.launch-card span,
.launch-card div {
  grid-area: 1 / 1;
}

.launch-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.launch-card span {
  background: rgba(0, 0, 0, 0.42);
}

.launch-card div {
  place-self: center;
  width: min(92%, 820px);
  padding: 22px;
  position: relative;
  z-index: 1;
}

.launch-card h2 {
  margin: 0;
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 400;
}

.launch-card h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  margin: 18px auto;
  background: var(--white);
}

.launch-card strong {
  display: block;
  margin-bottom: 12px;
  font-family: Outfit, sans-serif;
  font-size: 13px;
  letter-spacing: 0.42em;
  line-height: 1.5;
  text-transform: uppercase;
}

.launch-card p {
  margin: 0;
  font-family: Outfit, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

.launch-card:hover img {
  transform: scale(1.04);
}

.match-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 34px var(--container-pad) 36px;
}

.match-heading {
  margin-bottom: 22px;
  text-align: center;
}

.match-heading h2 {
  margin: 0;
  font-size: clamp(42px, 4.2vw, 56px);
  line-height: 1.1;
  font-weight: 400;
}

.match-heading h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  margin: 24px auto;
  background: var(--ink);
}

.match-heading p {
  margin: 0;
  font-family: Outfit, sans-serif;
  font-size: 14px;
  letter-spacing: 0.48em;
  text-transform: uppercase;
}

.match-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 50px 20px;
}

.match-card {
  position: relative;
  display: grid;
  min-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.match-card img,
.match-card span,
.match-card strong,
.match-card em {
  grid-area: 1 / 1;
}

.match-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.match-card span {
  background: linear-gradient(180deg, rgba(0,0,0,.02) 35%, rgba(0,0,0,.58) 100%);
}

.match-card strong {
  align-self: end;
  justify-self: center;
  z-index: 1;
  padding: 0 18px 14px;
  font-family: "Marcellus", serif;
  font-size: clamp(23px, 2vw, 29px);
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.match-card em {
  align-self: end;
  justify-self: center;
  z-index: 1;
  padding-bottom: 50px;
  color: var(--ink);
  font-family: Outfit, sans-serif;
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.match-card:hover img {
  transform: scale(1.04);
}

.section,
.page-title,
.shop-layout,
.product-detail,
.details-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px var(--container-pad);
}

.page-title + .shop-layout {
  padding-top: 20px;
}

.section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.section-heading h2,
.page-title h1,
.details-section h2 {
  margin: 0 0 12px;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
}

.section-heading p,
.page-title p {
  margin: 0;
  color: var(--muted);
  font-family: Outfit, sans-serif;
}

.about-hero,
.about-story,
.about-values,
.about-craft,
.about-signature {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr);
  gap: 54px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 72px;
}

.about-hero-media {
  overflow: hidden;
  border-radius: 8px;
}

.about-hero-media img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.about-hero-copy p,
.about-story-copy > p,
.about-craft > div p,
.about-signature p {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: Outfit, sans-serif;
  font-size: 13px;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.about-hero-copy h1 {
  margin: 0;
  font-size: clamp(48px, 5vw, 78px);
  line-height: 1.04;
  font-weight: 400;
}

.about-hero-copy span {
  display: block;
  margin-top: 26px;
  color: var(--muted);
  font-family: Outfit, sans-serif;
  font-size: 17px;
  line-height: 1.85;
}

.about-story {
  padding-top: 76px;
  padding-bottom: 76px;
  border-top: 1px solid var(--line);
}

.about-story-copy {
  display: grid;
  grid-template-columns: minmax(280px, .55fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
  margin-bottom: 42px;
}

.about-story-copy h2,
.about-craft h2,
.about-signature h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.12;
  font-weight: 400;
}

.about-story-copy div {
  color: var(--muted);
  font-family: Outfit, sans-serif;
  font-size: 16px;
  line-height: 1.85;
}

.about-story-copy div p {
  margin: 0 0 18px;
}

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

.about-story-grid img,
.about-signature img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
  padding-bottom: 76px;
}

.about-values article {
  min-height: 260px;
  padding: 34px 30px;
  background: var(--white);
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow);
}

.about-values strong {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-family: Outfit, sans-serif;
  letter-spacing: .18em;
}

.about-values h2 {
  margin: 0 0 16px;
  font-size: 30px;
  font-weight: 400;
}

.about-values p {
  margin: 0;
  color: var(--muted);
  font-family: Outfit, sans-serif;
  line-height: 1.75;
}

.about-craft {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  padding-top: 72px;
  padding-bottom: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-craft ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-craft li {
  padding: 0 0 18px 34px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: Outfit, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  position: relative;
}

.about-craft li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
}

.about-signature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  gap: 54px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 86px;
}

.about-signature .button {
  margin-top: 28px;
}

.legal-title {
  padding-bottom: 24px;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--container-pad) 84px;
}

.legal-page h2 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 400;
}

.legal-page p {
  margin: 0 0 18px;
  color: var(--muted);
  font-family: Outfit, sans-serif;
  font-size: 16px;
  line-height: 1.85;
}

.legal-editor-form textarea {
  min-height: 360px;
  line-height: 1.65;
}

.contact-hero,
.contact-info-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px var(--container-pad);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(420px, .82fr);
  gap: 58px;
  align-items: center;
}

.contact-hero-copy p {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: Outfit, sans-serif;
  font-size: 13px;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.contact-hero-copy h1 {
  margin: 0;
  font-size: clamp(46px, 5vw, 74px);
  line-height: 1.05;
  font-weight: 400;
}

.contact-hero-copy span {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-family: Outfit, sans-serif;
  font-size: 17px;
  line-height: 1.85;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 38px;
  background: var(--white);
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fffdfb;
  color: var(--ink);
  font: 500 15px Outfit, sans-serif;
  outline-color: var(--gold);
}

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

.contact-form .button {
  justify-self: start;
  border: 0;
}

.contact-info-section {
  padding-top: 32px;
}

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

.contact-info-card {
  display: grid;
  align-content: start;
  min-height: 280px;
  padding: 34px 26px;
  background: var(--white);
  border-top: 1px solid rgba(172, 128, 93, .45);
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--gold);
}

.contact-info-card > span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--gold);
}

.contact-info-card svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.contact-info-card h2 {
  margin: 0 0 14px;
  font-size: 27px;
  font-weight: 400;
}

.contact-info-card p {
  margin: 0;
  color: var(--muted);
  font-family: Outfit, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

.contact-map {
  max-width: var(--container);
  margin: 0 auto 84px;
  padding: 0 var(--container-pad);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
  filter: saturate(.35) contrast(.98);
  background: var(--sand);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-card-media {
  position: relative;
  overflow: hidden;
}

.product-card-media > a {
  display: block;
}

.product-badge,
.product-summary-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font: 700 12px Outfit, sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
}

.product-summary-badge {
  margin-bottom: 12px;
}

.product-review-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: -6px 0 14px;
  color: var(--muted);
  font: 500 14px Outfit, sans-serif;
}

.product-review-summary a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.review-stars {
  color: #d99a19;
  letter-spacing: .08em;
  white-space: nowrap;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-card-actions {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 18px;
  background: rgba(255, 250, 245, .82);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.product-card-media:hover .product-card-actions,
.product-card-media:focus-within .product-card-actions {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.product-card-actions form {
  display: contents;
}

.product-card-actions button {
  min-width: 150px;
  min-height: 40px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font: 800 12px Outfit, sans-serif;
  cursor: pointer;
}

.product-card-actions button[data-wishlist-toggle] {
  border-color: var(--gold);
  background: var(--gold);
}

.product-card-actions button[data-quick-view] {
  border-color: var(--ink);
  background: #fffdfb;
  color: var(--ink);
}

.product-card-actions button.is-saved {
  border-color: #0f7a35;
  background: #0f7a35;
  color: #fff;
}

.quick-view-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .54);
}

.quick-view-modal.is-open {
  display: grid;
}

.quick-view-dialog {
  position: relative;
  display: grid;
  grid-template-columns: 260px minmax(0, 360px);
  gap: 24px;
  width: min(760px, 100%);
  padding: 24px;
  background: #fffdfb;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.quick-view-dialog img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f5eadf;
}

.quick-view-dialog h2 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
}

.quick-view-dialog strong {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 400;
}

.quick-view-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: transparent;
  font-size: 26px;
  cursor: pointer;
}

.product-card h3 {
  min-height: 66px;
  margin: 14px 14px 7px;
  font-size: 19px;
  line-height: 1.28;
  font-weight: 400;
}

.product-card p,
.product-card strong {
  display: block;
  margin: 0 14px 10px;
  color: var(--muted);
}

.product-card-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 14px 8px;
  color: var(--muted);
  font: 500 13px Outfit, sans-serif;
}

.product-card-rating small {
  font: inherit;
}

.product-card strong {
  margin-bottom: 16px;
  color: var(--ink);
  font-family: "Marcellus", serif;
  font-size: 20px;
  font-weight: 400;
}

.shop-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 22px;
  padding: 36px 24px 56px;
}

.price-filter {
  display: grid;
  gap: 15px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid rgba(172, 128, 93, .28);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdfb 0%, #fff8f1 100%);
  box-shadow: 0 14px 30px rgba(47, 36, 28, .06);
}

.price-filter h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 22px;
  font-weight: 400;
}

.price-filter h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(172, 128, 93, .35);
}

.price-filter-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.price-filter-values span {
  min-width: 0;
  padding: 10px 9px;
  border: 1px solid rgba(172, 128, 93, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
}

.price-filter-values small {
  color: var(--muted);
  font: 700 11px Outfit, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-filter-values strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-family: "Marcellus", serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.15;
  white-space: nowrap;
}

.price-range-control {
  --price-min-pos: 0%;
  --price-max-pos: 100%;
  position: relative;
  height: 36px;
  margin: 2px 0 4px;
}

.price-range-track,
.price-range-progress {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 7px;
  border-radius: 999px;
  transform: translateY(-50%);
}

.price-range-track {
  background: #eadbcb;
}

.price-range-progress {
  left: var(--price-min-pos);
  right: calc(100% - var(--price-max-pos));
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  box-shadow: 0 4px 12px rgba(172, 128, 93, .22);
}

.price-filter input[type="range"] {
  appearance: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 36px;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  outline: none;
  accent-color: var(--gold);
  pointer-events: none;
}

.price-filter input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 4px 12px rgba(47, 36, 28, .24);
  cursor: pointer;
  pointer-events: auto;
}

.price-filter input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 4px 12px rgba(47, 36, 28, .24);
  cursor: pointer;
  pointer-events: auto;
}

.price-filter input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: transparent;
}

.price-filter input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: transparent;
}

.price-filter-actions {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 8px;
}

.price-filter-actions .button {
  width: 100%;
  min-height: 42px;
  padding: 0 16px;
  font-size: 13px;
}

.price-filter-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0;
  border: 1px solid rgba(172, 128, 93, .28);
  border-radius: 6px;
  color: var(--gold);
  font: 700 13px Outfit, sans-serif;
}

.shop-filter-toggle {
  display: none;
}

.shop-layout .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-layout .product-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-layout .product-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-layout .product-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.filters {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.filters h2 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 400;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 32px;
  align-items: start;
}

.approved-reviews {
  display: grid;
  gap: 16px;
}

.review-card {
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

.review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-family: Outfit, sans-serif;
  line-height: 1.7;
}

.review-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.review-form h2 {
  margin: 0;
  font-size: 28px;
}

.review-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font: 700 13px Outfit, sans-serif;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #fffdfb;
  font: 400 15px Outfit, sans-serif;
  outline-color: var(--gold);
}

.review-form textarea {
  resize: vertical;
}

.filter-group {
  margin-top: 10px;
}

.filter-group summary {
  padding: 10px 0;
  color: var(--ink);
  font-family: "Marcellus", serif;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.filters a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  font-family: "Marcellus", serif;
  border-bottom: 1px solid var(--line);
}

.filters .filter-parent {
  color: var(--ink);
  font-weight: 700;
}

.filters .filter-child {
  padding-left: 16px;
  font-size: 16px;
}

.filters a.is-active { color: var(--gold); font-weight: 700; }

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  color: var(--muted);
  font-family: Outfit, sans-serif;
}

.shop-toolbar p {
  margin: 0;
}

.shop-sort {
  margin-left: auto;
}

.shop-sort label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font: 600 14px Outfit, sans-serif;
}

.shop-sort select {
  min-height: 42px;
  padding: 0 36px 0 12px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: 600 14px Outfit, sans-serif;
  cursor: pointer;
}

.shop-grid-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font: 600 14px Outfit, sans-serif;
  white-space: nowrap;
}

.shop-grid-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: 600 14px Outfit, sans-serif;
}

.shop-grid-switch a.is-active,
.shop-grid-switch a:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.shop-search {
  display: flex;
  gap: 10px;
  min-width: min(420px, 100%);
}

.shop-search input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: 15px Outfit, sans-serif;
}

.shop-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  font-family: Outfit, sans-serif;
}

.shop-pagination a,
.shop-pagination span {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.shop-pagination a:hover,
.shop-pagination .is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.shop-pagination .is-disabled {
  color: #aaa;
  pointer-events: none;
}

.empty-state {
  padding: 44px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.empty-state h2 {
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 400;
}

.empty-state p {
  margin: 0;
  color: var(--muted);
  font-family: Outfit, sans-serif;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.9fr);
  gap: 52px;
  align-items: center;
}

.product-hero {
  max-width: none;
  margin: 0;
  padding: 72px var(--container-pad);
  background:
    var(--sand);
  text-align: center;
}

.product-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 400;
}

.product-hero p {
  margin: 0;
  color: var(--muted);
  font-family: Outfit, sans-serif;
}

.product-hero a:hover { color: var(--gold); }

.single-product,
.product-copy-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 66px var(--container-pad) 28px;
}

.single-product {
  display: grid;
  grid-template-columns: minmax(460px, 560px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 18px;
}

.product-main-image {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  background: var(--white);
  object-fit: cover;
}

.product-main-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.product-main-button .product-main-image {
  pointer-events: none;
}

.product-thumbs {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.product-thumbs button {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  background: var(--white);
  cursor: pointer;
}

.product-thumbs button.is-active {
  border-color: var(--ink);
}

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

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 40px 88px;
  background: rgba(0, 0, 0, .86);
}

.product-lightbox img {
  max-width: min(100%, 1180px);
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 22px 90px rgba(0, 0, 0, .35);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  cursor: pointer;
}

.lightbox-close {
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 58px;
  height: 72px;
  font-size: 54px;
  line-height: .8;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.product-summary h1 {
  max-width: 720px;
  margin: 2px 0 8px;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.18;
  font-weight: 400;
}

.product-short-description {
  max-width: 660px;
  margin: 0 0 16px;
  color: var(--muted);
  font-family: Outfit, sans-serif;
  font-size: 16px;
  line-height: 1.72;
}

.product-short-list {
  display: grid;
  gap: 7px;
  margin-top: 2px;
  padding-left: 18px;
}

.product-short-list li::marker {
  color: var(--gold);
}

.option-group {
  margin: 14px 0;
}

.option-group span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-family: Outfit, sans-serif;
  font-size: 13px;
}

.option-group div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option-group button {
  min-width: 54px;
  min-height: 38px;
  padding: 0 17px;
  border: 0;
  border-radius: 8px;
  background: var(--gold-2);
  color: var(--white);
  font-family: Outfit, sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.option-group button.is-active {
  background: var(--ink);
}

.product-bullets {
  margin: 18px 0 22px;
  padding-left: 18px;
  color: var(--muted);
  font-family: Outfit, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}

.product-whatsapp {
  width: 100%;
  max-width: 620px;
  min-height: 48px;
  margin: 0 0 18px;
  border-color: #d7c4b1;
  background: #fffaf5;
  color: var(--ink);
  font-weight: 700;
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 5, 5, .42);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.order-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.order-dialog {
  width: min(430px, 100%);
  padding: 42px 28px 28px;
  background: var(--white);
  box-shadow: 0 22px 80px rgba(0, 0, 0, .24);
}

.order-dialog h2 {
  margin: 0 0 20px;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 400;
}

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

.order-dialog input {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid #bfbfbf;
  background: var(--white);
  color: var(--ink);
  font: 17px Outfit, sans-serif;
  outline-color: var(--gold);
}

.order-dialog form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  margin-top: 16px;
}

.order-dialog .button {
  min-height: 56px;
  padding-inline: 26px;
}

.product-meta {
  color: var(--muted);
  font-family: Outfit, sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.product-meta p {
  margin: 7px 0;
}

.product-copy-section {
  padding-top: 22px;
}

.product-copy-tabs {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.product-copy-tabs button {
  padding: 0 0 16px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--ink);
  font-family: "Marcellus", serif;
  font-size: 20px;
  cursor: pointer;
}

.product-copy-tabs button.is-active {
  color: var(--gold);
  border-color: var(--gold);
}

.product-copy-section .tab-panel {
  padding-top: 28px;
  color: var(--muted);
  font-family: Outfit, sans-serif;
  line-height: 1.85;
}

.product-copy-section h2 {
  margin: 28px 0 12px;
  color: var(--ink);
  font-family: "Marcellus", serif;
  font-size: 32px;
  font-weight: 400;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
  background: var(--white);
}

.summary h1 {
  margin: 12px 0 18px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.12;
  font-weight: 400;
}

.summary p {
  color: var(--muted);
  font-family: Outfit, sans-serif;
  line-height: 1.8;
}

.price {
  margin: 22px 0;
  font-family: "Marcellus", serif;
  font-size: 28px;
  font-weight: 400;
}

.details-section h2 { text-align: center; }

.details-section {
  padding-top: 48px;
}

.detail-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 20px 0 28px;
}

.detail-tabs button {
  border: 0;
  border-radius: 14px;
  padding: 14px 26px;
  background: var(--gold-2);
  color: var(--white);
  font-family: Outfit, sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.detail-tabs button.is-active { background: var(--ink); }

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.tab-panel { display: none; }
.tab-panel.is-active { display: block; }
.is-hidden { display: none !important; }

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

.spec-accordion {
  display: grid;
  gap: 12px;
}

.spec-accordion details {
  overflow: hidden;
  border: 1px solid #e5d5c3;
  border-radius: 12px;
  background: #fffaf5;
}

.spec-accordion summary {
  min-height: 52px;
  padding: 17px 24px;
  background: #f8f1e8;
  color: var(--muted);
  font-family: Outfit, sans-serif;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
}

.spec-accordion summary::-webkit-details-marker {
  display: none;
}

.spec-accordion details[open] summary {
  border-bottom: 1px solid rgba(229, 213, 195, .45);
}

.spec-accordion p {
  margin: 0;
  padding: 22px 24px 26px;
  color: var(--muted);
  font-family: Outfit, sans-serif;
  line-height: 1.7;
}

.spec-list div {
  padding: 22px 24px 26px;
  background: transparent;
  border: 0;
}

.spec-list strong,
.spec-list span {
  display: block;
  font-family: Outfit, sans-serif;
}

.spec-list strong {
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
}

.spec-list span {
  margin-top: 9px;
  color: var(--muted);
  font-size: 15px;
}

.combo-spec-list {
  border-top: 1px solid rgba(229, 213, 195, .5);
}

.combo-spec-list:first-of-type {
  border-top: 0;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
  background: var(--white);
}

.price-table th,
.price-table td {
  padding: 17px 14px;
  border: 1px solid var(--line);
  text-align: center;
  font-family: Outfit, sans-serif;
}

.price-table th {
  background: var(--gold-2);
  color: var(--white);
  text-align: left;
  text-transform: uppercase;
}

.price-table .price-total-row td {
  font-weight: 800;
}

.price-table .price-total-row td[colspan] {
  text-align: center;
}

.price-table tfoot td {
  font-weight: 700;
  font-size: 18px;
}

.detail-image {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  border-radius: 14px;
  background: var(--white);
}

.story-video-section {
  background: #f4e6d3;
  margin-top: 22px;
}

.story-video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 54px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px var(--container-pad);
}

.story-video-media iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 18px 44px rgba(43, 31, 19, .12);
}

.story-video-copy p:first-child {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: Outfit, sans-serif;
  font-size: 13px;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.story-video-copy h2 {
  margin: 0 0 26px;
  font-size: clamp(40px, 4.4vw, 58px);
  line-height: 1.08;
  font-weight: 400;
}

.story-video-text p {
  margin: 0 0 14px;
  color: #5e524a;
  font-family: Outfit, sans-serif;
  font-size: 16px;
  line-height: 1.85;
}

.story-video-button {
  margin-top: 24px;
  background: #b58961;
  border-color: #b58961;
  box-shadow: none;
}

.story-video-button:hover {
  background: #926742;
  border-color: #926742;
}

.prefooter {
  margin-top: 64px;
}

.testimonial-section {
  padding: 78px 0 94px;
  background: var(--cream);
}

.testimonial-heading {
  max-width: var(--container);
  margin-bottom: 56px;
  margin-inline: auto;
  text-align: center;
}

.testimonial-heading p {
  margin: 0 0 10px;
  font-family: Outfit, sans-serif;
  font-size: 13px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.testimonial-heading h2,
.newsletter-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 400;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  max-width: var(--container);
  margin: 0 auto;
}

.testimonial-card {
  min-height: 280px;
  padding: 44px 32px;
  background: var(--white);
  border-top: 1px solid rgba(172, 128, 93, .45);
}

.stars {
  margin-bottom: 20px;
  color: #ef9b13;
  font-family: Outfit, sans-serif;
  letter-spacing: .12em;
}

.testimonial-card p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.75;
}

.testimonial-card h3 {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.testimonial-card span {
  display: block;
  margin-top: 14px;
  font-size: 14px;
}

.newsletter-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .95fr) minmax(220px, .45fr);
  align-items: center;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px 0;
}

.newsletter-copy p {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  font-family: Outfit, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

.newsletter-form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
}

.newsletter-form input[type="email"] {
  width: 100%;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--line);
  background: var(--sand);
  color: var(--ink);
  font: 15px Outfit, sans-serif;
}

.newsletter-form button {
  border: 0;
  background: var(--ink);
  color: var(--white);
  font: 600 14px Outfit, sans-serif;
  cursor: pointer;
}

.newsletter-form label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-size: 14px;
}

.social-block {
  min-height: 136px;
  padding-left: 48px;
  border-left: 1px solid var(--ink);
}

.social-block h3 {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 400;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font: 700 14px Outfit, sans-serif;
  text-transform: uppercase;
}

.social-links svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  display: block;
}

.site-footer {
  margin-top: 0;
  padding: 68px 0 0;
  background: var(--gold);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 70px);
  max-width: var(--container);
  margin: 0 auto;
  padding-bottom: 52px;
}

.footer-links h2 {
  margin: 0 0 22px;
  font-size: 30px;
  font-weight: 400;
}

.footer-links a {
  display: block;
  padding: 7px 0;
  color: var(--white);
  font-family: "Marcellus", serif;
  font-size: 17px;
  line-height: 1.45;
}

.footer-bottom a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
}

.footer-brand img {
  width: 250px;
  margin-bottom: 22px;
}

.footer-brand p {
  margin: 0;
  color: var(--white);
  font-family: Outfit, sans-serif;
  font-size: 15px;
  line-height: 1.85;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
  font-family: Outfit, sans-serif;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  text-align: right;
}

.payment-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.payment-logos img {
  width: 38px;
  height: 24px;
  padding: 3px;
  border: 1px solid var(--line);
  background: var(--white);
  object-fit: contain;
}

.admin-page {
  background: #f6f2ec;
  font-family: Outfit, sans-serif;
}

.admin-menu-toggle,
.admin-menu-backdrop {
  display: none;
}

.login-card {
  width: min(420px, calc(100% - 40px));
  margin: 12vh auto;
  padding: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.login-card input,
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  min-height: 44px;
  margin-top: 7px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  font: inherit;
}

.admin-form input[type="file"] {
  padding: 8px;
  background: #fbf8f4;
}

.admin-social-preview {
  display: grid;
  gap: 10px;
  font-weight: 700;
}

.admin-top-bar-preview {
  overflow: hidden;
  border-radius: 10px;
}

.admin-top-bar-preview .top-bar-inner {
  min-height: 48px;
  padding-inline: 24px;
}

.admin-image-field {
  display: grid;
  gap: 10px;
  font-weight: 700;
}

.admin-image-preview,
.admin-gallery-preview {
  min-height: 126px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fbf8f4;
}

.admin-image-preview {
  display: grid;
  place-items: center;
}

.admin-image-preview img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.admin-gallery-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.admin-gallery-preview img {
  width: 112px;
  height: 88px;
  object-fit: cover;
  background: var(--white);
  border: 1px solid var(--line);
}

.admin-image-preview em,
.admin-gallery-preview em {
  color: var(--muted);
  font-weight: 400;
}

.admin-category-box {
  display: grid;
  gap: 12px;
  font-weight: 700;
}

.admin-category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 54px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fbf8f4;
}

.admin-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 10px 0 13px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.admin-category-tag button {
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .24);
  color: var(--white);
  cursor: pointer;
}

.admin-category-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-category-suggestions button {
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font: 600 13px Outfit, sans-serif;
  cursor: pointer;
}

.admin-category-suggestions button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.admin-category-box input[type="search"] {
  margin: 0;
}

.error { color: #a40000; }
.success { color: #0f7a35; }
.muted { color: var(--muted); }

.admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 230px;
  padding: 28px 22px;
  background: var(--ink);
  color: var(--white);
}

.admin-logo {
  display: block;
  margin: 0 0 32px;
  padding: 0;
}

.admin-logo img {
  width: 168px;
  height: auto;
}

.admin-sidebar h1 { margin: 0 0 30px; font-size: 26px; }
.admin-sidebar a { display: block; padding: 11px 0; color: rgba(255,255,255,.72); }
.admin-sidebar .admin-logo { padding: 0; }
.admin-sidebar a.is-active { color: var(--white); }

.admin-nav-group {
  margin: 4px 0;
}

.admin-nav-toggle {
  position: relative;
  display: block;
  width: 100%;
  padding: 11px 18px 11px 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.72);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.admin-nav-toggle::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
}

.admin-nav-group.is-open .admin-nav-toggle,
.admin-nav-toggle.is-active {
  color: var(--white);
}

.admin-nav-submenu {
  display: none;
  margin: 0 0 8px 10px;
  padding: 4px 0 4px 15px;
  border-left: 1px solid rgba(255,255,255,.18);
}

.admin-nav-group.is-open .admin-nav-submenu {
  display: block;
}

.admin-nav-submenu a {
  padding: 8px 0;
  font-size: 14px;
}

.admin-main {
  margin-left: 230px;
  padding: 34px;
}

.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  gap: 20px;
}

.metric,
.admin-table,
.admin-form,
.admin-card {
  background: var(--white);
  box-shadow: var(--shadow);
}

.metric { padding: 24px; }
.metric span { display: block; color: var(--muted); }
.metric strong { font-size: 40px; }

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

.admin-card {
  padding: 24px;
}

.admin-card h3 {
  margin: 0 0 14px;
}

.seo-score-card {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 24px;
  align-items: start;
  margin: 0 0 24px;
  padding: 24px;
  background: var(--white);
  border-left: 6px solid #c45545;
  box-shadow: var(--shadow);
}

.seo-score-card.is-ok { border-left-color: #c89b59; }
.seo-score-card.is-good { border-left-color: #1f8f54; }

.seo-score-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.seo-score-card strong {
  display: block;
  margin: 8px 0;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 400;
}

.seo-score-card p {
  margin: 0;
  color: var(--muted);
}

.seo-score-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-score-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: #fffaf4;
}

.seo-score-card li span {
  flex: 0 0 auto;
  min-width: 42px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #c45545;
  color: #fff;
  font-size: 11px;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
}

.seo-score-card li.is-pass span { background: #1f8f54; }

.seo-score-card small {
  margin-left: auto;
  color: var(--muted);
}

.products-head h2 {
  margin-bottom: 6px;
}

.products-head p {
  margin: 0;
  color: var(--muted);
}

.admin-eyebrow {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.product-admin-stats a {
  display: block;
  padding: 18px 20px;
  border: 1px solid #e4d5c5;
  border-radius: 14px;
  background: #fffdfb;
  color: #221a15;
  box-shadow: 0 12px 32px rgba(47, 36, 28, .08);
}

.product-admin-stats a.is-active,
.product-admin-stats a:hover {
  border-color: var(--gold);
  background: #fff8f0;
}

.product-admin-stats span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-admin-stats strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 400;
}

.product-admin-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 220px auto auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid #e4d5c5;
  border-radius: 14px;
  background: #fffdfb;
  box-shadow: 0 12px 32px rgba(47, 36, 28, .08);
}

.product-admin-toolbar label {
  display: grid;
  gap: 7px;
  color: #352d26;
  font-size: 13px;
  font-weight: 800;
}

.product-admin-toolbar label span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.product-admin-toolbar input,
.product-admin-toolbar select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #dacbb9;
  border-radius: 8px;
  background: #fffaf5;
  padding: 0 12px;
  font: 500 14px Outfit, sans-serif;
}

.product-admin-list {
  display: grid;
  gap: 10px;
}

.product-admin-list-head,
.product-admin-row {
  display: grid;
  grid-template-columns: minmax(320px, 1.45fr) minmax(190px, .85fr) minmax(140px, .55fr) minmax(170px, .65fr) minmax(230px, .8fr);
  gap: 16px;
  align-items: center;
}

.product-admin-list-head {
  padding: 0 18px 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-admin-row {
  padding: 16px;
  border: 1px solid #e4d5c5;
  border-radius: 16px;
  background: #fffdfb;
  box-shadow: 0 12px 32px rgba(47, 36, 28, .08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-admin-row:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 18px 42px rgba(47, 36, 28, .12);
}

.product-admin-main {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.product-admin-main img {
  width: 92px;
  height: 92px;
  border-radius: 12px;
  object-fit: cover;
  background: #f4eadf;
}

.product-admin-main h3 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}

.product-admin-main p,
.product-admin-price span,
.product-admin-categories small {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.product-admin-tags,
.product-admin-categories,
.product-admin-statuses,
.product-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.product-admin-tags {
  margin-top: 10px;
}

.product-admin-tags span,
.product-admin-categories span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f5eadf;
  color: #5d4939;
  font-size: 12px;
  font-weight: 700;
}

.product-admin-price strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
}

.product-admin-actions {
  justify-content: flex-end;
}

.product-admin-actions .button {
  min-height: 36px;
  padding: 0 14px;
  font-size: 13px;
}

.product-delete-button {
  border-color: #f0c9c9;
  color: #a40000;
}

.product-admin-empty {
  padding: 34px;
  border: 1px dashed #dacbb9;
  border-radius: 16px;
  background: #fffdfb;
  text-align: center;
}

.product-admin-empty h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
}

.product-admin-empty p {
  margin: 0;
  color: var(--muted);
}

.cart-toggle {
  position: relative;
  display: inline-flex;
  width: 34px;
  height: 34px;
  color: var(--ink);
}

.cart-toggle::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  width: 15px;
  height: 12px;
  border: 1.7px solid currentColor;
  border-top: 0;
  border-radius: 0 0 3px 3px;
}

.cart-toggle::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 5px;
  width: 7px;
  height: 8px;
  border: 1.7px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.cart-toggle:hover,
.search-toggle:hover {
  color: var(--gold);
}

.account-page,
.cart-page,
.checkout-page,
.account-dashboard {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 90px) 20px;
}

.account-card,
.account-panel,
.cart-summary,
.cart-empty,
.order-detail-panel,
.orders-list {
  background: #fffdfb;
  border: 1px solid #e4d5c5;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(47, 36, 28, .08);
}

.account-card {
  max-width: 520px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 42px);
}

.account-card h1,
.account-dashboard-head h1,
.cart-empty h2,
.account-panel h2,
.cart-summary h2,
.order-detail-head h1 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-weight: 400;
}

.account-card p,
.account-switch,
.account-dashboard-head p {
  color: var(--muted);
}

.account-card form,
.account-panel form {
  display: grid;
  gap: 16px;
}

.account-card label,
.account-panel label,
.checkout-grid label,
.cart-item label,
.order-status-form label {
  display: grid;
  gap: 7px;
  color: #352d26;
  font-size: 13px;
  font-weight: 800;
}

.account-card input,
.account-panel input,
.account-panel textarea,
.checkout-grid input,
.checkout-grid textarea,
.checkout-grid select,
.cart-item input,
.order-status-form select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #dacbb9;
  border-radius: 8px;
  background: #fffaf5;
  padding: 0 12px;
  font: 500 14px Outfit, sans-serif;
}

.account-panel textarea,
.checkout-grid textarea {
  min-height: 90px;
  padding-top: 10px;
}

.checkout-payment-options {
  display: grid;
  gap: 10px;
}

.checkout-payment-options > span {
  color: #352d26;
  font-size: 13px;
  font-weight: 800;
}

.checkout-payment-card {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 12px !important;
  min-height: 54px;
  border: 1px solid #dacbb9;
  border-radius: 8px;
  background: #fffaf5;
  padding: 13px 14px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.checkout-payment-card:has(input:checked) {
  border-color: #ac805d;
  background: #f7eadc;
  box-shadow: 0 8px 22px rgba(172, 128, 93, .16);
}

.checkout-payment-card input {
  width: 18px !important;
  min-height: 18px !important;
  accent-color: #ac805d;
}

.checkout-payment-card strong {
  font: 700 15px Outfit, sans-serif;
  color: #120f0d;
}

.account-dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.account-dashboard-grid,
.checkout-grid,
.cart-grid,
.orders-admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.account-dashboard-grid {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.account-panel {
  padding: 26px;
}

.account-panel form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-panel .full {
  grid-column: 1 / -1;
}

.customer-orders,
.cart-items,
.orders-list,
.order-items-admin {
  display: grid;
  gap: 12px;
}

.customer-orders article,
.order-items-admin article {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid #eadccb;
  border-radius: 12px;
  background: #fffaf5;
}

.customer-orders article {
  grid-template-columns: minmax(0, 1fr) auto;
}

.customer-orders span,
.order-items-admin p,
.order-items-admin span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.order-items-admin img {
  width: 86px;
  height: 86px;
  border-radius: 10px;
  object-fit: cover;
}

.order-items-admin h3 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-weight: 400;
}

.cart-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.cart-heading p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.cart-heading h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
}

.cart-heading a {
  color: var(--gold);
  font-weight: 700;
}

.cart-items {
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) 92px 130px 78px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid #eadccb;
  border-radius: 14px;
  background: #fffdfb;
  box-shadow: 0 12px 32px rgba(47, 36, 28, .07);
}

.cart-item img {
  width: 118px;
  height: 118px;
  border-radius: 10px;
  object-fit: cover;
  background: #f5eadf;
}

.cart-item-info h2 {
  margin: 0 0 7px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.24;
}

.cart-item-info p,
.cart-item-info span,
.cart-summary small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cart-item-info span {
  margin-top: 8px;
  color: #5d4939;
  font-weight: 700;
}

.cart-qty {
  color: #5d4939;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.cart-qty input {
  min-height: 44px;
  text-align: center;
  font-weight: 800;
}

.cart-line-total {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  text-align: right;
}

.cart-remove,
.product-delete-button {
  cursor: pointer;
}

.cart-remove {
  min-height: 36px;
  border: 1px solid #efd0c9;
  border-radius: 999px;
  background: #fff7f5;
  color: #9b2c17;
  font: 800 12px Outfit, sans-serif;
}

.cart-summary {
  display: grid;
  gap: 14px;
  padding: 24px;
  position: sticky;
  top: 20px;
  border-radius: 14px;
}

.cart-summary p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #eadccb;
}

.cart-summary .cart-total strong {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 400;
}

.cart-update {
  border-color: var(--gold);
  background: #fffaf5;
}

.cart-update:hover {
  background: var(--gold);
  color: var(--white);
}

.cart-empty {
  padding: clamp(34px, 6vw, 64px);
  text-align: center;
}

.cart-empty p {
  margin: 0 auto 20px;
  max-width: 440px;
  color: var(--muted);
}

.product-cart-form {
  display: grid;
  grid-template-columns: 96px minmax(150px, 1fr) minmax(150px, 1fr);
  gap: 10px;
  align-items: end;
  margin: 22px 0 10px;
  max-width: 620px;
}

.product-cart-form label {
  display: grid;
  gap: 6px;
  color: #5d4939;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.product-cart-form input[type="number"] {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d8c6b4;
  border-radius: 8px;
  background: #fffaf5;
  padding: 0 12px;
  font: 700 15px Outfit, sans-serif;
  text-align: center;
}

.product-action-primary,
.product-action-secondary {
  width: 100%;
  min-height: 50px;
  border-radius: 8px;
  font-size: 15px;
  letter-spacing: .02em;
}

.product-action-primary {
  border-color: var(--ink);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .12);
}

.product-action-secondary {
  border-color: var(--gold);
  background: #fffaf5;
  color: var(--ink);
}

.product-action-secondary:hover,
.product-whatsapp:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.orders-list {
  padding: 12px;
}

.orders-list a {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-radius: 10px;
  color: var(--ink);
}

.orders-list a.is-active,
.orders-list a:hover {
  background: #fff2e5;
}

.orders-list span,
.orders-list em,
.order-detail-head span,
.order-detail-head p {
  color: var(--muted);
  font-style: normal;
}

.order-detail-panel {
  padding: 24px;
}

.order-detail-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eadccb;
}

.order-detail-head strong {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 400;
}

.order-status-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 20px;
}

.order-address {
  margin-bottom: 20px;
  padding: 18px;
  border-radius: 12px;
  background: #fffaf5;
}

.order-address h2 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-weight: 400;
}

.order-message-box {
  width: 100%;
  margin-top: 18px;
  border: 1px solid #dacbb9;
  border-radius: 10px;
  background: #fffaf5;
  padding: 14px;
}

.orders-admin-head {
  align-items: flex-end;
  margin-bottom: 18px;
}

.orders-admin-head h2 {
  margin-bottom: 6px;
}

.orders-admin-head p {
  margin: 0;
  color: #6f5a49;
  font: 500 15px/1.5 Outfit, sans-serif;
}

.orders-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.orders-stat-grid article {
  min-height: 102px;
  padding: 18px;
  border: 1px solid #e4d5c5;
  border-radius: 14px;
  background: #fffdfb;
  box-shadow: 0 12px 30px rgba(47, 36, 28, .06);
}

.orders-stat-grid span,
.order-meta-grid span,
.order-customer-grid span,
.orders-list-title span {
  display: block;
  color: #7a6758;
  font: 800 12px/1.3 Outfit, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.orders-stat-grid strong {
  display: block;
  margin-top: 12px;
  color: #1f1b18;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 400;
}

.orders-admin-grid {
  grid-template-columns: 360px minmax(0, 1fr);
}

.orders-list {
  align-content: start;
  max-height: calc(100vh - 230px);
  overflow: auto;
  padding: 16px;
}

.orders-list-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 4px 4px 12px;
}

.orders-list-title h3 {
  margin: 0;
  font-size: 22px;
}

.orders-list a {
  gap: 8px;
  border: 1px solid transparent;
  background: #fffaf5;
}

.orders-list a + a {
  margin-top: 2px;
}

.orders-list a.is-active,
.orders-list a:hover {
  border-color: #d5b592;
  background: #f7eadc;
}

.orders-list a > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.orders-list b {
  color: #1f1b18;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
}

.orders-list small {
  color: #8a7665;
  font-size: 12px;
}

.order-detail-panel {
  padding: clamp(22px, 3vw, 34px);
}

.order-detail-head {
  align-items: flex-start;
}

.order-detail-head h1 {
  font-size: clamp(32px, 4vw, 48px);
}

.order-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.order-meta-grid article {
  padding: 14px;
  border: 1px solid #eadccb;
  border-radius: 12px;
  background: #fffaf5;
}

.order-meta-grid strong:not(.order-chip) {
  display: block;
  margin-top: 8px;
  color: #1f1b18;
  font-size: 14px;
}

.order-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  margin-top: 8px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f0e3d5;
  color: #5d4939;
  font: 800 12px Outfit, sans-serif;
  text-transform: capitalize;
}

.order-chip.is-new,
.order-chip.is-pending,
.order-chip.is-processing {
  background: #fff4d8;
  color: #8a5d00;
}

.order-chip.is-confirmed,
.order-chip.is-paid,
.order-chip.is-completed {
  background: #e8f6ef;
  color: #0f7a35;
}

.order-chip.is-cancelled,
.order-chip.is-failed,
.order-chip.is-refunded {
  background: #fce8e8;
  color: #a40000;
}

.order-status-form {
  padding: 16px;
  border: 1px solid #eadccb;
  border-radius: 12px;
  background: #fffdfb;
}

.order-delete-form {
  display: flex;
  justify-content: flex-end;
  margin: -8px 0 20px;
}

.order-delete-button {
  min-height: 40px;
  border-color: #efd0c9;
  background: #fff7f5;
  color: #9b2c17;
}

.order-delete-button:hover {
  border-color: #9b2c17;
  background: #9b2c17;
  color: var(--white);
}

.order-address {
  border: 1px solid #eadccb;
}

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

.order-customer-grid p {
  margin: 0;
  color: #2a231f;
  font: 600 14px/1.55 Outfit, sans-serif;
}

.order-customer-grid p:last-child {
  grid-column: 1 / -1;
}

.order-section-title {
  margin: 0 0 12px;
  font-size: 24px;
}

.order-items-admin article {
  grid-template-columns: 84px minmax(0, 1fr) auto;
  border-radius: 14px;
}

.order-items-admin img {
  width: 84px;
  height: 84px;
}

.order-items-admin article > strong {
  color: #1f1b18;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  white-space: nowrap;
}

.order-message-box {
  min-height: 160px;
  font: 500 13px/1.6 Outfit, sans-serif;
  color: #3d322b;
}

.admin-nav-manager {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.admin-nav-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 1px solid #e4d5c5;
  border-radius: 14px;
  background: #fffdfb;
  box-shadow: 0 10px 28px rgba(47, 36, 28, .07);
}

.admin-nav-toolbar h3 {
  margin: 0 0 4px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
}

.admin-nav-toolbar p {
  margin: 0;
  color: var(--muted);
}

.admin-nav-groups {
  display: grid;
  gap: 18px;
}

.admin-nav-group-card {
  overflow: hidden;
  border: 1px solid #e4d5c5;
  border-radius: 16px;
  background: #fffdfb;
  box-shadow: 0 14px 34px rgba(47, 36, 28, .08);
}

.admin-nav-parent-row,
.admin-nav-child-row,
.admin-nav-child-head {
  display: grid;
  gap: 12px;
  align-items: end;
}

.admin-nav-parent-row {
  grid-template-columns: minmax(260px, 1fr) 100px 122px 110px 96px;
}

.admin-nav-child-row,
.admin-nav-child-head {
  grid-template-columns: minmax(240px, 1.2fr) minmax(190px, .8fr) 100px 110px 96px;
}

.admin-nav-parent-row {
  padding: 18px;
  background: #f7ecdf;
}

.admin-nav-child-head {
  padding: 12px 18px 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-nav-children {
  display: grid;
  gap: 10px;
  padding: 0 18px 18px;
}

.admin-nav-child-row {
  padding: 12px;
  border: 1px solid #eadccb;
  border-radius: 12px;
  background: #fffaf5;
}

.admin-nav-row-title {
  display: grid;
  gap: 7px;
}

.admin-nav-row-title span,
.admin-nav-parent-row label,
.admin-nav-child-row label {
  color: #5d4939;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.admin-nav-parent-row label,
.admin-nav-child-row label {
  display: grid;
  gap: 7px;
}

.admin-nav-parent-row input,
.admin-nav-parent-row select,
.admin-nav-child-row input,
.admin-nav-child-row select {
  width: 100%;
  min-height: 40px;
  border: 1px solid #dacbb9;
  border-radius: 8px;
  background: #fffaf5;
  padding: 0 10px;
  font: 500 14px Outfit, sans-serif;
}

.admin-nav-row-title input {
  font-family: var(--font-heading);
  font-size: 18px;
}

.admin-nav-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid #dacbb9;
  border-radius: 999px;
  background: #fffdfb;
  cursor: pointer;
}

.admin-nav-switch input {
  appearance: none;
  position: relative;
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  border: 1.5px solid #b88a68;
  border-radius: 5px;
  background: #fff;
}

.admin-nav-switch input:checked {
  border-color: var(--gold);
  background: var(--gold);
}

.admin-nav-switch input:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.admin-nav-switch span {
  color: #352d26;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.admin-nav-remove {
  min-height: 40px;
  border: 1px solid #f0c9c9;
  border-radius: 999px;
  background: #fff7f7;
  color: #a40000;
  font: 800 12px Outfit, sans-serif;
  cursor: pointer;
}

.admin-nav-empty {
  margin: 0;
  padding: 14px;
  border: 1px dashed #dacbb9;
  border-radius: 12px;
  color: var(--muted);
  background: #fffaf5;
}

.admin-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

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

.admin-table th,
.admin-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.admin-table img {
  width: 66px;
  height: 48px;
  object-fit: cover;
}

.inline-form {
  display: inline;
  margin-left: 10px;
}

.inline-form button {
  border: 0;
  color: #a40000;
  background: transparent;
  cursor: pointer;
}

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

.admin-form .full { grid-column: 1 / -1; }
.admin-form .checkbox { display: flex; align-items: center; gap: 9px; }
.admin-form .checkbox input { width: auto; min-height: auto; margin: 0; }

.admin-pricing-box {
  border: 1px solid #bfc4ca;
  background: #f9fafb;
}

.admin-box-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 16px;
  border-bottom: 1px solid #cfd4da;
}

.admin-box-head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.admin-box-head span {
  color: var(--muted);
  font-size: 13px;
}

.admin-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 14px 16px 20px;
}

.admin-pricing-box label,
.admin-pricing-row > span {
  color: #26313a;
  font-size: 13px;
  font-weight: 700;
}

.admin-pricing-divider {
  height: 1px;
  margin: 0 16px;
  background: #d8dce0;
}

.admin-pricing-row {
  display: grid;
  gap: 13px;
  padding: 18px 16px;
}

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

.admin-check-row label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
}

.admin-check-row input {
  width: auto;
  min-height: auto;
  margin: 0;
}

.admin-small-field {
  width: min(290px, 100%);
  display: block;
}

.admin-combo-list {
  display: grid;
  gap: 14px;
}

.admin-combo-list.is-hidden {
  display: none;
}

.admin-combo-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.admin-remove-combo {
  justify-self: start;
  border: 0;
  background: transparent;
  color: #a40000;
  font: 700 13px Outfit, sans-serif;
  cursor: pointer;
}

.admin-price-preview {
  padding: 22px;
  border: 1px solid var(--line);
  background: #fbf8f4;
}

.admin-price-preview h3 {
  margin: 0 0 18px;
  font-size: 22px;
}

.admin-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.admin-price-grid div {
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--white);
}

.admin-price-grid span,
.admin-price-grid strong {
  display: block;
}

.admin-price-grid span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
}

.admin-price-grid strong {
  color: var(--ink);
  font-size: 18px;
}

.admin-price-grid .admin-grand-total {
  background: var(--ink);
  color: var(--white);
}

.admin-price-grid .admin-grand-total span,
.admin-price-grid .admin-grand-total strong {
  color: var(--white);
}

.rates-form {
  max-width: 900px;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.rates-form h3 {
  margin: 24px 0 14px;
  font-size: 18px;
}

.rates-form h3:first-child {
  margin-top: 0;
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px 32px;
  margin-bottom: 24px;
}

.rates-grid label {
  display: block;
  font-weight: 700;
}

.rates-grid input {
  width: 100%;
  min-height: 40px;
  margin-top: 5px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  font: inherit;
}

/* Admin polish */
.admin-page {
  min-height: 100vh;
  background: #f5efe8;
  color: #1f1b18;
  font-family: Outfit, sans-serif;
}

.admin-page h1,
.admin-page h2,
.admin-page h3 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.admin-page h2 {
  margin: 0 0 26px;
  font-size: clamp(30px, 3vw, 44px);
}

.admin-page h3 {
  font-size: 22px;
}

.admin-sidebar {
  width: 268px;
  padding: 28px 20px;
  background: #ac805d;
  box-shadow: 16px 0 40px rgba(44, 28, 15, .12);
  overflow-y: auto;
}

.admin-logo {
  margin: 0 0 28px;
  padding: 0 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.admin-logo img {
  width: 190px;
}

.admin-sidebar a,
.admin-nav-toggle {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, .82);
  line-height: 42px;
  transition: background .18s ease, color .18s ease;
}

.admin-sidebar a:hover,
.admin-nav-toggle:hover,
.admin-sidebar a.is-active,
.admin-nav-toggle.is-active,
.admin-nav-group.is-open .admin-nav-toggle {
  background: rgba(255, 255, 255, .15);
  color: var(--white);
}

.admin-sidebar .admin-logo,
.admin-sidebar .admin-logo:hover {
  min-height: 0;
  padding: 0 10px 20px;
  background: transparent;
  line-height: 1;
}

.admin-nav-toggle::after {
  right: 16px;
}

.admin-nav-group.is-open .admin-nav-toggle::after {
  transform: translateY(-35%) rotate(225deg);
}

.admin-nav-submenu {
  margin: 6px 0 10px 18px;
  padding: 4px 0 4px 12px;
  border-left-color: rgba(255, 255, 255, .24);
}

.admin-nav-submenu a {
  min-height: 36px;
  padding: 0 12px;
  font-size: 14px;
  line-height: 36px;
}

.admin-main {
  width: min(100% - 268px, 1440px);
  margin-left: 268px;
  padding: 42px clamp(24px, 3vw, 46px);
}

.admin-head {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(172, 128, 93, .22);
}

.admin-head h2 {
  margin: 0;
}

.dashboard-head span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(172, 128, 93, .18);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(172, 128, 93, .13), rgba(255, 249, 244, .88)),
    var(--white);
  box-shadow: 0 18px 45px rgba(72, 45, 24, .07);
}

.dashboard-hero p {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.dashboard-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #24170f;
  font-family: "Marcellus", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.12;
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.metric,
.admin-table,
.admin-form,
.admin-card,
.rates-form,
.login-card {
  border: 1px solid rgba(172, 128, 93, .16);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(72, 45, 24, .07);
}

.metric-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 28px;
}

.metric {
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
}

.metric::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--gold);
}

.metric span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.metric strong {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  font-family: "Marcellus", serif;
  font-weight: 400;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
  gap: 22px;
  margin-bottom: 24px;
}

.dashboard-panel {
  min-height: 360px;
}

.dashboard-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.dashboard-panel-head h3,
.quick-links-panel h3 {
  margin: 0;
}

.dashboard-panel-head a {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.dashboard-list {
  display: grid;
  gap: 12px;
}

.dashboard-product-row,
.dashboard-appointment-row {
  display: grid;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(172, 128, 93, .14);
  border-radius: 10px;
  background: #fffaf5;
}

.dashboard-product-row {
  grid-template-columns: 56px minmax(0, 1fr) auto;
}

.dashboard-product-row img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--white);
}

.dashboard-product-row span,
.dashboard-appointment-row strong {
  color: #2f2118;
  font-weight: 800;
}

.dashboard-appointment-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.dashboard-appointment-row span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.dashboard-product-row em,
.dashboard-appointment-row em {
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-product-row em.is-live,
.dashboard-appointment-row em.is-live {
  background: rgba(15, 122, 53, .12);
  color: #0f7a35;
}

.dashboard-product-row em.is-draft,
.dashboard-appointment-row em.is-draft {
  background: rgba(88, 88, 88, .12);
  color: var(--muted);
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.quick-links-grid a {
  min-height: 50px;
  padding: 15px 16px;
  border: 1px solid rgba(172, 128, 93, .16);
  border-radius: 10px;
  background: #fffaf5;
  color: #352d26;
  font-weight: 800;
}

.quick-links-grid a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.admin-table {
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}

.admin-table th {
  background: #f3e7da;
  color: #513925;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.admin-table td {
  background: var(--white);
  color: #3f3b36;
}

.admin-table tr:hover td {
  background: #fffaf5;
}

.admin-table img {
  width: 76px;
  height: 58px;
  border-radius: 8px;
}

.admin-table a {
  color: var(--gold);
  font-weight: 700;
}

.inline-form button {
  font-weight: 700;
}

.admin-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.admin-status.is-active {
  background: #e8f6ef;
  color: #0f7a35;
}

.admin-status.is-muted {
  background: #f2ede6;
  color: #786a5d;
}

.admin-status.is-pending {
  background: #fff7df;
  color: #9b6500;
}

.admin-status.is-approved {
  background: #e8f6ef;
  color: #0f7a35;
}

.admin-status.is-blocked {
  background: #fce8e8;
  color: #a40000;
}

.admin-review-table td {
  vertical-align: top;
  white-space: normal;
}

.admin-review-table td:nth-child(4) {
  min-width: 280px;
  max-width: 420px;
}

.admin-review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-review-actions button {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #dacbb9;
  border-radius: 999px;
  background: #fffaf5;
  color: #513925;
  font: 700 12px Outfit, sans-serif;
  cursor: pointer;
}

.admin-review-actions button[value="delete"],
.admin-review-actions button[value="block"] {
  color: #a40000;
}

.admin-form {
  gap: 20px;
  padding: clamp(20px, 3vw, 34px);
}

.admin-form label,
.rates-grid label,
.login-card label {
  color: #352d26;
  font-size: 13px;
  font-weight: 800;
}

.login-card input,
.admin-form input,
.admin-form select,
.admin-form textarea,
.rates-grid input {
  border-color: #dacbb9;
  border-radius: 8px;
  background: #fffdfb;
  outline-color: var(--gold);
  transition: border-color .18s ease, box-shadow .18s ease;
}

.login-card input:focus,
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus,
.rates-grid input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(172, 128, 93, .14);
}

.admin-form textarea {
  resize: vertical;
}

.admin-image-preview,
.admin-gallery-preview,
.admin-category-tags,
.admin-price-preview {
  border-color: #e1d3c2;
  border-radius: 12px;
  background: #fffaf5;
}

.admin-pricing-box {
  overflow: hidden;
  border: 1px solid #dacbb9;
  border-radius: 12px;
  background: #fffdfb;
}

.admin-box-head {
  background: #f3e7da;
  border-bottom-color: #dacbb9;
}

.admin-box-head h3 {
  font-family: Outfit, sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.admin-pricing-grid {
  gap: 20px;
  padding: 20px;
}

.admin-pricing-divider {
  background: #e3d6c6;
}

.admin-combo-box {
  border-color: #dacbb9;
  border-radius: 12px;
  background: #fffaf5;
}

.admin-price-preview {
  padding: clamp(20px, 3vw, 30px);
}

.admin-price-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.admin-price-grid div {
  border-color: #e1d3c2;
  border-radius: 10px;
}

.rates-form {
  max-width: 980px;
  padding: clamp(22px, 3vw, 34px);
}

.admin-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.admin-card {
  min-height: 180px;
}

.admin-card h3 {
  color: var(--gold);
}

.admin-category-manager {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.admin-mini-form {
  display: grid;
  gap: 14px;
}

.admin-mini-form label {
  color: #352d26;
  font-size: 13px;
  font-weight: 800;
}

.admin-mini-form input,
.admin-mini-form select {
  width: 100%;
  min-height: 44px;
  margin-top: 7px;
  padding: 10px 12px;
  border: 1px solid #dacbb9;
  border-radius: 8px;
  background: #fffdfb;
  font: inherit;
  outline-color: var(--gold);
}

.admin-category-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.admin-category-title h3 {
  margin: 0;
}

.admin-category-title form,
.admin-list form {
  margin: 0;
}

.admin-category-title button,
.admin-list button {
  border: 0;
  background: transparent;
  color: #a40000;
  font: 700 12px Outfit, sans-serif;
  cursor: pointer;
}

.admin-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-slider-list {
  display: grid;
  gap: 24px;
}

.admin-slider-form {
  align-items: start;
}

.admin-slider-preview {
  grid-row: span 4;
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid #e1d3c2;
  border-radius: 12px;
  background: #fffaf5;
}

.admin-slider-preview img:first-child {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  object-fit: cover;
}

.admin-slider-preview img:not(:first-child) {
  width: 120px;
  height: 88px;
  border-radius: 8px;
  object-fit: cover;
}

.login-card {
  margin: 10vh auto;
  padding: 38px;
}

.login-logo {
  width: 210px;
  max-width: 80%;
  height: auto;
  margin: 0 auto 26px;
}

.login-card h1 {
  margin: 0 0 24px;
  font-size: 42px;
  text-align: center;
}

.login-card form {
  display: grid;
  gap: 16px;
}

.login-card .button {
  width: 100%;
}

.floating-appointment {
  position: fixed;
  left: 20px;
  bottom: 28px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
  font: 700 16px Outfit, sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .24s ease, opacity .2s ease, background .2s ease;
}

.appointment-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 5, 5, .38);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.appointment-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.appointment-dialog {
  width: min(400px, 100%);
  padding: 50px 25px 25px;
  background: var(--white);
  box-shadow: 0 22px 80px rgba(0, 0, 0, .24);
}

.appointment-dialog h2 {
  max-width: 300px;
  margin: 0 0 16px;
  font-size: clamp(40px, 5vw, 50px);
  line-height: 1.08;
  font-weight: 400;
}

.appointment-dialog form {
  display: grid;
  gap: 10px;
}

.appointment-dialog input {
  width: 100%;
  min-height: 48px;
  padding: 0 10px;
  border: 1px solid #bfbfbf;
  background: var(--white);
  color: var(--ink);
  font: 17px Outfit, sans-serif;
  outline-color: var(--gold);
}

.appointment-dialog input::placeholder {
  color: #999;
}

.appointment-dialog input[type="datetime-local"] {
  border-color: transparent;
  padding-left: 10px;
  font-family: Outfit, sans-serif;
}

.appointment-dialog form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  margin-top: 18px;
}

.appointment-dialog .button {
  min-height: 58px;
  padding-inline: 32px;
  border-color: var(--ink);
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 35;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 14px;
  height: 14px;
  border-left: 2px solid var(--white);
  border-top: 2px solid var(--white);
  transform: translate(-50%, -50%) rotate(45deg);
}

.scroll-top::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 54%;
  width: 2px;
  height: 18px;
  background: var(--white);
  transform: translate(-50%, -50%);
}

.scroll-top:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

@media (max-width: 920px) {
  .top-bar {
    position: sticky;
    top: 0;
    z-index: 70;
  }
  .site-header {
    grid-template-columns: 150px 1fr;
    min-height: 96px;
    top: 48px;
    z-index: 60;
    background:
      var(--cream);
  }
  .brand img {
    width: 170px;
    margin-left: 0;
  }
  .top-bar-inner {
    grid-template-columns: 1fr auto;
    justify-items: stretch;
    gap: 14px;
    min-height: 48px;
    padding-block: 8px;
  }
  .top-bar-inner > span { display: none; }
  .top-bar p { display: none; }
  .top-socials { gap: 18px; }
  .top-login { justify-self: end; }
  .menu-toggle { display: block; }
  .header-actions { grid-column: 2; gap: 8px; z-index: 70; }
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 44;
    background: rgba(5, 5, 5, .36);
  }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 45;
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    width: min(86vw, 380px);
    padding: 148px 24px 42px;
    background: var(--cream);
    border-left: 1px solid var(--line);
    box-shadow: -18px 0 50px rgba(44, 28, 15, .18);
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(105%);
    transition: transform .22s ease, visibility .22s ease;
  }
  .nav.is-open {
    visibility: visible;
    pointer-events: auto;
    height: 800px;
    transform: translateX(0);
  }
  .nav-item {
    border-bottom: 1px solid var(--line);
  }
  .nav > a,
  .nav-item > a {
    padding: 13px 0;
    font-size: 21px;
    line-height: 1.2;
  }
  .nav-dropdown {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 12px 14px;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-dropdown a {
    padding: 7px 0;
    white-space: normal;
    font-family: Outfit, sans-serif;
    font-size: 15px;
  }
  .hero-slide,
  .single-product,
  .product-detail,
  .detail-grid,
  .shop-layout,
  .about-hero,
  .about-story-copy,
  .about-craft,
  .about-signature,
  .story-video-grid,
  .contact-hero {
    grid-template-columns: 1fr;
  }
  .contact-info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-hero,
  .about-story,
  .about-values,
  .about-craft,
  .about-signature {
    padding-inline: var(--container-pad);
  }
  .about-values { grid-template-columns: 1fr; }
  .about-hero-media img { min-height: 420px; }
  .hero-slider,
  .hero-slide { min-height: auto; }
  .launch-grid { grid-template-columns: 1fr; }
  .launch-card { min-height: 340px; }
  .story-video-grid { gap: 28px; padding-block: 52px; }
  .story-video-copy h2 { font-size: clamp(34px, 8vw, 48px); }
  .match-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
  .product-grid,
  .shop-layout .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews-layout { grid-template-columns: 1fr; }
  .shop-toolbar { align-items: stretch; flex-direction: column; }
  .shop-filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid var(--line);
    background: var(--ink);
    color: var(--white);
    font: 700 14px Outfit, sans-serif;
    cursor: pointer;
  }
  .shop-filter-toggle::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 12px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-3px) rotate(45deg);
    transition: transform .18s ease;
  }
  .shop-filter-toggle.is-open::after {
    transform: translateY(2px) rotate(225deg);
  }
  .filters {
    position: static;
    display: none;
  }
  .filters.is-open {
    display: block;
  }
  .floating-appointment {
    left: 12px;
    bottom: 18px;
    min-height: 44px;
    padding: 0 15px;
    font-size: 14px;
  }
  .floating-appointment.is-collapsed {
    transform: translateX(calc(-100% + 54px));
  }
  .floating-appointment.is-collapsed::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
  }
  .scroll-top {
    right: 12px;
    bottom: 72px;
    width: 38px;
    height: 38px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .2);
  }
  .scroll-top::before {
    width: 11px;
    height: 11px;
    border-width: 1.8px;
  }
  .scroll-top::after {
    height: 15px;
    width: 1.8px;
  }
  .testimonial-grid,
  .newsletter-section { grid-template-columns: 1fr; }
  .newsletter-section { padding-inline: var(--container-pad); }
  .social-block {
    min-height: auto;
    padding-left: 0;
    padding-top: 28px;
    border-left: 0;
    border-top: 1px solid var(--ink);
  }
  .footer-main,
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom,
  .footer-bottom p:last-child { text-align: center; }
  .footer-brand img { margin-inline: auto; }
  .admin-menu-toggle {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 91;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 0 14px;
    border: 0;
    border-radius: 8px;
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
    font: 700 14px Outfit, sans-serif;
    cursor: pointer;
  }
  .admin-menu-toggle span,
  .admin-menu-toggle span::before,
  .admin-menu-toggle span::after {
    display: block;
    width: 18px;
    height: 1.5px;
    background: currentColor;
  }
  .admin-menu-toggle span {
    position: relative;
  }
  .admin-menu-toggle span::before,
  .admin-menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
  }
  .admin-menu-toggle span::before { top: -6px; }
  .admin-menu-toggle span::after { top: 6px; }
  .admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 90;
    width: min(82vw, 310px);
    padding-top: 72px;
    transform: translateX(-105%);
    transition: transform .22s ease;
  }
  .admin-sidebar.is-open {
    transform: translateX(0);
  }
  .admin-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 89;
    display: block;
    border: 0;
    background: rgba(5, 5, 5, .45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
  }
  .admin-menu-backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }
  .admin-main { width: 100%; margin-left: 0; padding: 72px 18px 28px; }
  .admin-price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rates-grid { grid-template-columns: 1fr; }
  .dashboard-hero,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-actions {
    justify-content: flex-start;
  }
  .admin-pricing-grid,
  .admin-combo-box { grid-template-columns: 1fr; }
  .admin-slider-preview { grid-row: auto; }
  .admin-category-manager { grid-template-columns: 1fr; }
  .admin-nav-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-nav-parent-row,
  .admin-nav-child-row,
  .admin-nav-child-head {
    grid-template-columns: 1fr;
  }
  .admin-nav-child-head {
    display: none;
  }
  .admin-nav-parent-row {
    gap: 14px;
  }
  .admin-nav-children {
    padding: 14px;
  }
  .admin-nav-child-row {
    gap: 12px;
  }
  .product-cart-form {
    grid-template-columns: 88px 1fr;
  }
  .product-action-primary {
    grid-column: 1 / -1;
  }
  .cart-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .cart-grid,
  .checkout-grid,
  .account-dashboard-grid,
  .orders-admin-grid {
    grid-template-columns: 1fr;
  }
  .orders-stat-grid,
  .order-meta-grid,
  .order-customer-grid {
    grid-template-columns: 1fr;
  }
  .orders-list {
    max-height: none;
  }
  .order-status-form {
    grid-template-columns: 1fr;
  }
  .order-delete-form {
    justify-content: stretch;
  }
  .order-delete-button {
    width: 100%;
  }
  .order-detail-head {
    display: grid;
  }
  .order-items-admin article {
    grid-template-columns: 72px minmax(0, 1fr);
  }
  .order-items-admin img {
    width: 72px;
    height: 72px;
  }
  .order-items-admin article > strong {
    grid-column: 1 / -1;
    text-align: right;
  }
  .cart-item {
    grid-template-columns: 92px minmax(0, 1fr);
  }
  .cart-item img {
    width: 92px;
    height: 92px;
  }
  .cart-qty,
  .cart-line-total,
  .cart-remove {
    grid-column: 1 / -1;
  }
  .cart-line-total {
    text-align: left;
  }
  .cart-summary {
    position: static;
  }
  .admin-table { display: block; overflow-x: auto; white-space: nowrap; }
}

@media (max-width: 560px) {
  .search-panel {
    padding: 28px 20px;
  }
  .search-panel form {
    grid-template-columns: 1fr;
  }
  .newsletter-form div {
    grid-template-columns: 1fr;
  }
  .newsletter-form button {
    min-height: 52px;
  }
  .product-grid,
  .match-grid,
  .about-story-grid,
  .contact-info-grid,
  .spec-list,
  .admin-form,
  .admin-price-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }
  .floating-appointment {
    left: 12px;
    bottom: 18px;
    min-height: 44px;
    padding: 0 15px;
    font-size: 14px;
  }
  .floating-appointment.is-collapsed {
    transform: translateX(calc(-100% + 54px));
  }
  .floating-appointment.is-collapsed::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
  }
  .scroll-top {
    right: 12px;
    bottom: 72px;
    width: 38px;
    height: 38px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .2);
  }
  .scroll-top::before {
    width: 11px;
    height: 11px;
    border-width: 1.8px;
  }
  .scroll-top::after {
    height: 15px;
    width: 1.8px;
  }
}

@media (max-width: 920px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .scroll-top {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 50;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
    transform: translate3d(0, 10px, 0);
    will-change: opacity, transform;
  }

  .scroll-top.is-visible {
    transform: translate3d(0, 0, 0);
  }

  .scroll-top:hover {
    transform: translate3d(0, 0, 0);
  }

  .scroll-top::before {
    top: 50%;
    width: 11px;
    height: 11px;
    border-left-width: 2px;
    border-top-width: 2px;
  }

  .scroll-top::after {
    top: 54%;
    width: 2px;
    height: 15px;
  }
}

.admin-head-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.bulk-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.bulk-tool-card,
.bulk-format-card,
.bulk-result {
  padding: 22px;
  border: 1px solid #e4d5c5;
  border-radius: 16px;
  background: #fffdfb;
  box-shadow: 0 12px 32px rgba(47, 36, 28, .08);
}

.bulk-tool-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.bulk-tool-card h3,
.bulk-format-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 400;
}

.bulk-tool-card p,
.bulk-format-card p {
  margin: 0;
  color: var(--muted);
  font: 400 15px/1.65 Outfit, sans-serif;
}

.bulk-tool-card label {
  display: grid;
  gap: 8px;
  color: #352d26;
  font: 800 13px Outfit, sans-serif;
}

.bulk-tool-card input[type="file"] {
  min-height: 44px;
  padding: 9px;
  border: 1px solid #dacbb9;
  border-radius: 8px;
  background: #fffaf5;
  font: 500 14px Outfit, sans-serif;
}

.bulk-result {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 160px)) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 22px;
  border-color: #d6c2ad;
}

.bulk-result > div {
  padding: 14px;
  border-radius: 12px;
  background: #fff8f0;
}

.bulk-result span {
  display: block;
  color: var(--muted);
  font: 800 11px Outfit, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bulk-result strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
}

.bulk-result ul {
  margin: 0;
  padding-left: 18px;
  color: #7a2d23;
  font: 500 14px/1.55 Outfit, sans-serif;
}

.bulk-format-card {
  display: grid;
  gap: 18px;
}

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

.bulk-column-list code {
  padding: 7px 10px;
  border: 1px solid #e4d5c5;
  border-radius: 999px;
  background: #fff8f0;
  color: #352d26;
  font: 700 12px Outfit, sans-serif;
}

@media (max-width: 920px) {
  .admin-head-actions,
  .bulk-tools-grid,
  .bulk-result {
    grid-template-columns: 1fr;
  }

  .admin-head-actions {
    justify-content: stretch;
  }

  .admin-head-actions .button {
    width: 100%;
  }
}
