: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;
}

#home,
#about,
#products,
#reviews,
#contact {
  scroll-margin-top: 140px;
}

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);
}

.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: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 56px;
  background: rgba(7, 7, 7, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.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;
  gap: 28px;
}

.menu-toggle {
  display: none;
}

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

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

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

.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-cream.jpg") 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-detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

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

.product-detail-list span {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-bright);
  background: rgba(255, 224, 138, 0.1);
  font-size: 0.95rem;
  font-weight: 700;
}

.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: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.buy-page {
  padding: 86px 56px;
}

.buy-hero,
.buy-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(320px, 1.15fr);
  align-items: center;
  gap: 42px;
  max-width: 1480px;
  margin: 0 auto;
}

.buy-copy h1,
.order-summary h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold-bright);
  font-weight: 600;
  line-height: 0.98;
}

.buy-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 5vw, 5.5rem);
}

.buy-copy p,
.order-summary p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.buy-visual img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.buy-panel {
  grid-template-columns: minmax(320px, 0.9fr) minmax(280px, 0.55fr);
  align-items: start;
  margin-top: 42px;
}

.buy-form,
.order-summary {
  display: grid;
  gap: 16px;
  padding: 28px;
  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);
}

.checkout-price-card,
.checkout-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 224, 138, 0.28);
  background: rgba(255, 224, 138, 0.1);
}

.form-section-title {
  display: grid;
  gap: 4px;
  padding-top: 8px;
}

.form-section-title span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.form-section-title strong {
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1;
}

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

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

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

.checkout-price-card {
  display: grid;
  gap: 4px;
}

.checkout-price-card span,
.checkout-total span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.checkout-price-card strong,
.checkout-total strong {
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.checkout-price-card p {
  color: var(--muted);
  line-height: 1.5;
}

.order-summary h2 {
  margin-bottom: 2px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.summary-lines {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.summary-lines strong {
  color: var(--gold-bright);
}

.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-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;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
    min-height: 82px;
    padding-left: 18px;
    padding-right: 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);
  }

  .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;
  }

  .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,
  .site-footer {
    flex-direction: column;
    align-items: center;
  }

  .site-footer {
    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;
  }

  .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-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;
  }
}
