:root {
  --ink: #16110b;
  --deep: #21150d;
  --paper: #fffaf1;
  --white: #fffdf8;
  --gold: #c79645;
  --gold-light: #efd39a;
  --herb: #4f6b45;
  --sage-soft: #eef2e8;
  --rose: #a95865;
  --muted: #7a6b5b;
  --line: rgba(91, 67, 39, 0.18);
  --shadow: 0 22px 60px rgba(30, 20, 12, 0.16);
  --shadow-soft: 0 12px 32px rgba(30, 20, 12, 0.1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.94), rgba(255, 253, 248, 0.98) 42%, rgba(238, 242, 232, 0.84)),
    linear-gradient(135deg, rgba(79, 107, 69, 0.18), rgba(199, 150, 69, 0.14) 48%, rgba(169, 88, 101, 0.1));
  font-family: "Inter", Arial, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff7e8;
  background: rgba(18, 12, 8, 0.78);
  border-bottom: 1px solid rgba(239, 211, 154, 0.22);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  display: block;
  width: 38px;
  height: 38px;
  flex: none;
}

.main-nav {
  display: flex;
  gap: clamp(12px, 2.6vw, 32px);
  color: rgba(255, 247, 232, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a:hover,
.nav-cta:hover {
  color: var(--gold-light);
}

.nav-cta {
  padding: 10px 18px;
  color: #f7d995;
  border: 1px solid rgba(239, 211, 154, 0.48);
  border-radius: 999px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 124px clamp(22px, 6vw, 80px) 78px;
  color: #fff8ed;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 8, 5, 0.95) 0%, rgba(23, 14, 9, 0.74) 45%, rgba(18, 11, 7, 0.34) 100%),
    linear-gradient(180deg, rgba(15, 10, 6, 0.08), rgba(15, 10, 6, 0.62));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 620px) minmax(260px, 360px);
  gap: clamp(28px, 7vw, 110px);
  align-items: end;
  width: 100%;
  max-width: 1180px;
}

.hero-content {
  width: min(620px, 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cinzel", Georgia, serif;
}

h1 {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: clamp(4rem, 10vw, 8.8rem);
  line-height: 0.86;
  letter-spacing: 0.08em;
  text-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  text-transform: uppercase;
}

.hero-title {
  margin-bottom: 20px;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy {
  width: min(540px, 100%);
  color: rgba(255, 248, 237, 0.86);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions,
.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #1d130c;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 16px 34px rgba(199, 150, 69, 0.24);
}

.button.ghost {
  color: #fff7e8;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 247, 232, 0.42);
}

.hero-product-card {
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(239, 211, 154, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.hero-product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.card-kicker {
  margin: 0;
  padding: 14px 18px;
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(239, 211, 154, 0.18);
}

.hero-card-body {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  color: #fff7e8;
}

.hero-card-body span {
  color: rgba(255, 248, 237, 0.8);
  font-weight: 700;
}

.hero-card-body strong {
  color: var(--gold-light);
  font-size: 1.4rem;
}

.trust-bar {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  width: calc(100% - clamp(36px, 10vw, 144px));
  border: 1px solid rgba(91, 67, 39, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.trust-bar div {
  padding: 22px 24px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(248, 241, 229, 0.88)),
    linear-gradient(90deg, rgba(79, 107, 69, 0.08), rgba(199, 150, 69, 0.1));
  border-right: 1px solid rgba(91, 67, 39, 0.12);
}

.trust-bar div:last-child {
  border-right: 0;
}

.trust-bar strong,
.trust-bar span {
  display: block;
}

.trust-bar strong {
  margin-bottom: 4px;
  color: var(--deep);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.12rem;
}

.trust-bar span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.section {
  padding: 96px clamp(18px, 5vw, 72px);
}

.section-heading {
  width: min(740px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.order-section h2 {
  margin-bottom: 12px;
  color: var(--deep);
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-heading p {
  color: var(--muted);
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.product-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #23170e;
  box-shadow: var(--shadow);
}

.product-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 9px 12px;
  color: var(--gold-light);
  background: rgba(18, 12, 8, 0.72);
  border: 1px solid rgba(239, 211, 154, 0.36);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-details {
  display: grid;
  gap: 24px;
}

.product-intro {
  padding-bottom: 8px;
}

.product-intro h3 {
  margin-bottom: 12px;
  color: var(--deep);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.16;
}

.product-intro p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.price-row {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.price-row > div {
  flex: 1 1 170px;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(91, 67, 39, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.muted {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.86rem;
}

.price-row strong {
  color: var(--deep);
  font-family: "Cinzel", Georgia, serif;
  font-size: 2rem;
}

.benefit-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 28px;
  color: #3d3025;
  line-height: 1.55;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--herb);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(79, 107, 69, 0.12);
}

.ingredient-panel,
.result-panel {
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(238, 242, 232, 0.68));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ingredient-panel h3,
.result-panel h3,
.review-form h3 {
  margin-bottom: 16px;
  color: var(--deep);
  font-family: "Cinzel", Georgia, serif;
}

.ingredient-tags,
.result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ingredient-tags span,
.result-tags span {
  padding: 10px 13px;
  color: #2c2017;
  background: rgba(199, 150, 69, 0.16);
  border: 1px solid rgba(199, 150, 69, 0.22);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.ritual-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(243, 234, 220, 0.92), rgba(238, 242, 232, 0.94)),
    url("assets/rizoria-ai-hero-bg.webp") center / cover fixed;
}

.ritual-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(199, 150, 69, 0.18), transparent 24%),
    radial-gradient(circle at 84% 74%, rgba(79, 107, 69, 0.18), transparent 28%);
  pointer-events: none;
}

.ritual-section > * {
  position: relative;
  z-index: 1;
}

.ritual-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}

.ritual-image {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(91, 67, 39, 0.18);
  border-radius: 8px;
  background: #1c120c;
  box-shadow: var(--shadow);
}

.ritual-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transform: scale(1.02);
  animation: slow-zoom 12s ease-in-out infinite alternate;
}

.mix-options {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mix-options span {
  padding: 10px 13px;
  color: #1d130c;
  background: rgba(239, 211, 154, 0.9);
  border: 1px solid rgba(255, 253, 248, 0.44);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(15, 10, 6, 0.24);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.steps article {
  position: relative;
  min-height: 150px;
  padding: 28px 30px 28px 104px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.steps article:hover {
  transform: translateX(6px);
  box-shadow: 0 18px 46px rgba(52, 35, 18, 0.14);
}

.steps span {
  position: absolute;
  top: 26px;
  left: 30px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 0;
  color: var(--rose);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.45rem;
  background: rgba(169, 88, 101, 0.08);
  border-radius: 50%;
}

.steps h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.steps p,
.review-card p,
.order-section p {
  color: var(--muted);
  line-height: 1.65;
}

.collection-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  color: #fff8ed;
  background:
    linear-gradient(135deg, rgba(18, 12, 8, 0.96), rgba(40, 65, 47, 0.9)),
    linear-gradient(90deg, #21150d, #4f6b45);
}

.collection-section::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -8%;
  width: 48vw;
  height: 48vw;
  max-width: 620px;
  max-height: 620px;
  background: radial-gradient(circle, rgba(239, 211, 154, 0.16), transparent 60%);
  animation: glow-drift 9s ease-in-out infinite alternate;
  pointer-events: none;
}

.collection-section > * {
  position: relative;
  z-index: 1;
}

.product-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(248, 241, 229, 0.92)),
    url("assets/rizoria-ai-hero-bg.webp") center / cover fixed;
}

.collection-copy {
  max-width: 560px;
}

.collection-copy h2 {
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.collection-copy p:last-child {
  color: rgba(255, 248, 237, 0.78);
  line-height: 1.7;
}

.collection-grid {
  display: grid;
  gap: 14px;
}

.collection-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 8px 18px;
  padding: 22px;
  background: rgba(255, 250, 241, 0.08);
  border: 1px solid rgba(239, 211, 154, 0.18);
  border-radius: 8px;
  overflow: hidden;
  animation: float-card 5s ease-in-out infinite;
}

.collection-grid article:nth-child(2) {
  animation-delay: 0.7s;
}

.collection-grid article:nth-child(3) {
  animation-delay: 1.4s;
}

.collection-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(239, 211, 154, 0.12), transparent);
  transform: translateX(-120%);
  animation: shimmer 5.5s ease-in-out infinite;
}

.collection-grid span {
  grid-row: span 2;
  color: var(--gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.5rem;
}

.collection-grid strong {
  font-size: 1.08rem;
}

.collection-grid p {
  margin: 0;
  color: rgba(255, 248, 237, 0.7);
}

.collection-grid small {
  align-self: center;
  padding: 8px 10px;
  color: var(--gold-light);
  border: 1px solid rgba(239, 211, 154, 0.28);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes slow-zoom {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.08);
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes shimmer {
  0%,
  58% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@keyframes glow-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-36px, 28px, 0) scale(1.08);
  }
}

.reviews-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(248, 241, 229, 0.96)),
    linear-gradient(135deg, rgba(169, 88, 101, 0.12), rgba(79, 107, 69, 0.12));
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(300px, 1fr);
  gap: 24px;
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
}

.review-form,
.whatsapp-order-card,
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.review-form {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 15px;
  padding: 24px;
}

.whatsapp-order-card {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
  padding: 28px;
  overflow: hidden;
  color: #fff8ed;
  background:
    linear-gradient(145deg, rgba(31, 23, 16, 0.96), rgba(64, 84, 55, 0.94)),
    url("assets/rizoria-ai-hero-bg.webp") center / cover;
  border-color: rgba(240, 208, 138, 0.24);
}

.whatsapp-order-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 208, 138, 0.16), transparent 48%);
  pointer-events: none;
}

.whatsapp-order-card > * {
  position: relative;
  z-index: 1;
}

.whatsapp-order-card h3 {
  margin: 0;
  color: var(--gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.18;
}

.whatsapp-order-card p:not(.form-kicker) {
  margin: 0;
  color: rgba(255, 248, 237, 0.78);
  line-height: 1.75;
}

.order-mini-list {
  display: grid;
  gap: 10px;
}

.order-mini-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 248, 237, 0.9);
  font-weight: 800;
}

.order-mini-list span::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--gold-light);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(240, 208, 138, 0.12);
}

.brand-whatsapp {
  width: 100%;
  color: #211811;
  background: linear-gradient(135deg, #f1d590, #bd8331);
  border-color: rgba(255, 247, 226, 0.36);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.brand-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: #211811;
  background: linear-gradient(135deg, #f1d590, #bd8331);
  border: 1px solid rgba(255, 247, 226, 0.42);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(37, 25, 12, 0.26);
  font-weight: 900;
}

.floating-whatsapp::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background: var(--herb);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(85, 115, 87, 0.16);
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(37, 25, 12, 0.32);
}

.form-kicker {
  margin-bottom: 6px;
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-form label {
  display: grid;
  gap: 7px;
  color: #3c3027;
  font-size: 0.9rem;
  font-weight: 800;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffaf3;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  outline: 2px solid rgba(199, 150, 69, 0.28);
  border-color: rgba(199, 150, 69, 0.52);
}

.review-form textarea {
  resize: vertical;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(52, 35, 18, 0.13);
}

.review-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #2a1a10;
}

.review-body {
  padding: 22px;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.review-card h3 {
  margin: 8px 0 8px;
  font-size: 1.04rem;
}

.review-card p {
  margin-bottom: 0;
}

.purchase-toast {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 55;
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: center;
  width: min(360px, calc(100vw - 36px));
  padding: 16px 18px;
  color: #fff8ed;
  background:
    linear-gradient(135deg, rgba(18, 12, 8, 0.94), rgba(52, 32, 20, 0.94)),
    linear-gradient(90deg, rgba(199, 150, 69, 0.18), rgba(79, 107, 69, 0.14));
  border: 1px solid rgba(239, 211, 154, 0.32);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(18, 12, 8, 0.26);
  opacity: 0;
  transform: translate3d(18px, 12px, 0);
  pointer-events: none;
  transition: opacity 240ms ease, transform 240ms ease;
}

.purchase-toast.show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.purchase-dot {
  width: 12px;
  height: 12px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(239, 211, 154, 0.14);
}

.purchase-toast strong {
  display: block;
  margin-bottom: 3px;
  color: var(--gold-light);
  font-size: 0.95rem;
}

.purchase-toast p {
  margin: 0;
  color: rgba(255, 248, 237, 0.78);
  font-size: 0.88rem;
  line-height: 1.45;
}

.order-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 64px clamp(18px, 5vw, 72px);
  color: #fff8ed;
  background: linear-gradient(135deg, #1a100a, #352014 58%, #4f6b45);
}

.order-section h2 {
  color: var(--gold-light);
}

.order-section p {
  margin-bottom: 0;
  color: rgba(255, 248, 237, 0.78);
}

.whatsapp {
  flex: 0 0 auto;
}

.seo-rich-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(238, 245, 237, 0.92)),
    linear-gradient(135deg, rgba(85, 115, 87, 0.12), rgba(185, 133, 52, 0.1));
}

.seo-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.seo-topic-grid article {
  padding: 24px;
  background: rgba(255, 254, 253, 0.88);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.seo-topic-grid h3 {
  color: var(--deep);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.35;
}

.seo-topic-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #fff7e8;
  background: #120c08;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 247, 232, 0.72);
}

.footer-admin {
  color: var(--gold-light);
  font-weight: 800;
}

.checkout-page,
.admin-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.94), rgba(238, 242, 232, 0.92)),
    url("assets/rizoria-ai-hero-bg.webp") center / cover fixed;
}

.checkout-shell,
.admin-shell {
  padding: 112px clamp(18px, 5vw, 72px) 72px;
}

.checkout-hero,
.admin-heading {
  max-width: 1180px;
  margin: 0 auto 28px;
}

.checkout-hero {
  display: grid;
  min-height: 280px;
  align-items: end;
  padding: 42px;
  color: #fff8ed;
  background:
    linear-gradient(90deg, rgba(15, 10, 6, 0.92), rgba(15, 10, 6, 0.52)),
    url("assets/rizoria-ai-hero-bg.webp") center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.checkout-hero h1,
.admin-heading h1,
.admin-login-card h1 {
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: clamp(3rem, 7vw, 6rem);
}

.admin-heading h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.95;
}

.checkout-hero p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 248, 237, 0.84);
  line-height: 1.7;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(360px, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.order-summary,
.checkout-form,
.admin-login-card,
.order-card,
.empty-orders {
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.order-summary {
  position: sticky;
  top: 94px;
  overflow: hidden;
}

.order-summary img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.summary-body,
.checkout-form,
.admin-login-card {
  padding: 24px;
}

.summary-body h2,
.checkout-form h2 {
  margin-bottom: 18px;
  color: var(--deep);
  font-family: "Cinzel", Georgia, serif;
}

.summary-row,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.summary-row span,
.summary-total span {
  color: var(--muted);
  font-weight: 800;
}

.summary-row strong,
.summary-total strong {
  color: var(--deep);
  font-size: 1.15rem;
}

.summary-total {
  margin-top: 16px;
  padding: 18px;
  background: rgba(199, 150, 69, 0.14);
  border: 1px solid rgba(199, 150, 69, 0.22);
  border-radius: 8px;
}

.summary-total strong {
  font-size: 1.65rem;
}

.quantity-control,
.checkout-form label,
.admin-login-card label {
  display: grid;
  gap: 7px;
  color: #3c3027;
  font-size: 0.9rem;
  font-weight: 800;
}

.quantity-control {
  margin-top: 16px;
}

.checkout-form {
  display: grid;
  gap: 20px;
}

.form-section {
  display: grid;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-grid,
.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.payment-method {
  padding: 16px;
  color: var(--muted);
  background: rgba(255, 250, 243, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.payment-method.active {
  background: rgba(199, 150, 69, 0.14);
  border-color: rgba(199, 150, 69, 0.34);
}

.payment-method strong,
.payment-method span {
  display: block;
}

.payment-method strong {
  margin-bottom: 6px;
  color: var(--deep);
}

.payment-method span {
  font-size: 0.9rem;
  line-height: 1.5;
}

.wide-field {
  grid-column: 1 / -1;
}

.checkout-form input,
.checkout-form textarea,
.admin-login-card input,
.quantity-control input {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffaf3;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.checkout-form textarea {
  resize: vertical;
}

.qr-card {
  display: grid;
  gap: 12px;
}

.qr-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.qr-placeholder,
.upi-qr-image {
  min-height: 240px;
  padding: 20px;
  background:
    linear-gradient(45deg, rgba(22, 17, 11, 0.08) 25%, transparent 25% 50%, rgba(22, 17, 11, 0.08) 50% 75%, transparent 75%),
    #fff;
  background-size: 22px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.qr-placeholder {
  display: grid;
  place-items: center;
  color: var(--deep);
  text-align: center;
}

.upi-qr-image {
  width: 100%;
  object-fit: contain;
}

.qr-placeholder span,
.qr-placeholder strong,
.qr-placeholder small {
  display: block;
  padding: 4px 10px;
  background: rgba(255, 253, 248, 0.92);
}

.qr-placeholder strong {
  font-family: "Cinzel", Georgia, serif;
  font-size: 3rem;
}

.upi-details {
  display: grid;
  gap: 14px;
  align-content: start;
}

.checkout-submit {
  justify-self: start;
  min-width: 180px;
}

.checkout-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.payment-note {
  margin: 0;
  padding: 14px 16px;
  color: #5d4c3c;
  background: rgba(79, 107, 69, 0.1);
  border: 1px solid rgba(79, 107, 69, 0.18);
  border-radius: 8px;
  line-height: 1.55;
}

.order-modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(18, 12, 8, 0.72);
}

.order-modal[hidden] {
  display: none;
}

.order-modal-card {
  width: min(620px, 100%);
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.order-modal-card h2 {
  color: var(--deep);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.modal-actions,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dark-ghost {
  color: var(--deep);
  border-color: rgba(91, 67, 39, 0.28);
  background: rgba(255, 253, 248, 0.56);
}

.admin-login {
  min-height: calc(100vh - 160px);
  display: grid;
  place-items: center;
}

.admin-login-card {
  width: min(520px, 100%);
}

.admin-login-card h1,
.admin-heading h1 {
  color: var(--deep);
}

.admin-login-card p {
  color: var(--muted);
  line-height: 1.65;
}

.admin-login-card small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.admin-dashboard {
  max-width: 1180px;
  margin: 0 auto;
}

.admin-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.admin-heading p {
  color: var(--muted);
}

.admin-live-note {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  padding: 16px 18px;
  color: var(--muted);
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.admin-live-note strong {
  flex: 0 0 auto;
  color: var(--deep);
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.admin-metrics article {
  padding: 22px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.admin-metrics span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 800;
}

.admin-metrics strong {
  color: var(--deep);
  font-family: "Cinzel", Georgia, serif;
  font-size: 2.1rem;
}

.orders-list {
  display: grid;
  gap: 16px;
}

.order-card {
  padding: 22px;
}

.order-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.order-card-head span {
  color: var(--rose);
  font-weight: 900;
}

.order-card-head h3 {
  margin: 6px 0;
}

.order-card-head p {
  margin: 0;
  color: var(--muted);
}

.order-card-head strong {
  color: var(--deep);
  font-size: 1.8rem;
}

.order-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 0;
}

.order-card-grid p,
.order-address p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.order-card-grid b,
.order-address b {
  display: block;
  margin-bottom: 4px;
  color: var(--deep);
}

.proof-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--rose);
  font-weight: 900;
}

.empty-orders {
  padding: 34px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 112px;
    padding-bottom: 54px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(16, 10, 5, 0.88), rgba(16, 10, 5, 0.54));
  }

  .hero-inner,
  .product-grid,
  .ritual-layout,
  .steps,
  .review-layout,
  .reviews-list,
  .checkout-grid,
  .form-grid,
  .payment-grid,
  .payment-methods,
  .admin-metrics,
  .order-card-grid,
  .order-section,
  .site-footer,
  .collection-section,
  .trust-bar {
    grid-template-columns: 1fr;
  }

  .hero-product-card {
    display: none;
  }

  .trust-bar {
    width: calc(100% - 36px);
    margin-top: 0;
  }

  .trust-bar div {
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(91, 67, 39, 0.1);
  }

  .trust-bar div:last-child {
    border-bottom: 0;
  }

  .steps,
  .review-layout,
  .order-section,
  .site-footer {
    display: grid;
  }

  .review-form {
    position: static;
  }

  .whatsapp-order-card {
    position: static;
  }

  .order-section {
    text-align: left;
  }

  .order-summary {
    position: static;
  }

  .admin-heading {
    display: grid;
  }

  .admin-live-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand {
    font-size: 0.96rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .nav-cta {
    padding: 9px 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 94vh;
    padding-bottom: 48px;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 4.4rem);
  }

  .hero-title {
    font-size: 1.18rem;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .button {
    width: 100%;
  }

  .purchase-toast {
    right: 14px;
    bottom: 14px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .collection-grid article {
    grid-template-columns: 1fr;
  }

  .ritual-image img {
    min-height: 360px;
  }

  .steps article {
    padding: 88px 24px 24px;
  }

  .steps span {
    top: 24px;
    left: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Professional beauty-brand polish */
:root {
  --ink: #17130f;
  --deep: #211811;
  --paper: #fbf7ef;
  --white: #fffefd;
  --gold: #b98534;
  --gold-light: #f0d08a;
  --herb: #557357;
  --sage-soft: #eef5ed;
  --rose: #a95463;
  --muted: #72665b;
  --line: rgba(38, 30, 22, 0.13);
  --shadow: 0 30px 80px rgba(27, 19, 12, 0.18);
  --shadow-soft: 0 16px 44px rgba(27, 19, 12, 0.11);
}

body {
  background:
    linear-gradient(180deg, #fffdf9 0%, #f7f1e7 36%, #edf5ed 100%),
    linear-gradient(135deg, rgba(85, 115, 87, 0.16), rgba(169, 84, 99, 0.1));
}

body::selection {
  color: #fffdf9;
  background: var(--herb);
}

.site-header {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(19, 14, 10, 0.86);
  box-shadow: 0 10px 30px rgba(12, 8, 5, 0.16);
}

.brand {
  letter-spacing: 0.055em;
}

.brand-mark {
  background: none;
}

.main-nav a,
.nav-cta,
.button,
.collection-grid a {
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.main-nav a:hover {
  transform: translateY(-1px);
}

.nav-cta {
  background: rgba(240, 208, 138, 0.08);
  box-shadow: inset 0 0 0 1px rgba(240, 208, 138, 0.05);
}

.hero {
  min-height: 94vh;
  padding-top: 132px;
  background: #17100b;
}

.hero-media img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.015);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 8, 5, 0.96) 0%, rgba(26, 18, 12, 0.78) 46%, rgba(25, 17, 11, 0.36) 100%),
    linear-gradient(180deg, rgba(15, 10, 6, 0.08), rgba(15, 10, 6, 0.72));
}

.hero-inner {
  align-items: center;
  max-width: 1220px;
}

.hero-content {
  position: relative;
  padding-left: clamp(0px, 1.6vw, 18px);
}

.hero-content::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 8px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-light), rgba(85, 115, 87, 0.1));
  border-radius: 999px;
}

h1 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(2.45rem, 6vw, 5.75rem);
  line-height: 1.02;
  letter-spacing: 0.025em;
}

.hero-title {
  max-width: 680px;
  font-size: clamp(1.05rem, 2.3vw, 1.8rem);
  letter-spacing: 0.06em;
  line-height: 1.22;
}

.hero-copy {
  max-width: 630px;
  font-size: clamp(1rem, 1.3vw, 1.13rem);
}

.button.primary {
  color: #211811;
  background: linear-gradient(135deg, #f1d590, #bd8331);
  border-color: rgba(255, 247, 226, 0.35);
  box-shadow: 0 14px 30px rgba(189, 131, 49, 0.28);
}

.button.primary:hover {
  box-shadow: 0 18px 38px rgba(189, 131, 49, 0.34);
}

.button.ghost {
  color: #fff8ed;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 248, 237, 0.28);
  backdrop-filter: blur(10px);
}

.hero-product-card {
  overflow: hidden;
  background: rgba(255, 253, 248, 0.92);
  border-color: rgba(240, 208, 138, 0.38);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.hero-product-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.trust-bar {
  position: relative;
  z-index: 4;
  overflow: hidden;
  background: rgba(255, 254, 253, 0.92);
  border: 1px solid rgba(38, 30, 22, 0.1);
  box-shadow: 0 20px 50px rgba(37, 29, 20, 0.12);
  backdrop-filter: blur(18px);
}

.trust-bar strong {
  color: var(--deep);
}

.section {
  padding-top: clamp(72px, 8vw, 108px);
  padding-bottom: clamp(72px, 8vw, 108px);
}

main > .section:first-child {
  padding-top: 138px;
}

.section > h1,
.section > h2,
.section > p,
.section > ul,
.section > a,
.section > .eyebrow {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.section > h1 {
  color: var(--deep);
  font-size: clamp(2.2rem, 4vw, 4.35rem);
  line-height: 1.08;
  text-shadow: none;
}

.section > h2 {
  margin-top: 34px;
  color: var(--deep);
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
}

.section > p,
.section li {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.82;
}

.product-grid {
  padding: clamp(18px, 2vw, 28px);
  background: rgba(255, 254, 253, 0.78);
  border: 1px solid rgba(38, 30, 22, 0.1);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  align-items: start;
}

.product-section .product-gallery {
  align-self: start;
}

.product-section .product-details {
  gap: 14px;
}

.product-section .product-intro {
  padding-bottom: 0;
}

.product-section .product-intro h3 {
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 2.6vw, 2.8rem);
}

.product-section .price-row {
  padding-bottom: 12px;
}

.product-section .price-row > div {
  padding: 16px;
}

.product-section .benefit-list {
  gap: 3px;
}

.product-image,
.ritual-image {
  border-radius: 18px;
}

.product-image img,
.ritual-image img {
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(31, 22, 14, 0.17);
}

.product-badge,
.card-kicker {
  letter-spacing: 0.12em;
}

.benefit-list li {
  padding-top: 5px;
  padding-bottom: 5px;
}

.product-section .result-panel {
  padding: 18px;
}

.product-section .result-panel h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.product-section .result-tags {
  gap: 8px;
}

.product-section .result-tags span {
  padding: 8px 11px;
  font-size: 0.84rem;
}

.ingredient-panel,
.result-panel,
.steps article,
.review-form,
.review-card,
.faq-list article {
  border-radius: 14px;
}

.ingredient-tags span,
.result-tags span {
  background: linear-gradient(135deg, rgba(238, 245, 237, 0.95), rgba(255, 253, 248, 0.95));
  border-color: rgba(85, 115, 87, 0.18);
}

.collection-section {
  background:
    linear-gradient(135deg, rgba(19, 14, 10, 0.96), rgba(51, 35, 23, 0.94) 56%, rgba(67, 96, 68, 0.9)),
    url("assets/rizoria-ai-hero-bg.webp") center / cover fixed;
}

.collection-grid article {
  overflow: hidden;
  background: rgba(255, 253, 248, 0.1);
  backdrop-filter: blur(12px);
}

.collection-grid a {
  align-self: center;
  justify-self: end;
  padding: 8px 12px;
  color: var(--gold-light);
  border: 1px solid rgba(239, 211, 154, 0.28);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.collection-grid a:hover {
  color: #211811;
  background: var(--gold-light);
}

.section:not(.collection-section) .collection-grid {
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section:not(.collection-section) .collection-grid article {
  display: block;
  min-height: 100%;
  padding: 26px;
  color: var(--deep);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.section:not(.collection-section) .collection-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
}

.section:not(.collection-section) .collection-grid strong {
  display: block;
  margin-bottom: 10px;
}

.section:not(.collection-section) .collection-grid p {
  margin-bottom: 18px;
  color: var(--muted);
}

.section:not(.collection-section) .collection-grid a {
  justify-self: start;
  color: var(--herb);
  border-color: rgba(85, 115, 87, 0.24);
}

.section:not(.collection-section) .collection-grid a:hover {
  color: #fffdf9;
  background: var(--herb);
}

.faq-section {
  background: linear-gradient(180deg, #fffefd, #eef5ed);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.faq-list article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.faq-list h3 {
  color: var(--deep);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.35;
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}

.reviews-list {
  align-items: start;
}

.review-card {
  border-color: rgba(38, 30, 22, 0.1);
}

.order-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(19, 14, 10, 0.98), rgba(52, 34, 20, 0.94) 54%, rgba(74, 107, 76, 0.93)),
    url("assets/rizoria-ai-hero-bg.webp") center / cover;
}

.order-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(240, 208, 138, 0.08), transparent 55%);
  pointer-events: none;
}

.order-section > * {
  position: relative;
  z-index: 1;
}

.site-footer {
  background: #17130f;
  border-top: 1px solid rgba(240, 208, 138, 0.14);
}

@media (max-width: 860px) {
  .hero-content::before {
    display: none;
  }

  .hero-content {
    padding-left: 0;
  }

  .section:not(.collection-section) .collection-grid,
  .faq-list,
  .seo-topic-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    border-radius: 14px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.1rem, 12vw, 3.55rem);
    line-height: 1.04;
  }

  .site-header {
    background: rgba(19, 14, 10, 0.92);
  }

  .hero {
    min-height: 88vh;
  }

  .hero-actions {
    width: 100%;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    left: auto;
    min-height: 50px;
    padding: 0 16px;
  }

  .floating-whatsapp span {
    font-size: 0;
  }

  .floating-whatsapp span::after {
    content: "Order";
    font-size: 0.96rem;
  }

  .section > h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }
}

/* Final conversion and trust polish */
.hero .hero-inner {
  grid-template-columns: minmax(380px, 0.95fr) minmax(300px, 0.52fr);
  gap: clamp(36px, 5vw, 82px);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4.4rem, 7.4vw, 8.2rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.hero .hero-title {
  max-width: 760px;
  font-size: clamp(1.7rem, 2.7vw, 3rem);
}

.hero-product-card {
  max-width: 450px;
}

.social-proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: #17130f;
  color: rgba(255, 248, 237, 0.78);
}

.social-proof-strip p {
  margin: 0;
  color: rgba(255, 248, 237, 0.72);
  font-weight: 800;
}

.social-proof-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-proof-strip span {
  padding: 7px 11px;
  color: var(--gold-light);
  background: rgba(240, 208, 138, 0.08);
  border: 1px solid rgba(240, 208, 138, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.top-proof {
  padding-top: 84px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(240, 208, 138, 0.12);
}

.jar-motion-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  min-height: 640px;
  padding: clamp(104px, 10vw, 132px) clamp(18px, 6vw, 86px) clamp(72px, 8vw, 120px);
  overflow: hidden;
  color: #fff8ed;
  background:
    linear-gradient(120deg, rgba(15, 10, 7, 0.97), rgba(37, 25, 16, 0.92) 48%, rgba(75, 101, 66, 0.9)),
    url("assets/rizoria-ai-hero-bg.webp") center / cover;
}

.jar-motion-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(240, 208, 138, 0.12), transparent 42%),
    radial-gradient(circle at 72% 48%, rgba(240, 208, 138, 0.2), transparent 34%);
  pointer-events: none;
}

.jar-motion-copy,
.jar-stage {
  position: relative;
  z-index: 1;
}

.jar-motion-copy {
  max-width: 560px;
}

.jar-motion-copy h2 {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.3rem, 4.4vw, 5rem);
  line-height: 0.98;
}

.jar-motion-copy p:not(.eyebrow) {
  color: rgba(255, 248, 237, 0.78);
  font-size: 1.06rem;
  line-height: 1.78;
}

.jar-stage {
  display: grid;
  place-items: center;
  min-height: 460px;
}

.jar-orbit {
  position: absolute;
  width: min(74vw, 510px);
  aspect-ratio: 1;
  border: 1px solid rgba(240, 208, 138, 0.22);
  border-radius: 50%;
  animation: jarOrbit 18s linear infinite;
}

.jar-orbit::before,
.jar-orbit::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}

.jar-orbit::before {
  inset: 9%;
  border: 1px solid rgba(255, 248, 237, 0.13);
}

.jar-orbit::after {
  top: 11%;
  left: 18%;
  width: 13px;
  height: 13px;
  background: var(--gold-light);
  box-shadow: 0 0 28px rgba(240, 208, 138, 0.68);
}

.motion-jar {
  position: relative;
  z-index: 3;
  width: min(72vw, 390px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(240, 208, 138, 0.36);
  border-radius: 18px;
  box-shadow:
    0 36px 80px rgba(0, 0, 0, 0.36),
    0 0 0 12px rgba(255, 248, 237, 0.04);
  animation: jarFloat 5.8s ease-in-out infinite;
}

.stock-badge {
  position: absolute;
  top: 26px;
  right: clamp(6px, 2vw, 32px);
  z-index: 6;
  display: grid;
  gap: 4px;
  max-width: 230px;
  padding: 14px 16px;
  color: #fff8ed;
  background: rgba(34, 20, 11, 0.9);
  border: 1px solid rgba(240, 208, 138, 0.5);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  animation: stockPulse 2.4s ease-in-out infinite;
}

.stock-badge span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stock-badge strong {
  font-size: 0.98rem;
  line-height: 1.25;
}

.jar-stage::after {
  content: "";
  position: absolute;
  z-index: 4;
  width: min(72vw, 390px);
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.22) 44%, transparent 58%);
  transform: translateX(-130%);
  animation: jarShine 4.8s ease-in-out infinite;
  pointer-events: none;
}

.jar-shadow {
  position: absolute;
  bottom: 36px;
  width: min(58vw, 310px);
  height: 42px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.38), transparent 70%);
  filter: blur(4px);
  animation: jarShadow 5.8s ease-in-out infinite;
}

.ingredient-chip {
  position: absolute;
  z-index: 5;
  padding: 9px 13px;
  color: #211811;
  background: linear-gradient(135deg, #f5df9d, #c9953d);
  border: 1px solid rgba(255, 247, 226, 0.4);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: chipFloat 5.8s ease-in-out infinite;
}

.chip-one {
  top: 12%;
  left: 8%;
}

.chip-two {
  top: 24%;
  right: 4%;
  animation-delay: 0.7s;
}

.chip-three {
  bottom: 22%;
  left: 4%;
  animation-delay: 1.2s;
}

.chip-four {
  right: 9%;
  bottom: 14%;
  animation-delay: 1.8s;
}

.product-gallery {
  position: relative;
  display: grid;
  gap: 14px;
  min-width: 0;
}

.gallery-viewport {
  display: grid;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: 18px;
  background: #23170e;
  box-shadow: var(--shadow);
}

.gallery-viewport::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border-radius: 18px;
}

.gallery-slide img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 9px;
}

.gallery-dot {
  width: 36px;
  height: 7px;
  padding: 0;
  background: rgba(33, 24, 17, 0.22);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.gallery-dot.active {
  background: linear-gradient(135deg, #f1d590, #bd8331);
}

@keyframes jarFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1.2deg);
  }

  50% {
    transform: translateY(-18px) rotate(1.2deg);
  }
}

@keyframes jarShadow {
  0%,
  100% {
    opacity: 0.58;
    transform: scaleX(1);
  }

  50% {
    opacity: 0.34;
    transform: scaleX(0.82);
  }
}

@keyframes jarShine {
  0%,
  42% {
    transform: translateX(-130%);
    opacity: 0;
  }

  52% {
    opacity: 1;
  }

  68%,
  100% {
    transform: translateX(130%);
    opacity: 0;
  }
}

@keyframes jarOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes stockPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  }

  50% {
    transform: translateY(-4px);
    box-shadow: 0 24px 52px rgba(199, 150, 69, 0.24);
  }
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(340px, 1.18fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(238, 245, 237, 0.95)),
    linear-gradient(135deg, rgba(85, 115, 87, 0.12), rgba(185, 133, 52, 0.08));
}

.contact-copy {
  max-width: 560px;
}

.contact-copy h2 {
  margin-bottom: 18px;
  color: var(--deep);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.05;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.78;
}

.contact-grid {
  display: grid;
  gap: 14px;
}

.contact-grid a,
.contact-grid article {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 6px 18px;
  padding: 22px;
  background: rgba(255, 254, 253, 0.9);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.contact-grid span {
  grid-row: span 2;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-grid strong {
  color: var(--deep);
  overflow-wrap: anywhere;
}

.contact-grid small {
  color: var(--muted);
  font-weight: 700;
}

.order-section {
  min-height: 330px;
  padding: clamp(52px, 6vw, 90px) clamp(18px, 5vw, 84px);
}

.order-section h2 {
  max-width: 980px;
  font-size: clamp(2.4rem, 4.8vw, 5.2rem);
  line-height: 0.98;
}

.order-section .button {
  min-width: 190px;
}

.floating-whatsapp span::after {
  content: "";
}

.purchase-toast {
  display: none !important;
}

.site-footer {
  display: block;
  padding: 0;
  background:
    linear-gradient(180deg, #17130f, #0f0b08);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(220px, 0.75fr) minmax(240px, 0.8fr);
  gap: 28px;
  padding: 46px clamp(18px, 5vw, 72px);
}

.footer-main p {
  max-width: 420px;
  margin: 16px 0 0;
  color: rgba(255, 247, 232, 0.7);
  line-height: 1.7;
}

.site-footer nav,
.footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer nav a,
.footer-contact a,
.footer-contact strong {
  color: rgba(255, 247, 232, 0.78);
  font-weight: 800;
}

.site-footer nav a:hover,
.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: rgba(255, 247, 232, 0.58);
  border-top: 1px solid rgba(240, 208, 138, 0.14);
}

@media (max-width: 980px) {
  .hero .hero-inner,
  .jar-motion-section,
  .contact-section,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .social-proof-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .jar-motion-section {
    min-height: auto;
  }

  .jar-stage {
    min-height: 430px;
  }
}

@media (max-width: 860px) {
  .hero h1 {
    font-size: clamp(3.4rem, 13vw, 5.2rem);
  }

  .hero .hero-title {
    font-size: clamp(1.25rem, 5vw, 2rem);
  }
}

@media (max-width: 620px) {
  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero .hero-inner,
  .hero-content,
  .hero h1,
  .hero .hero-title,
  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(2.95rem, 14vw, 4rem);
  }

  .hero .hero-title {
    overflow-wrap: anywhere;
  }

  .jar-motion-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .jar-stage {
    min-height: 390px;
  }

  .ingredient-chip {
    font-size: 0.68rem;
  }

  .chip-one,
  .chip-three {
    left: 0;
  }

  .chip-two,
  .chip-four {
    right: 0;
  }

  .gallery-dot {
    width: 28px;
  }

  .contact-grid a,
  .contact-grid article {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp span {
    font-size: 0;
  }

  .floating-whatsapp span::after {
    content: "Chat";
    font-size: 0.96rem;
  }
}

/* Content polish, checkout, and admin */
.top-showcase h1 {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 5.1rem);
  line-height: 0.98;
}

.before-after-slide {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  min-height: 620px;
  color: #fff8ed;
  background:
    linear-gradient(135deg, rgba(27, 18, 12, 0.9), rgba(83, 111, 78, 0.82)),
    url("assets/rizoria-ai-hero-bg.webp") center / cover;
}

.skin-panel {
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 34px;
}

.skin-panel span {
  width: fit-content;
  padding: 8px 12px;
  color: #211811;
  background: var(--gold-light);
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
}

.skin-panel strong {
  max-width: 220px;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  line-height: 1.05;
}

.before-panel {
  background: linear-gradient(180deg, rgba(34, 23, 16, 0.22), rgba(34, 23, 16, 0.72));
}

.after-panel {
  background: linear-gradient(180deg, rgba(85, 115, 87, 0.14), rgba(85, 115, 87, 0.7));
}

.skin-divider {
  background: linear-gradient(180deg, transparent, var(--gold-light), transparent);
}

.about-section,
.local-seo-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.94fr) minmax(320px, 1.06fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: linear-gradient(180deg, #fffdf8, #f3f6ee);
}

.about-copy h2,
.local-seo-section h2 {
  margin-bottom: 18px;
  color: var(--deep);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1.03;
}

.about-copy p,
.local-seo-section p {
  color: var(--muted);
  line-height: 1.8;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.about-points span {
  padding: 9px 13px;
  color: var(--deep);
  background: rgba(255, 254, 253, 0.88);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.search-intent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.search-intent-grid article {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: rgba(255, 254, 253, 0.92);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.search-intent-grid article:last-child {
  grid-column: 1 / -1;
}

.search-intent-grid span {
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.35rem;
}

.search-intent-grid strong {
  color: var(--deep);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.1rem;
}

.search-intent-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.about-visual {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.choose-section {
  background: #fffaf1;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.choose-grid article {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.choose-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.8rem;
}

.choose-grid h3 {
  color: var(--deep);
  font-family: "Cinzel", Georgia, serif;
  line-height: 1.25;
}

.choose-grid p {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .choose-grid,
  .seo-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choose-grid article {
    min-height: 220px;
  }
}

.order-form-section {
  background:
    linear-gradient(135deg, rgba(19, 14, 10, 0.96), rgba(52, 34, 20, 0.92) 52%, rgba(74, 107, 76, 0.88)),
    url("assets/rizoria-ai-hero-bg.webp") center / cover;
  color: #fff8ed;
}

.order-form-section .section-heading h2 {
  color: var(--gold-light);
}

.order-form-section .section-heading p {
  color: rgba(255, 248, 237, 0.78);
}

.order-form-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(300px, 0.95fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.customer-order-form,
.payment-card,
.thankyou-card,
.admin-order-card,
.admin-summary article {
  background: rgba(255, 254, 253, 0.94);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.customer-order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  padding: 24px;
}

.customer-order-form label {
  display: grid;
  gap: 7px;
  color: var(--deep);
  font-weight: 800;
}

.customer-order-form textarea,
.customer-order-form label:nth-last-child(2),
.customer-order-form button {
  grid-column: 1 / -1;
}

.customer-order-form input,
.customer-order-form select,
.customer-order-form textarea {
  width: 100%;
  padding: 13px;
  color: var(--ink);
  background: #fffaf3;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
}

.payment-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 28px;
  color: var(--deep);
}

.payment-card h3 {
  color: var(--deep);
  font-family: "Cinzel", Georgia, serif;
  font-size: 2rem;
}

.qr-placeholder {
  display: grid;
  place-items: center;
  min-height: 260px;
  background: #fff;
  border: 12px solid #fff;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px var(--line);
}

.qr-placeholder img {
  width: min(100%, 280px);
  aspect-ratio: 1;
  object-fit: contain;
}

.upi-line {
  padding: 14px;
  background: var(--sage-soft);
  border-radius: 12px;
  overflow-wrap: anywhere;
}

.thankyou-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 10, 7, 0.72);
  backdrop-filter: blur(10px);
}

.thankyou-modal[hidden] {
  display: none;
}

.thankyou-card {
  max-width: 520px;
  padding: 34px;
  text-align: center;
}

.thankyou-card h2 {
  color: var(--deep);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.admin-dashboard {
  padding: 118px clamp(18px, 5vw, 72px) 70px;
  background: linear-gradient(180deg, #17130f, #fffaf1 42%);
}

.admin-hero {
  color: #fff8ed;
}

.admin-hero h1 {
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: clamp(3rem, 7vw, 6rem);
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0;
}

.admin-summary article {
  padding: 22px;
}

.admin-summary span,
.admin-order-grid b,
.admin-address b {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-summary strong {
  color: var(--deep);
  font-family: "Cinzel", Georgia, serif;
  font-size: 2rem;
}

.admin-orders-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) minmax(320px, 1fr);
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.admin-toolbar input,
.admin-toolbar select,
.status-control select {
  min-height: 42px;
  padding: 10px 12px;
  color: var(--deep);
  background: #fffaf3;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
}

.admin-orders-head h2,
.admin-order-card h3 {
  color: var(--deep);
  font-family: "Cinzel", Georgia, serif;
}

.admin-order-list {
  display: grid;
  gap: 16px;
}

.admin-order-card {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.status-control {
  display: inline-grid;
  gap: 6px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-order-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.admin-order-grid p,
.admin-address {
  margin: 0;
  color: var(--deep);
  overflow-wrap: anywhere;
}

.standalone-order-page {
  min-height: calc(100vh - 84px);
  padding-top: clamp(86px, 8vw, 104px);
  padding-bottom: clamp(30px, 4vw, 48px);
}

.standalone-order-page .section-heading {
  max-width: 760px;
  margin-bottom: 20px;
  text-align: center;
}

.standalone-order-page .section-heading h1 {
  margin: 8px 0 10px;
  color: var(--gold-light);
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1;
}

.standalone-order-page .section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 248, 237, 0.78);
  font-size: 1rem;
}

.standalone-order-page .order-form-layout {
  grid-template-columns: 1fr;
  max-width: 920px;
  gap: 12px;
}

.standalone-order-page .customer-order-form,
.standalone-order-page .payment-card {
  border-radius: 14px;
}

.standalone-order-page .customer-order-form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: clamp(16px, 2.5vw, 20px);
}

.standalone-order-page .customer-order-form label:nth-child(6),
.standalone-order-page .customer-order-form label:nth-child(7),
.standalone-order-page .customer-order-form button {
  grid-column: 1 / -1;
}

.standalone-order-page .customer-order-form input,
.standalone-order-page .customer-order-form select,
.standalone-order-page .customer-order-form textarea {
  min-height: 44px;
  padding: 9px 11px;
  border-radius: 9px;
}

.standalone-order-page .customer-order-form textarea {
  min-height: 84px;
}

.standalone-order-page .payment-card {
  grid-template-columns: minmax(150px, 190px) 1fr;
  align-items: center;
  gap: 12px 18px;
  padding: clamp(16px, 2.5vw, 20px);
}

.standalone-order-page .payment-card .eyebrow,
.standalone-order-page .payment-card h2 {
  grid-column: 1 / -1;
}

.standalone-order-page .payment-card h2 {
  margin-bottom: 4px;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
}

.standalone-order-page .qr-placeholder {
  min-height: auto;
  padding: 10px;
  border-width: 8px;
}

.standalone-order-page .qr-placeholder img {
  width: min(100%, 168px);
}

.standalone-order-page .upi-line,
.standalone-order-page .payment-notes {
  margin: 0;
}

.standalone-order-page .payment-notes {
  grid-column: 2;
}

.standalone-order-page .payment-card .button {
  grid-column: 1 / -1;
}

.payment-card h2 {
  margin: 0 0 18px;
  color: var(--deep);
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.payment-notes {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.55;
}

.payment-notes li {
  position: relative;
  padding-left: 28px;
}

.payment-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--leaf);
  box-shadow: 0 0 0 6px rgba(86, 113, 80, 0.14);
}

.challenge-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  color: #fff8ed;
  background:
    linear-gradient(135deg, rgba(18, 12, 8, 0.98), rgba(55, 34, 18, 0.94) 52%, rgba(76, 108, 74, 0.9)),
    url("assets/rizoria-ritual-mix.webp") center / cover;
}

.top-challenge {
  padding-top: clamp(44px, 5vw, 72px);
  padding-bottom: clamp(44px, 5vw, 72px);
  border-top: 1px solid rgba(240, 208, 138, 0.2);
  border-bottom: 1px solid rgba(240, 208, 138, 0.18);
}

.top-challenge .challenge-copy .eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  color: #211811;
  background: linear-gradient(135deg, #f1d590, #bd8331);
  border-radius: 999px;
}

.top-challenge .challenge-copy h2 {
  font-size: clamp(2.15rem, 4vw, 4.4rem);
}

.top-challenge .challenge-card {
  transform: translateY(0);
}

.challenge-copy h2 {
  max-width: 760px;
  margin: 10px 0 18px;
  color: var(--gold-light);
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.98;
}

.challenge-copy > p {
  max-width: 680px;
  color: rgba(255, 248, 237, 0.78);
  font-size: 1.05rem;
  line-height: 1.75;
}

.challenge-offer {
  display: grid;
  gap: 6px;
  max-width: 640px;
  margin: 26px 0;
  padding: 18px 20px;
  background: rgba(255, 248, 237, 0.1);
  border: 1px solid rgba(240, 208, 138, 0.24);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.challenge-offer strong {
  color: var(--gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.25rem;
}

.challenge-offer span {
  color: rgba(255, 248, 237, 0.78);
  line-height: 1.6;
}

.challenge-bonus {
  display: grid;
  gap: 6px;
  max-width: 640px;
  margin: -8px 0 24px;
  padding: 16px 18px;
  color: #24170e;
  background: linear-gradient(135deg, #f5d88d, #c89137);
  border-radius: 14px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.challenge-bonus span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.challenge-bonus strong {
  line-height: 1.45;
}

.glow-tracker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
  margin-bottom: 24px;
}

.glow-tracker div {
  display: grid;
  gap: 4px;
  padding: 14px 12px;
  background: rgba(255, 248, 237, 0.1);
  border: 1px solid rgba(240, 208, 138, 0.2);
  border-radius: 12px;
  text-align: center;
}

.glow-tracker span {
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 900;
}

.glow-tracker strong {
  color: rgba(255, 248, 237, 0.86);
  font-size: 0.86rem;
}

.challenge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.challenge-card {
  overflow: hidden;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(240, 208, 138, 0.42);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.challenge-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  color: #24170e;
  background: linear-gradient(135deg, #f5d88d, #c89137);
}

.challenge-card-head span {
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.challenge-card-head strong {
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.8rem;
}

.challenge-days {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 8px 24px 24px;
  color: var(--deep);
  list-style: none;
}

.challenge-days li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.challenge-days li:last-child {
  border-bottom: 0;
}

.challenge-days span {
  display: inline-flex;
  justify-content: center;
  padding: 8px 10px;
  color: var(--herb);
  background: var(--sage-soft);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
}

.challenge-days strong {
  color: var(--deep);
  line-height: 1.35;
}

.spin-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 10, 7, 0.74);
  backdrop-filter: blur(10px);
}

.spin-modal[hidden] {
  display: none;
}

.spin-card {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(94vw, 520px);
  padding: 30px;
  color: var(--deep);
  background: #fffdf8;
  border: 1px solid rgba(240, 208, 138, 0.42);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  text-align: center;
}

.spin-card h2 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(2rem, 6vw, 3rem);
}

.spin-card > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.proof-strip,
.shipping-strip,
.trust-badge-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(38, 30, 22, 0.12);
}

.proof-strip div,
.shipping-strip div,
.trust-badge-strip span {
  display: grid;
  gap: 6px;
  padding: 22px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(38, 30, 22, 0.06);
}

.proof-strip strong,
.shipping-strip strong,
.trust-badge-strip span {
  color: var(--deep);
  font-weight: 900;
}

.proof-strip span,
.shipping-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.shipping-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 22px;
  padding-bottom: 22px;
  background: linear-gradient(180deg, #fffdf8, #eef5ed);
}

.trust-badge-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 20px;
  padding-bottom: 20px;
  background: #17130f;
}

.trust-badge-strip span {
  place-items: center;
  min-height: 64px;
  color: var(--gold-light);
  background: rgba(255, 253, 248, 0.06);
  border-color: rgba(240, 208, 138, 0.16);
  border-radius: 999px;
  text-align: center;
}

.why-jar-card {
  position: absolute;
  left: clamp(0px, 1vw, 18px);
  bottom: 24px;
  z-index: 7;
  display: grid;
  gap: 7px;
  width: min(260px, 45vw);
  padding: 16px;
  color: #fff8ed;
  background: rgba(18, 12, 8, 0.84);
  border: 1px solid rgba(240, 208, 138, 0.28);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.why-jar-card strong {
  color: var(--gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.05rem;
}

.why-jar-card span {
  color: rgba(255, 248, 237, 0.86);
  font-size: 0.86rem;
  font-weight: 800;
}

.before-after-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(238, 245, 237, 0.92)),
    url("assets/rizoria-ai-hero-bg.webp") center / cover fixed;
}

.before-after-card {
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.before-after-card img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
}

.before-after-labels {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: #fffdf8;
  text-align: center;
}

.before-after-labels span {
  padding: 12px 16px;
  color: #211811;
  background: linear-gradient(135deg, #f1d590, #bd8331);
  border-radius: 999px;
  font-weight: 900;
}

.before-after-labels strong {
  color: var(--gold);
  font-size: 2rem;
}

.google-review-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1160px;
  margin: 28px auto 22px;
}

.google-review-strip article {
  padding: 20px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.google-review-strip span {
  color: #4285f4;
  font-size: 0.82rem;
  font-weight: 900;
}

.google-review-strip strong {
  display: block;
  margin: 8px 0;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.google-review-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.google-review-link {
  width: fit-content;
  margin: 0 auto;
}

.people-search-section {
  background: linear-gradient(180deg, #fffdf8, #f4f8f1);
}

.people-search-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.people-search-list a {
  padding: 12px 16px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(85, 115, 87, 0.18);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-weight: 900;
}

.people-search-list a:hover {
  color: #211811;
  background: linear-gradient(135deg, #f1d590, #bd8331);
  transform: translateY(-2px);
}

.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 10, 7, 0.74);
  backdrop-filter: blur(10px);
}

.exit-modal[hidden] {
  display: none;
}

.exit-card {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(94vw, 480px);
  padding: 30px;
  color: var(--deep);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(238, 245, 237, 0.94)),
    url("assets/rizoria-face-pack.jpeg") right bottom / 42% auto no-repeat;
  border: 1px solid rgba(240, 208, 138, 0.42);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.exit-card h2 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(2.4rem, 8vw, 4rem);
}

.exit-card p:not(.eyebrow) {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 860px) {
  .proof-strip,
  .shipping-strip,
  .trust-badge-strip,
  .google-review-strip {
    grid-template-columns: 1fr;
  }

  .why-jar-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(100%, 320px);
    margin-top: 16px;
  }

  .before-after-labels {
    gap: 10px;
  }
}

.spin-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  color: var(--deep);
  background: var(--sage-soft);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.wheel-wrap {
  position: relative;
  display: grid;
  place-items: center;
  margin: 4px auto;
}

.spin-pointer {
  position: absolute;
  top: -2px;
  z-index: 2;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 28px solid var(--deep);
}

.spin-wheel {
  position: relative;
  width: min(72vw, 310px);
  aspect-ratio: 1;
  border: 10px solid #fff6df;
  border-radius: 50%;
  background:
    conic-gradient(
      #f0c76a 0deg 90deg,
      #5f7f58 90deg 180deg,
      #f7e6b7 180deg 270deg,
      #2b1a10 270deg 360deg
    );
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transition: transform 3s cubic-bezier(0.15, 0.8, 0.2, 1);
}

.spin-wheel::after {
  content: "R";
  position: absolute;
  inset: 50%;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: -34px;
  color: var(--gold-light);
  background: var(--deep);
  border: 3px solid #fff6df;
  border-radius: 50%;
  font-family: "Cinzel", Georgia, serif;
  font-size: 2rem;
  font-weight: 900;
}

.spin-wheel span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 118px;
  margin-left: -59px;
  color: #211811;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transform-origin: 50% 0;
}

.spin-wheel span:nth-child(1) {
  transform: rotate(45deg) translateY(-118px);
}

.spin-wheel span:nth-child(2) {
  color: #fff8ed;
  transform: rotate(135deg) translateY(-118px);
}

.spin-wheel span:nth-child(3) {
  transform: rotate(225deg) translateY(-118px);
}

.spin-wheel span:nth-child(4) {
  color: #fff8ed;
  transform: rotate(315deg) translateY(-118px);
}

.spin-result {
  display: block;
  min-height: 28px;
  color: var(--herb);
  font-size: 1.05rem;
}

.spin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.proof-preview {
  display: inline-grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: center;
  color: var(--deep);
  font-weight: 900;
}

.proof-preview img {
  width: 90px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 980px) {
  .about-section,
  .local-seo-section,
  .challenge-section,
  .order-form-layout,
  .search-intent-grid,
  .choose-grid,
  .admin-summary,
  .admin-order-grid {
    grid-template-columns: 1fr;
  }

  .search-intent-grid article:last-child {
    grid-column: auto;
  }

  .customer-order-form {
    grid-template-columns: 1fr;
  }

  .standalone-order-page .payment-card {
    grid-template-columns: 1fr;
  }

  .standalone-order-page .payment-notes {
    grid-column: auto;
  }

  .challenge-actions {
    display: grid;
  }

  .glow-tracker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .challenge-days li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .admin-orders-head {
    grid-template-columns: 1fr;
  }

  .admin-toolbar {
    justify-content: flex-start;
  }
}

/* Focused product and checkout enhancements using the existing palette. */
.product-price{font-family:Inter,sans-serif;font-size:2rem;font-weight:700;color:#513623;margin:1rem 0}
.product-price span{display:block;font-size:.9rem;font-weight:400;color:#66584e;margin-top:.2rem}
.product-cta-row{display:flex;flex-wrap:wrap;gap:.75rem;align-items:center;margin:1.25rem 0}
.product-cta-row .button.ghost,.product-mobile-cta .button.ghost{color:#513623;border:1px solid #b98b56;background:#fffdf9}
.checkout-total{display:flex;flex-wrap:wrap;gap:.35rem;align-items:baseline;font-size:1.1rem}
.checkout-total strong{font-size:1.55rem;color:#513623}
.checkout-total small{flex-basis:100%;color:#66584e}
.checkout-status{font-size:.9rem;line-height:1.5;color:#2d5945}
.checkout-status.error{color:#8a322e}
.customer-order-form button:disabled{opacity:.6;cursor:wait}
.product-mobile-cta{display:none}
@media(max-width:700px){
 .product-landing{grid-template-columns:minmax(0,1fr);overflow-x:clip}
 .product-landing > *{min-width:0}
 .product-landing h1{font-size:clamp(2rem,8.5vw,3rem);overflow-wrap:anywhere}
 .product-landing .about-visual img{max-width:100%;height:auto}
 .product-mobile-cta{display:flex;position:fixed;left:0;right:0;bottom:0;z-index:1000;gap:.5rem;padding:.65rem max(.75rem,env(safe-area-inset-right)) calc(.65rem + env(safe-area-inset-bottom));background:#fff9f2;box-shadow:0 -4px 20px rgba(45,28,17,.15)}
 .product-mobile-cta .button{flex:1;min-width:0;text-align:center;font-size:.86rem;padding:.7rem .35rem}
 body:has(.product-mobile-cta){padding-bottom:5.5rem}
 body:has(.product-mobile-cta) .floating-whatsapp{bottom:6rem}
 .product-cta-row{align-items:stretch}
 .product-cta-row .button{flex:1;min-width:0;text-align:center}
}

/* Compact cart controls and checkout review retain the existing colour system. */
.cart-link{display:inline-flex;align-items:center;justify-content:center;gap:.35rem;padding:.5rem .7rem;border:1px solid rgba(239,211,154,.48);border-radius:999px;color:#f7d995;font-weight:700;white-space:nowrap}
.cart-link:hover,.cart-link:focus-visible{background:rgba(239,211,154,.12)}
.cart-count{display:inline-grid;place-items:center;min-width:1.35rem;height:1.35rem;padding:0 .25rem;border-radius:999px;background:#e6bd76;color:#20140d;font-size:.78rem}
.cart-main{max-width:1200px;min-height:75vh;margin:0 auto;padding:135px clamp(18px,4vw,56px) 80px}
.cart-main .section-heading{text-align:left;margin-bottom:2rem}
.cart-layout{display:grid;grid-template-columns:minmax(0,1.6fr) minmax(280px,1fr);gap:2rem;align-items:start}
.cart-item,.cart-summary,.cart-empty{background:#fffdf9;border:1px solid var(--line);border-radius:18px;box-shadow:var(--shadow-soft);padding:1.5rem}
.cart-item{display:grid;grid-template-columns:140px minmax(0,1fr) auto;gap:1.4rem;align-items:start}
.cart-item img{width:140px;height:140px;object-fit:cover;border-radius:12px}
.cart-item h2,.cart-summary h2{font-size:1.25rem;margin:.25rem 0 .75rem}
.cart-item p{margin:.3rem 0 1rem}
.cart-quantity{display:flex;align-items:center;gap:.5rem;flex-wrap:wrap}
.cart-quantity span{margin-right:.3rem}
.cart-quantity button{width:2.2rem;height:2.2rem;border:1px solid var(--line);border-radius:7px;background:#fff7ea;cursor:pointer;font-size:1.25rem}
.cart-quantity input{width:3.3rem;height:2.2rem;text-align:center;border:1px solid var(--line);border-radius:7px;font:inherit}
.cart-remove{margin-top:1rem;padding:0;border:0;background:none;color:#814c3b;text-decoration:underline;cursor:pointer;font:inherit}
.cart-summary>div{display:flex;justify-content:space-between;gap:1rem;padding:1.2rem 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.cart-summary p{line-height:1.6;color:var(--muted)}
.cart-summary .button{display:block;text-align:center;margin-top:.8rem}
.cart-summary .button.ghost{color:#513623;border:1px solid #b98b56;background:#fffdf9}
.cart-note{font-size:.88rem}
.cart-empty{text-align:center;max-width:650px}
.cart-continue{margin-top:2rem;text-decoration:underline}
@media(max-width:860px){.cart-layout{grid-template-columns:1fr}.site-header{gap:.5rem}.cart-link{margin-left:auto}}
@media(max-width:620px){.cart-link{padding:.42rem}.cart-link>span:nth-child(2){display:none}.cart-item{grid-template-columns:88px minmax(0,1fr);gap:1rem}.cart-item img{width:88px;height:88px}.cart-item>strong{grid-column:2}.cart-item,.cart-summary{padding:1rem}.cart-main{padding-top:105px}.brand-mark{width:32px;height:32px}.product-mobile-cta .button{font-size:.73rem;padding:.65rem .2rem}}
@media(max-width:620px){.cart-quantity span{flex-basis:100%}}
@media(max-width:380px){.site-header{padding-left:10px;padding-right:10px}.site-header .brand{font-size:.81rem;gap:5px}.site-header .nav-cta{font-size:.74rem;padding:8px 7px}.cart-link{font-size:.85rem}}

/* WhatsApp support stays available as a compact, accessible icon. */
.floating-whatsapp{width:56px;height:56px;min-height:56px;padding:0;border-radius:50%;background:#fffdf9;border:2px solid #25d366;box-shadow:0 10px 28px rgba(20,75,43,.24)}
.floating-whatsapp::before,.floating-whatsapp span::after{content:none}
.floating-whatsapp img{display:block;width:32px;height:32px}
.floating-whatsapp:focus-visible{outline:3px solid #146c43;outline-offset:3px}
@media(max-width:700px){.floating-whatsapp{width:54px;height:54px;min-height:54px;padding:0}}
