:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --surface: #121212;
  --surface-2: #171717;
  --text: #f3e7cf;
  --muted: #d7c49b;
  --gold: #e2b84f;
  --gold-bright: #ffe08a;
  --line: rgba(255, 224, 138, 0.28);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  overflow-x: hidden;
}

#home,
#about,
#product,
#reviews,
#contact {
  scroll-margin-top: 120px;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 224, 138, 0.12), transparent 28%),
    linear-gradient(180deg, #030303 0%, #0a0a0a 45%, #121212 100%);
}

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

a {
  color: inherit;
}

button {
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #d69a2d, var(--gold-bright));
  color: #140f0a;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(255, 224, 138, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

button:hover,
.button-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(255, 224, 138, 0.24);
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #d69a2d, var(--gold-bright));
  color: #140f0a;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(255, 224, 138, 0.22);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  padding: 22px 56px;
  background: rgba(7, 7, 7, 0.18);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  padding: 14px 56px;
  background: rgba(5, 5, 5, 0.96);
  border-color: var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.brand-block,
.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-block {
  justify-self: start;
  text-decoration: none;
}

.buy-brand-link {
  text-decoration: none;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 224, 138, 0.34);
}

.brand-name,
.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.28em;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  white-space: nowrap;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.brand-wordmark.brand-name,
.brand-wordmark.footer-brand {
  font-size: 2rem;
}

.brand-prefix {
  display: inline-flex;
  align-items: baseline;
  gap: 0.06em;
  letter-spacing: 0;
}

.brand-c {
  font-size: 0.9em;
  line-height: 1;
}

.brand-at {
  font-size: 1.16em;
  line-height: 1;
  text-transform: none;
  transform: translateY(-0.02em);
}

.brand-text {
  line-height: 1;
}

.section-kicker .brand-wordmark,
.hero p .brand-wordmark,
.editorial-content p .brand-wordmark,
.section-heading h2 .brand-wordmark {
  font-size: 1em;
  vertical-align: baseline;
}

.section-kicker .brand-wordmark {
  letter-spacing: 0.16em;
}

.footer-logo {
  width: 42px;
  height: 42px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  justify-self: center;
}

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

.menu-toggle {
  display: none;
}

.site-nav a,
.account-nav-button,
.text-link {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.account-nav-button:hover,
.account-nav-button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--gold-bright);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.account-nav-button {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nav-account-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 224, 138, 0.22);
  background: rgba(255, 224, 138, 0.08);
}

.nav-account-badge img,
.nav-account-badge span:first-child {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: var(--gold-bright);
  font-weight: 700;
  object-fit: cover;
}

.nav-account-badge span:last-child {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-bright);
}

.nav-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 224, 138, 0.24);
  border-radius: 50%;
  color: var(--gold-bright);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.nav-cart:hover,
.nav-cart:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 224, 138, 0.12);
  border-color: var(--gold-bright);
}

.nav-cart svg {
  width: 18px;
  height: 18px;
}

.hero,
.about-section,
.editorial-section,
.product-showcase,
.reviews-strip,
.book-now-section,
.contact-section {
  padding: 96px 56px;
}

.hero,
#home.hero {
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.64) 100%),
    url("../images/hero.png") center center / cover no-repeat;
}

.hero-overlay {
  max-width: 1100px;
  text-align: center;
  margin: 0 auto;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1,
.editorial-content h2,
.product-detail-copy h2,
.section-heading h2,
.contact-cta h2,
.book-now-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: 0;
  margin-bottom: 22px;
  color: var(--gold-bright);
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
}

.hero p,
.editorial-content p,
.product-detail-copy p,
.section-heading p,
.product-copy p,
.review-card p,
.book-now-copy p,
.contact-cta p,
.contact-grid p,
.site-footer p,
.editorial-content li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.hero p {
  max-width: 660px;
  margin: 0 auto;
  color: rgba(255, 240, 214, 0.88);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 32px;
}

.hero .text-link {
  color: var(--gold-bright);
}

[data-reveal] {
  opacity: 0;
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

[data-reveal="up"] {
  transform: translateY(46px);
}

[data-reveal="left"] {
  transform: translateX(-52px);
}

[data-reveal="right"] {
  transform: translateX(52px);
}

[data-reveal="hero"] {
  transform: translateY(28px) scale(0.98);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.editorial-section {
  display: grid;
  grid-template-columns: minmax(320px, 46vw) minmax(320px, 1fr);
  align-items: center;
  gap: 72px;
  padding-inline: 0;
}

.about-section {
  display: grid;
  gap: 28px;
  padding-left: 56px;
  padding-right: 56px;
}

.about-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(34px, 5vw, 78px);
  width: 100%;
  max-width: 1480px;
  min-height: 0;
  margin: 0 auto;
  padding: 42px 0;
}

.about-row-reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.45fr);
  padding-top: 58px;
  border-top: 1px solid var(--line);
}

.about-row .editorial-content {
  padding: 0;
  max-width: 760px;
}

.about-row .editorial-image {
  display: flex;
  justify-content: center;
  align-self: stretch;
  width: 100%;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(255, 224, 138, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(23, 23, 23, 0.7), rgba(5, 5, 5, 0.92));
}

.about-row-reverse .editorial-image {
  justify-content: center;
}

.about-row .editorial-image img {
  width: auto;
  max-width: 100%;
  height: 460px;
  object-fit: contain;
  object-position: center bottom;
}

.about-row-reverse .editorial-image img {
  object-position: center bottom;
}

.about-row .editorial-image img[src$=".png"],
.product-benefits-panel .editorial-image img[src$=".png"],
.product-card img[src$=".png"] {
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-row .editorial-image img[src$=".png"] {
  object-position: center bottom;
}

.about-row-reverse .editorial-image img[src$=".png"],
.product-benefits-panel .editorial-image img[src$=".png"] {
  object-position: center bottom;
}

.editorial-right {
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 46vw);
}

.editorial-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
}

.editorial-content {
  padding: 0 56px;
  max-width: 640px;
}

.editorial-content h2,
.product-detail-copy h2,
.section-heading h2,
.contact-cta h2,
.book-now-copy h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 18px;
  color: var(--gold-bright);
}

.editorial-content ul {
  margin-top: 18px;
  list-style: none;
}

.editorial-content li {
  position: relative;
  padding: 14px 16px 14px 42px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 224, 138, 0.2);
  background: rgba(255, 224, 138, 0.07);
  color: rgba(243, 231, 207, 0.84);
}

.editorial-content li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.product-benefits-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.45fr);
  align-items: center;
  gap: clamp(34px, 5vw, 78px);
  max-width: 1480px;
  margin: 56px auto 0;
  padding: 58px 0 0;
  border-top: 1px solid var(--line);
}

.product-benefits-panel .editorial-content {
  padding: 0;
  max-width: 760px;
}

.product-benefits-panel .editorial-image {
  display: flex;
  justify-content: center;
  align-self: stretch;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(255, 224, 138, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(23, 23, 23, 0.7), rgba(5, 5, 5, 0.92));
}

.product-benefits-panel .editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;  
  display: block;
}


.about-row .editorial-image img[src$="benefit-face-left.png"],
.about-row .editorial-image img[src$="benefit-face-right.png"],
.product-benefits-panel .editorial-image img[src$="benefit-face-right.png"] {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.about-row .editorial-image img[src$="benefit-face-left.png"] {
  object-position: left center;
}

.about-row .editorial-image img[src$="benefit-face-right.png"],
.product-benefits-panel .editorial-image img[src$="benefit-face-right.png"] {
  object-position: right center;
}

.product-showcase,
.reviews-strip,
.contact-section {
  background: rgba(10, 10, 10, 0.72);
}

.product-detail-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 32px;
  margin-bottom: 56px;
}

.product-detail-copy {
  max-width: 680px;
}

.product-detail-copy h2 {
  color: var(--gold-bright);
}

.product-price {
  color: var(--gold-bright);
  font-weight: 700;
}

.product-price strong {
  font-size: 1.2em;
}

.product-info-card {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 224, 138, 0.28);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(9, 9, 9, 0.96));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.product-info-heading {
  margin-bottom: 4px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.product-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 224, 138, 0.18);
}

.product-info-row:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.product-info-label {
  color: var(--gold-bright);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-info-value {
  color: rgba(243, 231, 207, 0.9);
  font-size: 0.98rem;
  text-align: right;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.product-detail-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.product-gallery-heading {
  margin-top: 0;
}

.product-grid,
.review-grid {
  display: grid;
  gap: 24px;
}

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

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

.review-list-wrap {
  display: grid;
  gap: 24px;
}

.review-workspace {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}

.review-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.98), rgba(12, 12, 12, 0.98));
  box-shadow: var(--shadow);
}

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

.review-field label {
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.review-field input,
.review-field select,
.review-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 224, 138, 0.3);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.72);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

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

.review-field input:focus,
.review-field select:focus,
.review-field textarea:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(255, 224, 138, 0.14);
}

.owner-toggle {
  background: transparent;
  color: var(--gold-bright);
  border: 1px solid rgba(255, 224, 138, 0.34);
  box-shadow: none;
}

.owner-toggle.is-active,
.review-delete {
  background: var(--gold-bright);
  color: #140f0a;
}

.product-card,
.review-card,
.contact-grid div {
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.98), rgba(12, 12, 12, 0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover,
.review-card:hover,
.contact-grid div:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.45);
}

.product-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.product-image-grid .product-card img {
  height: auto;
  aspect-ratio: 3 / 2;
}

.product-card:has(img[src$=".png"]) {
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.product-card:has(img[src$=".png"]):hover {
  transform: none;
  box-shadow: none;
}

.product-copy,
.review-card {
  padding: 24px;
}

.review-card {
  display: grid;
  gap: 14px;
}

.review-stars {
  color: var(--gold-bright);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
}

.review-card-footer strong {
  margin-top: 0;
}

.review-delete {
  padding: 8px 14px;
  font-size: 0.82rem;
  box-shadow: none;
}

.review-card-footer time {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
  text-align: right;
}

.review-empty-state {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.98), rgba(12, 12, 12, 0.98));
  box-shadow: var(--shadow);
}

.review-empty-state strong {
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
}

.review-empty-state p {
  color: var(--muted);
  line-height: 1.8;
}

.load-more-reviews {
  justify-self: center;
}

.admin-review-page {
  min-height: calc(100vh - 93px);
  padding: 56px;
  background: rgba(243, 246, 250, 0.06);
}

.admin-review-shell {
  display: grid;
  gap: 24px;
  width: min(1040px, 100%);
  margin: 0 auto;
}

.admin-review-heading h1 {
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 0.92;
}

.admin-login-form {
  width: min(460px, 100%);
  margin: 0 auto;
}

.admin-review-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.54);
}

.admin-review-toolbar strong {
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
}

.admin-review-list {
  display: grid;
  gap: 16px;
}

.admin-review-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.98), rgba(12, 12, 12, 0.98));
  box-shadow: var(--shadow);
}

.admin-review-image {
  width: 160px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 224, 138, 0.22);
}

.admin-review-body {
  display: grid;
  gap: 10px;
}

.admin-review-body p {
  color: var(--muted);
  line-height: 1.8;
}

.admin-delete-review {
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(255, 224, 138, 0.42);
  color: var(--gold-bright);
  box-shadow: none;
}

.product-copy h3,
.contact-grid h3,
.review-card strong {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold-bright);
}

.product-copy h3,
.contact-grid h3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 600;
}

.contact-grid a {
  color: #d8c08a;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-grid a:hover {
  color: #f5d97a;
}

.review-card strong {
  display: block;
  margin-top: 18px;
  font-size: 1.4rem;
  font-weight: 600;
}

.book-now-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 40px;
}

.book-now-copy {
  max-width: 660px;
}

.booking-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 30px;
}

.booking-points span {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-bright);
  background: rgba(255, 224, 138, 0.1);
}

.book-now-visual img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-section {
  padding-bottom: 44px;
}

.contact-cta {
  max-width: 760px;
  margin-bottom: 36px;
}

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

.contact-grid div {
  padding: 24px;
}

.site-footer {
  display: grid;
  gap: 28px;
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-column h3 {
  margin-bottom: 4px;
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.8;
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.footer-column [data-company-address],
.contact-grid [data-company-address] {
  display: block;
  white-space: pre-line;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--gold-bright);
  text-shadow: 0 0 14px rgba(255, 224, 138, 0.18);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 224, 138, 0.18);
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.buy-page {
  max-width: 1380px;
  margin: 0 auto;
  padding: 76px 56px 96px;
}

.buy-hero {
  margin-bottom: 28px;
  text-align: center;
}

.buy-copy h1 {
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", serif;
  color: var(--gold-bright);
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 600;
  line-height: 0.96;
}

.buy-copy p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.buy-address-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto 28px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 224, 138, 0.24);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(9, 9, 9, 0.96));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.buy-address-summary {
  display: grid;
  gap: 8px;
}

.buy-address-summary-body strong,
.buy-card-address-value strong {
  color: var(--gold-bright);
  font-size: 1rem;
}

.buy-address-summary-body p,
.buy-card-address-value p {
  color: var(--muted);
  line-height: 1.7;
}

.buy-address-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.buy-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.buy-product-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 224, 138, 0.24);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(8, 8, 8, 0.96));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.buy-product-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-bright);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.buy-product-visual {
  height: 280px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 224, 138, 0.18);
  background: rgba(255, 224, 138, 0.08);
}

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

.buy-product-body {
  display: grid;
  gap: 14px;
}

.buy-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.buy-product-kicker {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.buy-product-price {
  color: var(--gold-bright);
  font-size: 1.8rem;
  font-weight: 700;
}

.buy-product-description {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.buy-product-features {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  color: rgba(243, 231, 207, 0.9);
}

.buy-product-features li {
  line-height: 1.6;
}

.buy-quantity-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.buy-quantity-pill {
  min-width: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 224, 138, 0.24);
  border-radius: 999px;
  background: rgba(255, 224, 138, 0.06);
  color: var(--text);
  box-shadow: none;
  font-weight: 700;
}

.buy-quantity-pill.is-selected {
  border-color: var(--gold-bright);
  background: linear-gradient(135deg, #d69a2d, var(--gold-bright));
  color: #140f0a;
}

.buy-card-address-preview {
  padding: 14px;
  border: 1px solid rgba(255, 224, 138, 0.18);
  border-radius: 14px;
  background: rgba(255, 224, 138, 0.06);
}

.buy-card-address-title {
  margin-bottom: 6px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.buy-card-button {
  width: 100%;
  min-height: 50px;
  padding: 14px 18px;
  font-size: 0.98rem;
}

@media (max-width: 980px) {
  .buy-page {
    padding: 58px 24px 78px;
  }

  .buy-address-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .buy-card-grid {
    grid-template-columns: 1fr;
  }

  .buy-product-visual {
    height: 240px;
  }
}

@media (max-width: 640px) {
  .buy-page {
    padding: 48px 18px 72px;
  }

  .buy-address-panel {
    padding: 18px;
  }

  .buy-product-card {
    padding: 18px;
  }

  .buy-card-button {
    min-height: 48px;
  }
}

.account-modal-open {
  overflow: hidden;
}

.account-modal[hidden] {
  display: none;
}

.account-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.account-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(8px);
}

.account-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(320px, 0.56fr);
  width: min(920px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: hidden;
  border: 1px solid rgba(255, 224, 138, 0.3);
  border-radius: 8px;
  background: #101010;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.62);
}

.account-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 224, 138, 0.34);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.68);
  color: var(--gold-bright);
  box-shadow: none;
  font-size: 1.4rem;
  line-height: 1;
}

.account-promo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  padding: 42px 32px;
  background:
    radial-gradient(circle at 70% 78%, rgba(5, 5, 5, 0.24), transparent 24%),
    linear-gradient(145deg, #c69323 0%, #f2d36e 100%);
  color: #140f0a;
}

.account-promo .section-kicker,
.account-promo h2,
.account-promo p {
  color: #140f0a;
}

.account-promo h2 {
  margin-bottom: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 0.95;
}

.account-promo p {
  max-width: 280px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.7;
}

.account-illustration {
  position: relative;
  height: 180px;
}

.account-product-promo {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.account-product-copy {
  display: grid;
  gap: 12px;
}

.account-product-copy-signup {
  display: none;
}

.account-page-card:has(#accountPageSignupForm:not([hidden])) .account-product-copy-login {
  display: none;
}

.account-page-card:has(#accountPageSignupForm:not([hidden])) .account-product-copy-signup {
  display: grid;
}

.account-product-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.15rem, 3.5vw, 3.25rem);
  font-weight: 700;
  line-height: 0.92;
  color: #140f0a;
}

.account-page-promo .account-product-copy p,
.account-product-copy li {
  max-width: 315px;
  color: rgba(20, 15, 10, 0.84);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.55;
}

.account-page-promo .account-product-copy .account-product-lead {
  color: #140f0a;
  font-size: 1rem;
  line-height: 1.55;
}

.account-product-copy ul {
  display: grid;
  gap: 7px;
  padding: 0;
  list-style: none;
}

.account-product-copy li {
  position: relative;
  padding-left: 16px;
}

.account-product-copy li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #140f0a;
}

.account-product-copy strong {
  color: #140f0a;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.28rem;
  line-height: 1.15;
}

.account-product-visual {
  width: min(190px, 62%);
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(20, 15, 10, 0.22);
  border-radius: 8px;
  background: rgba(255, 244, 194, 0.22);
  box-shadow: 0 18px 38px rgba(20, 15, 10, 0.18);
}

.account-product-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.account-box,
.account-card,
.account-bag {
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(20, 15, 10, 0.2);
}

.account-box {
  right: 38px;
  bottom: 24px;
  width: 138px;
  height: 86px;
  border: 8px solid #2c2c2c;
  background:
    radial-gradient(circle at 50% 30%, #c8c8c8 0 9%, transparent 10%),
    linear-gradient(#eeeeee 0 100%);
}

.account-card {
  right: 0;
  bottom: 0;
  width: 204px;
  height: 14px;
  background: #333333;
}

.account-bag {
  right: 176px;
  bottom: 14px;
  width: 48px;
  height: 54px;
  background: #171717;
}

.account-bag::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 14px;
  width: 19px;
  height: 19px;
  border: 3px solid #171717;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.account-content {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 0;
  padding: 42px 34px 34px;
  overflow-y: auto;
  background: linear-gradient(180deg, #171717, #0d0d0d);
}

.account-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 224, 138, 0.2);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.58);
}

.account-tab,
.account-switch {
  width: 100%;
  box-shadow: none;
}

.account-tab {
  border-radius: 6px;
  padding: 12px 16px;
  background: transparent;
  color: var(--muted);
}

.account-tab.is-active {
  background: linear-gradient(135deg, #d69a2d, var(--gold-bright));
  color: #140f0a;
}

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

.account-form[hidden],
.account-profile[hidden] {
  display: none;
}

.account-switch {
  background: transparent;
  color: var(--gold-bright);
}

.account-message {
  min-height: 22px;
  color: #ffcf73;
  font-size: 0.9rem;
  line-height: 1.5;
}

.account-profile {
  display: grid;
  gap: 14px;
}

.account-profile strong {
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
}

.account-profile p {
  color: var(--muted);
  line-height: 1.8;
}

.account-page {
  min-height: 100vh;
  padding: 48px 56px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(243, 246, 250, 0.06);
}

.account-page-card {
  display: flex;
  flex-direction: row;
  width: min(980px, 100%);
  min-height: 560px;
  margin: 0 auto;
  border: 1px solid rgba(255, 224, 138, 0.24);
  border-radius: 8px;
  overflow: visible;
  background: linear-gradient(180deg, #171717, #0d0d0d);
  box-shadow: var(--shadow);
}

.account-page-promo {
  display: flex;
  flex: 0 0 42%;
  flex-direction: column;
  justify-content: space-between;
  width: 42%;
  padding: 44px 32px;
  border-radius: 8px 0 0 8px;
  background:
    radial-gradient(circle at 70% 78%, rgba(5, 5, 5, 0.24), transparent 24%),
    linear-gradient(145deg, #c69323 0%, #f2d36e 100%);
  color: #140f0a;
}

.account-page-promo .section-kicker,
.account-page-promo h1,
.account-page-promo p {
  color: #140f0a;
}

.account-page-promo h1 {
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 0.92;
}

.account-page-promo p {
  max-width: 300px;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.8;
}

.account-page-content {
  display: grid;
  flex: 1 1 58%;
  align-content: start;
  gap: 18px;
  width: 58%;
  max-height: none;
  min-height: 560px;
  padding: 42px 36px;
  overflow: visible;
}

.account-form .review-field input,
.account-form .review-field select,
.account-form button {
  width: 100%;
}

.account-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.checkout-address-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
}

.address-action-button,
.address-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 224, 138, 0.42);
  background: rgba(5, 5, 5, 0.72);
  color: var(--gold-bright);
  box-shadow: none;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.address-action-button:hover,
.address-action-link:hover,
.address-text-button:hover {
  color: #140f0a;
  background: linear-gradient(135deg, #d69a2d, var(--gold-bright));
}

.address-modal-open {
  overflow: hidden;
}

.address-modal[hidden] {
  display: none;
}

.address-modal {
  position: fixed;
  inset: 0;
  z-index: 3200;
  display: flex;
  justify-content: flex-end;
}

.address-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(8px);
}

.address-drawer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  width: min(520px, 100%);
  height: 100%;
  border-left: 1px solid rgba(255, 224, 138, 0.3);
  background: linear-gradient(180deg, #171717, #090909);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.58);
}

.address-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 28px 18px;
  border-bottom: 1px solid rgba(255, 224, 138, 0.16);
}

.address-modal-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 6vw, 3.2rem);
  font-weight: 600;
  line-height: 0.95;
  color: var(--gold-bright);
}

.address-close-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 224, 138, 0.34);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.78);
  color: var(--gold-bright);
  box-shadow: none;
  font-size: 1.6rem;
  line-height: 1;
}

.address-add-row {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin: 18px 28px 0;
  border: 1px dashed rgba(255, 224, 138, 0.48);
  border-radius: 8px;
  color: var(--gold-bright);
  font-weight: 800;
  text-decoration: none;
  background: rgba(255, 224, 138, 0.07);
}

.saved-address-list {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 0;
  padding: 20px 28px 30px;
  overflow-y: auto;
}

.saved-address-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 224, 138, 0.22);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.48);
}

.saved-address-card.is-selected {
  border-color: var(--gold-bright);
  background: rgba(255, 224, 138, 0.1);
}

.saved-address-topline,
.saved-address-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.address-radio-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-bright);
  font-weight: 800;
}

.address-radio-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.default-pill {
  border: 1px solid rgba(255, 224, 138, 0.34);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.saved-address-card strong {
  color: var(--text);
  font-size: 1rem;
}

.saved-address-card p,
.address-empty-state p {
  color: var(--muted);
  line-height: 1.7;
}

.deliver-address-button {
  min-height: 40px;
  padding: 10px 18px;
  font-size: 0.84rem;
}

.address-text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 224, 138, 0.28);
  border-radius: 999px;
  background: transparent;
  color: var(--gold-bright);
  box-shadow: none;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.address-empty-state {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(255, 224, 138, 0.2);
  border-radius: 8px;
  background: rgba(255, 224, 138, 0.06);
}

.address-empty-state strong {
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
}

.address-page {
  min-height: calc(100vh - 93px);
  padding: 48px 56px;
  background: rgba(243, 246, 250, 0.06);
}

.address-page-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(380px, 0.64fr);
  width: min(1080px, 100%);
  min-height: 560px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 224, 138, 0.24);
  border-radius: 8px;
  background: linear-gradient(180deg, #171717, #0d0d0d);
  box-shadow: var(--shadow);
}

.address-page-promo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 44px 32px;
  background:
    radial-gradient(circle at 70% 78%, rgba(5, 5, 5, 0.24), transparent 24%),
    linear-gradient(145deg, #c69323 0%, #f2d36e 100%);
  color: #140f0a;
}

.address-page-promo .section-kicker,
.address-page-promo h1,
.address-page-promo p {
  color: #140f0a;
}

.address-page-promo h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 0.92;
}

.address-page-promo p {
  max-width: 300px;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.8;
}

.address-page-content {
  display: grid;
  align-content: start;
  min-height: 560px;
  padding: 42px 36px;
  overflow-y: auto;
}

.address-form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.address-cancel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 224, 138, 0.34);
  color: var(--gold-bright);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .about-section,
  .buy-page,
  .product-showcase,
  .reviews-strip,
  .book-now-section,
  .contact-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .site-header {
    position: sticky;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    min-height: 82px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header.is-scrolled {
    padding: 12px 18px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-block {
    min-width: 0;
    gap: 10px;
  }

  .brand-name,
  .brand-wordmark.brand-name {
    font-size: clamp(1.25rem, 5.3vw, 1.8rem);
    letter-spacing: 0.06em;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 5, 5, 0.72);
    box-shadow: none;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-bright);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .header-actions {
    gap: 10px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 8px;
    background: rgba(5, 5, 5, 0.96);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.25s ease, opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  }

  .site-nav.is-open {
    max-height: 320px;
    border-color: var(--line);
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 18px;
    border-bottom: 1px solid rgba(255, 224, 138, 0.14);
    font-size: 1rem;
  }

  .account-nav-button {
    justify-content: flex-start;
    width: 100%;
    padding: 15px 18px;
    border-bottom: 1px solid rgba(255, 224, 138, 0.14);
    border-radius: 0;
    color: var(--muted);
    font-size: 1rem;
    text-align: left;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .editorial-section,
  .editorial-right,
  .about-row,
  .about-row-reverse,
  .product-detail-panel,
  .product-benefits-panel,
  .product-grid,
  .review-workspace,
  .review-grid,
  .buy-hero,
  .buy-panel,
  .book-now-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero h1 {
    font-size: clamp(3rem, 11vw, 4.6rem);
  }

  .editorial-image img {
    height: auto;
  }

  .about-row .editorial-image img,
  .product-detail-image img,
  .product-benefits-panel .editorial-image img {
    height: auto;
  }

  .editorial-content {
    padding: 0 24px;
  }

  .about-row,
  .about-row-reverse {
    min-height: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .about-row .editorial-content {
    padding: 0 24px;
  }

  .about-row .editorial-image,
  .about-row-reverse .editorial-image,
  .product-benefits-panel .editorial-image {
    justify-content: center;
    align-items: center;
    height: clamp(320px, 82vw, 420px);
    min-height: 0;
    padding: 0;
  }

  .about-row .editorial-image img,
  .product-benefits-panel .editorial-image img {
    width: 100%;
    max-width: none;
    height: 100%;
  }

  .buy-visual img {
    height: 340px;
  }

  .product-benefits-panel {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .product-info-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-grid-two,
  .form-grid-three {
    grid-template-columns: 1fr;
  }

  .account-dialog {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
  }

  .account-promo {
    min-height: 220px;
    padding: 30px 24px;
  }

  .account-illustration {
    display: none;
  }


@media (max-width: 768px) {
  [data-reveal="left"],
  [data-reveal="right"] {
    transform: translateY(24px);
  }

  .product-detail-panel,
  .product-detail-panel > * {
    min-width: 0;
    max-width: 100%;
  }

  .product-detail-image img {
    max-width: 100%;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .site-header.is-scrolled {
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand-block,
  .brand-wordmark,
  .header-actions,
  .footer-column,
  .footer-brand-wrap {
    min-width: 0;
  }

  .brand-wordmark {
    max-width: 100%;
  }

  .brand-text {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .site-header .brand-wordmark {
    white-space: nowrap;
  }

  .brand-block {
    gap: 7px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .brand-name,
  .brand-wordmark.brand-name {
    font-size: clamp(1rem, 5vw, 1.35rem);
    letter-spacing: 0.03em;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .header-actions {
    gap: 6px;
  }

  .account-nav-button {
    width: auto;
    padding: 0;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .nav-cart {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .footer-brand-column {
    grid-column: 1 / -1;
  }

  .footer-brand-wrap {
    gap: 10px;
  }

  .brand-wordmark.footer-brand {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .footer-column a,
  .footer-column span {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

@media (max-width: 480px) {
  .site-header {
    gap: 6px;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .brand-block {
    gap: 5px;
  }

  .brand-name,
  .brand-wordmark.brand-name {
    font-size: 1rem;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
  }

  .account-nav-button {
    font-size: 0.64rem;
  }

  .nav-cart {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-brand-column {
    grid-column: auto;
  }
}

@media (max-width: 360px) {
  .brand-logo {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .brand-name,
  .brand-wordmark.brand-name {
    font-size: 0.86rem;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
  }

  .account-nav-button {
    font-size: 0.58rem;
  }

  .nav-cart {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }
}
  .account-content {
    overflow: visible;
    padding: 26px 20px 24px;
  }

  .account-page {
    padding: 24px;
  }

  .account-page-card {
    flex-direction: column;
    width: 100%;
    min-height: 0;
  }

  .account-page-promo {
    flex: 0 0 auto;
    width: 100%;
    min-height: 220px;
    padding: 30px 24px;
    border-radius: 8px 8px 0 0;
  }

  .account-product-promo {
    gap: 14px;
    margin-top: 20px;
  }

  .account-product-copy {
    gap: 9px;
  }

  .account-product-copy h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .account-page-promo .account-product-copy p,
  .account-product-copy li {
    max-width: none;
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .account-product-copy ul {
    gap: 5px;
  }

  .account-product-copy strong {
    font-size: 1.15rem;
  }

  .account-product-visual {
    display: none;
  }

  .account-page-content {
    width: 100%;
    max-height: none;
    min-height: 0;
    padding: 26px 20px 24px;
    overflow: visible;
  }

  .address-page {
    padding: 24px;
  }

  .address-page-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .address-page-promo {
    min-height: 220px;
    padding: 30px 24px;
  }

  .address-page-content {
    min-height: 0;
    padding: 26px 20px 24px;
  }

  .address-modal {
    align-items: flex-end;
  }

  .address-drawer {
    width: 100%;
    height: min(86vh, 760px);
    border-top: 1px solid rgba(255, 224, 138, 0.3);
    border-left: 0;
  }

  .address-modal-header,
  .saved-address-list {
    padding-left: 20px;
    padding-right: 20px;
  }

  .address-add-row {
    margin-left: 20px;
    margin-right: 20px;
  }

  .saved-address-actions,
  .address-form-actions,
  .checkout-address-actions {
    align-items: stretch;
  }

  .deliver-address-button,
  .address-text-button,
  .address-action-button,
  .address-action-link,
  .address-cancel-link {
    width: 100%;
  }

  .admin-review-page {
    padding: 32px 24px;
  }

  .admin-review-toolbar,
  .admin-review-card {
    grid-template-columns: 1fr;
  }

  .admin-review-toolbar {
    align-items: stretch;
  }

  .admin-review-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .admin-delete-review {
    width: 100%;
  }
}

.review-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin: 18px 0;
}

.review-field input[type="file"] {
  padding: 14px;
  cursor: pointer;
}

.review-field input[type="file"]::file-selector-button {
  background: linear-gradient(135deg, #c99a2e, #f5d97a);
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  margin-right: 12px;
}

.whatsapp-support-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34), 0 0 0 rgba(37, 211, 102, 0);
  opacity: 0;
  transform: translateY(12px) scale(0.92);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappPulse 4.5s ease-in-out infinite;
}

.whatsapp-support-button.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.whatsapp-support-button:hover,
.whatsapp-support-button:focus-visible {
  transform: translateY(0) scale(1.08);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38), 0 0 22px rgba(37, 211, 102, 0.48);
}

.whatsapp-support-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.whatsapp-support-icon {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

@keyframes whatsappPulse {
  0%,
  72%,
  100% {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34), 0 0 0 0 rgba(37, 211, 102, 0);
  }

  82% {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34), 0 0 0 12px rgba(37, 211, 102, 0.16);
  }

  92% {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34), 0 0 0 18px rgba(37, 211, 102, 0);
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 769px) {
  .whatsapp-support-button::after {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    width: max-content;
    max-width: 220px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 224, 138, 0.22);
    border-radius: 8px;
    background: rgba(7, 7, 7, 0.92);
    color: var(--text);
    content: attr(data-tooltip);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    opacity: 0;
    pointer-events: none;
    transform: translate(8px, -50%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
  }

  .whatsapp-support-button:hover::after,
  .whatsapp-support-button:focus-visible::after {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-support-button {
    animation: none;
    transition: opacity 0.3s ease;
  }

  .whatsapp-support-button:hover,
  .whatsapp-support-button:focus-visible,
  .whatsapp-support-button.is-visible {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .whatsapp-support-button {
    right: 20px;
    bottom: 20px;
  }
}
/* Visible only when config.js enables the development checkout. */
.developer-mode-notice {
  display: flex;
  align-items: center;
  gap: .7rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 1.25rem auto 0;
  padding: .8rem 1rem;
  border: 1px solid #cfac58;
  border-radius: 10px;
  background: #fff8e7;
  color: #654b14;
  font-size: .86rem;
}
.developer-mode-notice span { color: #765f2d; }

@media (max-width: 768px) {
  html {
    overflow-x: clip;
  }

  .brand-wordmark {
    max-width: 100%;
  }

  .contact-grid a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .brand-text {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .site-header .brand-wordmark {
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  [data-reveal="left"],
  [data-reveal="right"] {
    transform: translateY(24px);
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .site-header.is-scrolled {
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand-block,
  .brand-wordmark,
  .header-actions,
  .footer-column,
  .footer-brand-wrap {
    min-width: 0;
  }

  .brand-block {
    gap: 7px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .brand-name,
  .brand-wordmark.brand-name {
    font-size: clamp(1rem, 5vw, 1.35rem);
    letter-spacing: 0.03em;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .header-actions {
    gap: 6px;
  }

  .account-nav-button {
    width: auto;
    padding: 0;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .nav-cart {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .footer-brand-column {
    grid-column: 1 / -1;
  }

  .footer-brand-wrap {
    gap: 10px;
  }

  .brand-wordmark.footer-brand {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .footer-column a,
  .footer-column span {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

@media (max-width: 480px) {
  .site-header {
    gap: 6px;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .brand-block {
    gap: 5px;
  }

  .brand-name,
  .brand-wordmark.brand-name {
    font-size: 1rem;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
  }

  .account-nav-button {
    font-size: 0.64rem;
  }

  .nav-cart {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-brand-column {
    grid-column: auto;
  }
}

@media (max-width: 360px) {
  .brand-logo {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .brand-name,
  .brand-wordmark.brand-name {
    font-size: 0.86rem;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
  }

  .account-nav-button {
    font-size: 0.58rem;
  }

  .nav-cart {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }
}
