:root {
  --ink: #181715;
  --muted: #6d665d;
  --paper: #f8f4ed;
  --mist: #e9f0ec;
  --rose: #ead6dc;
  --gold: #c7a24a;
  --clay: #8f5e4d;
  --line: rgba(24, 23, 21, 0.12);
  --shadow: 0 22px 60px rgba(43, 32, 23, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(233, 240, 236, 0.86), rgba(248, 244, 237, 0.92) 42%, rgba(234, 214, 220, 0.72)),
    var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.cursor-aura {
  position: fixed;
  width: 220px;
  height: 220px;
  background: rgba(199, 162, 74, 0.18);
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.site-header,
header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 7%;
  background: rgba(248, 244, 237, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 5px;
}

.logo img {
  display: block;
  width: auto;
  height: 30px;
}

.logo {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
}

.logo::after {
  content: "™";
  position: absolute;
  top: -5px;
  right: -11px;
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0;
}

h1, h2, h3, h4, h5, .page-title, .section-heading h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.eyebrow, .nav-links a, .primary-btn, .secondary-btn, .reveal-btn, .add-cart {
  font-family: "DM Sans", Arial, sans-serif;
}

.launch-banner {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 12px 7%;
  background: var(--ink);
  color: #fff;
  font-size: 0.86rem;
  text-align: center;
}

.launch-banner strong { color: #f4d77b; text-transform: uppercase; letter-spacing: 1px; }

.trust-section,
.testimonials,
.about-section { padding: 70px 7%; }

.trust-grid,
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }

.trust-grid article,
.testimonial-grid blockquote,
.legal-card,
.cart-offer {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 10px 30px rgba(24, 23, 21, 0.08);
}

.trust-grid h3 { margin-bottom: 10px; }
.trust-grid p, .testimonial-grid blockquote, .about-section > p, .legal-card p { color: var(--muted); line-height: 1.7; }
.testimonial-grid { grid-template-columns: repeat(2, 1fr); }
.testimonial-grid cite { display: block; margin-top: 16px; color: var(--clay); font-style: normal; font-weight: 700; }
.about-section > p { max-width: 720px; margin: 18px 0 24px; font-size: 1.05rem; }
.cart-offer { margin: 20px 0; color: var(--clay); font-weight: 700; }
.mini-choice { display: block; margin: 0 0 8px; font-size: 0.85rem; font-weight: 700; }
.cart-panel select { width: 100%; min-height: 46px; padding: 0 12px; margin-bottom: 18px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.product-details { display: grid; gap: 4px; margin: 12px 0; color: var(--muted); font-size: 0.78rem; line-height: 1.45; }
.legal-page { max-width: 980px; margin: 0 auto; }
.legal-card { margin-top: 26px; }
.legal-card h2 { margin: 24px 0 10px; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p + p { margin-top: 16px; }
.site-footer-expanded { align-items: flex-start; flex-wrap: wrap; }
.site-footer-expanded > div { display: grid; gap: 7px; max-width: 360px; }
.site-footer-expanded small { width: 100%; }
.footer-links { display: flex !important; flex-wrap: wrap; gap: 12px; }

.contact-icons { display: flex !important; flex-wrap: wrap; gap: 10px; }
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--clay);
  background: rgba(255, 255, 255, 0.6);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.contact-icon svg { width: 17px; height: 17px; }
.contact-icon:hover {
  background: var(--clay);
  color: var(--paper);
  transform: translateY(-2px);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.nav-heart {
  font-size: 1.15rem !important;
  padding: 0 10px !important;
  letter-spacing: 0 !important;
}

.nav-links a:hover,
.nav-links a.active-page {
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  margin-left: 7px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.68rem;
}

.home-hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: 64px;
  padding: 54px 7% 74px;
  position: relative;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-copy h1 {
  font-size: clamp(4.2rem, 10.8vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-copy p,
.shop-hero p,
.section-heading p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-btn,
.secondary-btn,
.reveal-btn,
.add-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.38);
  color: var(--ink);
}

.compact {
  min-height: 38px;
  padding: 0 15px;
  font-size: 0.74rem;
}

.primary-btn:hover,
.secondary-btn:hover,
.reveal-btn:hover,
.add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(24, 23, 21, 0.18);
}

.hero-visual {
  width: min(100%, 540px);
  min-height: 560px;
  display: grid;
  place-items: center;
  position: relative;
  justify-self: end;
  overflow: visible;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% -7% -8% 12%;
  border-radius: 42% 58% 48% 52%;
  background:
    radial-gradient(circle at 48% 36%, rgba(255, 255, 255, 0.82), rgba(199, 162, 74, 0.34) 42%, rgba(143, 94, 77, 0.2) 63%, transparent 76%);
  filter: blur(18px);
  z-index: -1;
}

.hero-visual img {
  width: 100%;
  height: 520px;
  border: 1px solid rgba(143, 94, 77, 0.16);
  border-radius: 46% 46% 8px 8px;
  object-fit: cover;
  object-position: 46% 50%;
  box-shadow: 0 34px 72px rgba(43, 32, 23, 0.22);
  animation: floatEffect 5s ease-in-out infinite;
}

.home-hero-banner {
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  padding: 40px 5% 60px;
}

.hero-banner-frame {
  position: relative;
  width: 100%;
  max-width: 1400px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 34px 72px rgba(43, 32, 23, 0.22);
  opacity: 0;
  transform: scale(0.97) translateY(14px);
  animation: heroBannerReveal 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards,
    heroBannerFloat 7s ease-in-out 1.2s infinite;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.hero-banner-frame:hover {
  box-shadow: 0 44px 90px rgba(43, 32, 23, 0.3);
}

.hero-banner-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-banner-frame:hover .hero-banner-img {
  transform: scale(1.035);
}

.hero-banner-shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-18deg);
  animation: heroBannerShine 6s ease-in-out 1.4s infinite;
}

@keyframes heroBannerReveal {
  from {
    opacity: 0;
    transform: scale(0.97) translateY(14px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

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

@keyframes heroBannerShine {
  0% {
    left: -60%;
  }
  32%,
  100% {
    left: 130%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner-frame,
  .hero-banner-shine {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.hero-banner-actions {
  margin-top: 0;
  justify-content: center;
}

.quick-commerce article,
.delivery-card,
.cart-panel,
.shop-controls,
.step,
.result,
.note-layer,
.order-help,
.account-auth,
.account-block,
.admin-login,
.admin-order-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 10px 30px rgba(24, 23, 21, 0.08);
  backdrop-filter: blur(18px);
}

.order-help {
  margin: 26px 0 0;
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.order-help-copy h2 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.order-help-copy p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
  max-width: 460px;
}

.order-help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.order-help-note {
  flex-basis: 100%;
  color: var(--muted);
  font-size: 0.78rem;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.order-help-note a {
  color: var(--clay);
  font-weight: 700;
}

@media (max-width: 640px) {
  .order-help {
    flex-direction: column;
    align-items: flex-start;
  }
}

.quick-commerce,
.launch-preview,
.future-lineup,
.shop-page,
.page-wrap {
  padding: 70px 7%;
}

.quick-commerce {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 26px;
}

.quick-commerce article {
  padding: 24px;
}

.quick-commerce strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
}

.quick-commerce span,
.delivery-card small,
.collection-card p,
.cart-panel p,
.checkout-note,
.result p,
.note-layer p,
.molecule p {
  color: var(--muted);
  line-height: 1.55;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2,
.shop-hero h1,
.page-title {
  max-width: 820px;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--clay);
  text-decoration: underline;
}

.breadcrumbs span[aria-hidden] {
  color: var(--line);
}

.breadcrumbs span[aria-current] {
  color: var(--ink);
  font-weight: 700;
}

.preview-grid,
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.preview-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 210px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
}

.preview-card img {
  width: 100%;
  aspect-ratio: 1 / 1.25;
  object-fit: cover;
  border-radius: 6px;
}

.preview-card span,
.product-meta span,
.product-promises span {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.preview-card h3,
.collection-card h3 {
  margin: 6px 0 8px;
  font-size: 1.2rem;
}

.rotary-showcase {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 20px;
  padding: 70px 7%;
  overflow: hidden;
}

.video-stage {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

#active-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.4s ease;
}

#active-video.slide-out {
  opacity: 0;
  transform: translateX(-105%);
}

#active-video.slide-in-start {
  opacity: 0;
  transform: translateX(105%);
  transition: none;
}

#active-video.slide-in {
  opacity: 1;
  transform: translateX(0);
}

.arc-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
}

#orbit-wrapper {
  position: absolute;
  right: -110px;
  top: 50%;
  width: 370px;
  height: 370px;
  transform: translateY(-50%);
}

.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86px;
  height: 118px;
  margin: -59px 0 0 -43px;
  border: 0;
  background: transparent;
  filter: grayscale(100%) brightness(0.65);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.orbit-item:nth-child(1) {
  transform: rotate(-60deg) translateX(-170px) rotate(60deg);
}

.orbit-item:nth-child(2) {
  transform: rotate(-20deg) translateX(-170px) rotate(20deg);
}

.orbit-item:nth-child(3) {
  transform: rotate(20deg) translateX(-170px) rotate(-20deg);
}

.orbit-item:nth-child(4) {
  transform: rotate(60deg) translateX(-170px) rotate(-60deg);
}

.orbit-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.orbit-item.active {
  filter: none;
  z-index: 2;
}

.orbit-item:nth-child(1).active {
  transform: rotate(-60deg) translateX(-196px) rotate(60deg) scale(1.16);
}

.orbit-item:nth-child(2).active {
  transform: rotate(-20deg) translateX(-196px) rotate(20deg) scale(1.16);
}

.orbit-item:nth-child(3).active {
  transform: rotate(20deg) translateX(-196px) rotate(-20deg) scale(1.16);
}

.orbit-item:nth-child(4).active {
  transform: rotate(60deg) translateX(-196px) rotate(-60deg) scale(1.16);
}

.scent-display {
  position: absolute;
  left: 10px;
  top: 50%;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.category-tile {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
}

.category-tile span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.category-tile.muted {
  background: rgba(255, 255, 255, 0.46);
  color: var(--ink);
}

.category-tile.muted span {
  color: var(--muted);
}

.shop-page {
  padding-top: 44px;
}

.shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 20px;
}

.delivery-card {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
}

.delivery-card span {
  color: #21715d;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.delivery-card strong {
  font-size: 1.55rem;
  line-height: 1.1;
}

.shop-controls {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(180px, 240px) 1fr;
  gap: 16px;
  align-items: end;
  margin: 26px 0;
  padding: 16px;
}

.search-box,
.sort-box {
  display: grid;
  gap: 7px;
}

.search-box span,
.sort-box span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.sort-box select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  outline: none;
}

.search-box input,
.checkout-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  outline: none;
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-chip {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.filter-chip:hover,
.filter-chip.active {
  background: var(--ink);
  color: #fff;
}

.product-grid {
  margin-bottom: 44px;
}

.collection-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 475px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 12px 36px rgba(24, 23, 21, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.wish-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font-size: 1.2rem;
}

.wish-btn.active {
  background: var(--rose);
  border-color: rgba(143, 94, 77, 0.28);
}

.bottle-png {
  width: 100%;
  height: 210px;
  margin-bottom: 18px;
  border-radius: 6px;
  object-fit: cover;
  background: rgba(233, 240, 236, 0.62);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.product-meta strong {
  white-space: nowrap;
}

.product-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 18px;
}

.product-promises span {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(233, 240, 236, 0.8);
}

.add-cart {
  width: 100%;
  margin-top: 14px;
}

.add-cart:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.card-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.card-actions .add-cart {
  flex: 1.3;
  margin-top: 0;
}

.buy-now-btn {
  flex: 1;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.buy-now-btn:hover {
  background: var(--ink);
  color: #fff;
}

.buy-now-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.modal-cta-row {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.modal-cta-row .modal-add-cart {
  flex: 1.3;
}

.modal-cta-row .modal-buy-now {
  flex: 1;
}

.card-actions.in-cart,
.modal-cta-row.in-cart {
  align-items: center;
  justify-content: space-between;
  padding: 6px 4px 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(233, 240, 236, 0.5);
}

.card-actions.in-cart .qty-controls,
.modal-cta-row.in-cart .qty-controls {
  gap: 10px;
}

.card-actions.in-cart .qty-controls button,
.modal-cta-row.in-cart .qty-controls button {
  min-width: 26px;
  height: 26px;
  font-size: 0.85rem;
}

.card-actions.in-cart .qty-controls strong,
.modal-cta-row.in-cart .qty-controls strong {
  min-width: 16px;
  text-align: center;
}

.go-to-cart-link {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.product-card {
  cursor: pointer;
}

.product-card:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}

.card-hint {
  margin-top: auto;
  padding-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
}

/* Product detail modal */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}

.product-modal.open {
  display: block;
}

body.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 23, 21, 0.55);
  backdrop-filter: blur(2px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  max-width: 960px;
  width: min(92vw, 960px);
  max-height: 88vh;
  margin: 6vh auto;
  overflow-y: auto;
  background: var(--paper);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(24, 23, 21, 0.4);
  padding: 20px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.order-confirmed-panel {
  max-width: 460px;
}

.order-confirmed {
  text-align: center;
  padding: 8px 4px 4px;
}

.order-confirmed-check {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #21715d;
  color: #fff;
  font-size: 1.6rem;
  display: grid;
  place-items: center;
}

.order-confirmed h2 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.order-confirmed-id {
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 16px;
}

.order-confirmed-items {
  list-style: none;
  text-align: left;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.86rem;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.order-confirmed-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.order-confirmed-qr {
  margin-bottom: 18px;
}

.order-confirmed-qr img {
  width: 200px;
  height: 200px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  background: #fff;
}

.order-confirmed-qr p {
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 8px;
}

.order-confirmed-upi-id strong {
  color: var(--ink);
}

.order-confirmed-steps {
  text-align: left;
  list-style: decimal;
  padding-left: 20px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.order-confirmed-paid {
  display: block;
  width: 100%;
  margin-bottom: 6px;
}

.order-confirmed-paid-note {
  min-height: 14px;
  margin-bottom: 14px;
  font-size: 0.78rem;
  color: #21715d;
}

.order-confirmed-paid-note.error {
  color: #b3261e;
}

.order-confirmed-whatsapp {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  text-decoration: none;
  text-align: center;
}

.order-confirmed-continue {
  width: 100%;
}

.modal-body {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 30px;
  align-items: start;
}

.modal-image-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 240, 236, 0.5);
  border-radius: 10px;
  padding: 16px;
  min-height: 320px;
}

.modal-image-stage img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
}

.modal-wish {
  left: 14px;
  right: auto;
}

.modal-details h2 {
  margin: 10px 0 6px;
  font-size: 1.7rem;
}

.modal-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-category {
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.modal-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.modal-rating .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.modal-rating .rating-label {
  color: var(--muted);
  font-size: 0.82rem;
}

.modal-price {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.modal-description {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.modal-fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.modal-fact-grid div {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
}

.modal-fact-grid span {
  display: block;
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.modal-add-cart {
  width: 100%;
}

.modal-reviews {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.modal-reviews h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.modal-reviews-empty,
.reviews-empty {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ---------- Product card rating badge ---------- */
.card-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: -4px 0 8px;
}

.card-rating .stars {
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.card-rating .rating-label {
  color: var(--muted);
  font-size: 0.76rem;
}

/* ---------- Reviews list ---------- */
.reviews-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
}

.reviews-summary .stars {
  color: var(--gold);
  letter-spacing: 1px;
}

.reviews-summary span {
  color: var(--muted);
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 4px;
}

.review-card {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.55);
  animation: fadeUp 0.4s ease both;
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.review-avatar {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--clay));
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
}

.review-card-who {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-author {
  font-size: 0.9rem;
}

.review-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-card-meta .stars {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 1px;
}

.review-date {
  color: var(--muted);
  font-size: 0.72rem;
}

.review-comment {
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 8px;
}

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

.review-media-item {
  width: 84px;
  height: 84px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background-color: rgba(233, 240, 236, 0.6);
  background-size: cover;
  background-position: center;
  object-fit: cover;
  cursor: pointer;
  padding: 0;
  transition: transform 0.18s ease;
}

.review-media-item:hover {
  transform: scale(1.05);
}

video.review-media-item {
  cursor: auto;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 14, 12, 0.86);
  cursor: zoom-out;
  animation: fadeUp 0.2s ease both;
}

.media-lightbox img {
  max-width: min(92vw, 900px);
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* ---------- Review submission form ---------- */
.review-form {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-form h4 {
  font-size: 0.92rem;
}

.review-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.review-form input[type="text"],
.review-form textarea {
  font-family: inherit;
  font-weight: 500;
  color: var(--ink);
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  outline: none;
  resize: vertical;
}

.review-form input[type="text"]:focus,
.review-form textarea:focus {
  border-color: var(--clay);
}

.review-form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px;
}

.review-name-field {
  flex: 1 1 200px;
}

.review-star-input {
  display: flex;
  gap: 4px;
}

.star-pick {
  width: 34px;
  height: 34px;
  border: none;
  background: none;
  color: var(--line);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}

.star-pick:hover,
.star-pick:focus-visible {
  transform: scale(1.12);
}

.star-pick.filled {
  color: var(--gold);
}

.review-file-label span {
  font-weight: 700;
}

.review-file-label em {
  font-weight: 500;
  font-style: normal;
  text-transform: none;
  color: var(--muted);
  letter-spacing: 0;
}

.review-file-label input[type="file"] {
  font-size: 0.78rem;
  color: var(--muted);
}

.review-file-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.review-file-chip {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(233, 240, 236, 0.8);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
}

.review-form-note {
  min-height: 16px;
  font-size: 0.8rem;
  color: var(--clay);
}

.review-form-note.error {
  color: #b3261e;
}

.review-submit-btn {
  align-self: flex-start;
}

@media (max-width: 760px) {
  .modal-body {
    grid-template-columns: 1fr;
  }

  .modal-panel {
    margin: 4vh auto;
    padding: 16px;
  }
}

.empty-state,
.cart-empty {
  grid-column: 1 / -1;
  padding: 26px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.cart-panel {
  padding: 26px;
}

.cart-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.cart-panel h2 {
  font-size: 2rem;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.cart-row {
  display: grid;
  grid-template-columns: 58px 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
}

.cart-row img {
  width: 58px;
  height: 58px;
  border-radius: 6px;
  object-fit: cover;
}

.cart-row h4 {
  margin-bottom: 3px;
  font-size: 0.95rem;
}

.cart-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.qty-controls button,
.remove-item {
  min-width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.remove-item {
  padding: 0 12px;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-summary-line {
  padding-top: 0;
  border-top: none;
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: none;
  color: var(--muted);
}

.cart-summary-line strong {
  color: var(--ink);
  font-weight: 700;
}

.coupon-row {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.coupon-row input {
  flex: 1;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  outline: none;
}

.coupon-note {
  min-height: 16px;
  margin: 6px 0 4px;
  font-size: 0.78rem;
  color: #21715d;
}

.coupon-note.error {
  color: #b3261e;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 18px 0 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.trust-strip svg {
  width: 18px;
  height: 18px;
  color: var(--clay);
  flex-shrink: 0;
}

.checkout-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.checkout-form .span-2 {
  grid-column: span 2;
}

.checkout-btn {
  grid-column: 1 / -1;
}

.checkout-note {
  margin-top: 14px;
  text-align: center;
}

.page-wrap {
  min-height: 78vh;
}

.page-sub {
  margin: 12px 0 34px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.quiz-section {
  max-width: 920px;
  margin: 0 auto;
}

.step {
  margin-bottom: 18px;
  padding: 24px;
}

.step h3 {
  margin-bottom: 16px;
  font-size: 0.92rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.opt {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
}

.opt.selected,
.opt:hover {
  background: var(--ink);
  color: #fff;
}

.reveal-btn {
  margin: 10px auto 0;
}

.result {
  margin-top: 24px;
  padding: 26px;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.result.show {
  opacity: 1;
  transform: translateY(0);
}

.result h2 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.result-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--clay);
  font-weight: 900;
  text-transform: uppercase;
}

.notes-pyramid {
  max-width: 760px;
  margin: 0 auto 42px;
  display: grid;
  gap: 12px;
}

.note-layer {
  padding: 24px;
  text-align: center;
}

.top {
  width: 68%;
  justify-self: center;
}

.heart {
  width: 84%;
  justify-self: center;
}

.base {
  width: 100%;
}

.note-layer h4,
.section-title {
  color: var(--clay);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.section-title {
  margin: 30px 0 18px;
  text-align: center;
}

.molecule-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.molecule {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  text-align: center;
}

.ball {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff, var(--gold) 38%, var(--clay));
  box-shadow: 0 14px 24px rgba(24, 23, 21, 0.16);
}

/* Distinct colors per fragrance family so the note symbols are no longer
   all rendered in the same gold/clay tone. */
.ball-fresh {
  background: radial-gradient(circle at 32% 28%, #f1fbf6, #6fbf9a 42%, #2f6f57);
}

.ball-floral {
  background: radial-gradient(circle at 32% 28%, #fff3f7, #f0a6c0 42%, #b95c78);
}

.ball-warm {
  background: radial-gradient(circle at 32% 28%, #fff8ec, #f0b95a 42%, #c76b2f);
}

.ball-luxury {
  background: radial-gradient(circle at 32% 28%, #f2e9ff, #8a5cc7 42%, #3d1f63);
}

.molecule h5 {
  margin-bottom: 5px;
}

.site-footer,
footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 7%;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.fade-up {
  animation: fadeUp 0.55s ease both;
}

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

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

@media (max-width: 950px) {
  .home-hero,
  .shop-hero,
  .shop-controls,
  .rotary-showcase {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
  }

  .hero-visual {
    width: min(100%, 520px);
    min-height: 420px;
    justify-self: center;
  }

  .hero-visual img {
    height: 420px;
  }

  .quick-commerce,
  .category-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .rotary-showcase {
    min-height: 0;
  }

  .video-stage,
  .arc-container {
    min-height: 430px;
  }

  #orbit-wrapper {
    right: 50%;
    transform: translate(50%, -50%) scale(0.82);
  }

  .checkout-form {
    grid-template-columns: 1fr;
  }
  .trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .site-header,
  header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 5%;
  }

  .nav-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .nav-links a {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.7rem;
  }

  .home-hero,
  .quick-commerce,
  .launch-preview,
  .future-lineup,
  .shop-page,
  .page-wrap,
  .rotary-showcase {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-copy h1 {
    font-size: clamp(3.5rem, 20vw, 5.7rem);
  }

  .hero-visual {
    min-height: 340px;
  }

  .hero-visual img {
    height: 340px;
    border-radius: 42% 42% 8px 8px;
  }

  .quick-commerce,
  .category-row {
    grid-template-columns: 1fr;
  }

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

  .preview-card img {
    aspect-ratio: 16 / 10;
  }

  .cart-panel-head,
  .site-footer,
  footer {
    flex-direction: column;
  }

  .launch-banner,
  .testimonial-grid { grid-template-columns: 1fr; flex-direction: column; }

  .cart-row {
    grid-template-columns: 52px 1fr;
  }

  .qty-controls,
  .remove-item {
    grid-column: 2;
    justify-self: start;
  }

  .top,
  .heart,
  .base {
    width: 100%;
  }
}

/* ---------- Account page: sign in / sign up, addresses, order history ---------- */
.account-page {
  max-width: 980px;
  margin: 0 auto;
}

.account-auth {
  max-width: 440px;
  margin-top: 26px;
  padding: 28px;
}

.auth-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.auth-tab {
  flex: 1;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.auth-tab.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* The base rule above sets display:flex unconditionally, which silently
   overrides the browser's built-in hidden-attribute behavior (an author
   stylesheet rule always wins over the default [hidden] { display: none }
   rule) — without this, both the login and signup forms show at once
   instead of the JS-driven toggle actually hiding one of them. */
.auth-form[hidden] {
  display: none;
}

.auth-form-title {
  font-size: 1.15rem;
  margin-bottom: 2px;
}

.auth-form-hint {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-top: -6px;
}

.auth-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.auth-form input {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  outline: none;
  font-family: inherit;
}

.auth-form input:focus {
  border-color: var(--clay);
}

.auth-note {
  min-height: 16px;
  font-size: 0.8rem;
  color: #21715d;
}

.auth-note.error {
  color: #b3261e;
}

.auth-switch {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

.auth-switch-link {
  border: none;
  background: none;
  padding: 0;
  color: var(--clay);
  font-weight: 700;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.account-dashboard {
  margin-top: 26px;
}

.account-profile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.46);
  margin-bottom: 22px;
}

.account-profile strong {
  display: block;
  font-size: 1.05rem;
}

.account-profile span {
  color: var(--muted);
  font-size: 0.85rem;
}

.account-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.account-block {
  padding: 22px 24px;
}

.account-block-wide {
  grid-column: 1 / -1;
}

.account-block h2 {
  font-size: 1.02rem;
  margin-bottom: 14px;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.wishlist-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
}

.wishlist-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.wishlist-card strong {
  font-size: 0.86rem;
  line-height: 1.3;
}

.wishlist-card span {
  color: var(--muted);
  font-size: 0.8rem;
}

.wishlist-card-actions {
  display: flex;
  gap: 6px;
  margin-top: auto;
}

.wishlist-card-actions a,
.wishlist-card-actions button {
  flex: 1;
  min-height: 34px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.wishlist-card-actions a {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wishlist-card-actions button {
  border: 1px solid var(--line);
  background: transparent;
  color: #b3261e;
}

.address-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.address-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
}

.address-card strong {
  display: block;
  margin-bottom: 3px;
}

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

.address-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.address-form input {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  outline: none;
  font-family: inherit;
  font-size: 0.86rem;
}

.address-form .span-2 {
  grid-column: span 2;
}

.address-submit {
  grid-column: 1 / -1;
}

.order-history-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-card {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.order-card:hover,
.order-card:focus-visible {
  border-color: var(--clay);
  transform: translateY(-1px);
}

.order-card-hint {
  margin-top: 8px;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 700;
}

.order-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.order-items {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.order-tracking {
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--clay);
}

.order-tracking a {
  color: var(--clay);
  font-weight: 700;
}

.order-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
}

.order-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: rgba(24, 23, 21, 0.08);
  color: var(--ink);
}

.order-status-paid,
.order-status-shipped { background: rgba(199, 162, 74, 0.22); color: #8a6d1f; }
.order-status-delivered { background: rgba(33, 113, 93, 0.16); color: #21715d; }
.order-status-refunded,
.order-status-cancelled,
.order-status-failed { background: rgba(179, 38, 30, 0.12); color: #b3261e; }

.paid-claim-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: rgba(33, 113, 93, 0.16);
  color: #21715d;
  cursor: help;
}
.order-status-created,
.order-status-payment_pending { background: rgba(24, 23, 21, 0.08); color: var(--muted); }

@media (max-width: 760px) {
  .account-grid {
    grid-template-columns: 1fr;
  }
  .address-form {
    grid-template-columns: 1fr;
  }
  .address-form .span-2 {
    grid-column: 1;
  }
}

/* ---------- Admin dashboard ---------- */
.admin-page {
  max-width: 1100px;
  margin: 0 auto;
}

.admin-login {
  max-width: 380px;
  margin-top: 26px;
  padding: 28px;
}

.admin-toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 16px;
}

.admin-toolbar span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  margin-right: auto;
}

.admin-order-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-order-card {
  padding: 18px 20px;
}

.admin-order-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.admin-order-head strong {
  margin-right: 10px;
}

.admin-order-head span {
  color: var(--muted);
  font-size: 0.8rem;
}

.admin-order-head-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-delete-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: #b3261e;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.admin-delete-btn:hover {
  background: rgba(179, 38, 30, 0.08);
}

.admin-delete-btn:disabled {
  opacity: 0.6;
  cursor: default;
}

.admin-order-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.86rem;
}

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

.admin-order-body p strong {
  color: var(--ink);
}

.admin-order-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: end;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.admin-order-form label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.admin-order-form input,
.admin-order-form select {
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  outline: none;
  font-family: inherit;
  font-size: 0.82rem;
}

.admin-order-note {
  align-self: center;
  font-size: 0.78rem;
  color: #21715d;
}

.admin-order-note.error {
  color: #b3261e;
}

@media (max-width: 900px) {
  .admin-order-body,
  .admin-order-form {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .admin-order-body,
  .admin-order-form {
    grid-template-columns: 1fr;
  }
}

/* ---------- Free bottles (BOGO) ---------- */
.gift-panel { max-width: 760px; width: min(94vw, 760px); }
.gift-picker { display: grid; gap: 14px; text-align: center; padding: 10px 4px; }
.gift-picker h2 { font-size: 1.5rem; padding: 0 40px; }
.gift-intro { color: var(--muted); line-height: 1.6; }
.gift-options { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; text-align: left; }
.gift-option { display: grid; gap: 6px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.gift-option img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; background: var(--mist); }
.gift-option h4 { font-size: 0.95rem; }
.gift-option span { color: var(--muted); font-size: 0.82rem; }
.gift-option button { width: 100%; }
.gift-note { min-height: 1em; color: var(--muted); font-size: 0.9rem; }
.gift-note.error { color: #b3261e; }
.gift-hint { color: var(--muted); font-size: 0.85rem; }
.gift-later { justify-self: center; }
.gift-reminder .primary-btn, .gift-reminder .secondary-btn { width: 100%; }
.cart-gifts { display: grid; gap: 10px; margin-bottom: 18px; }
.gift-row { background: rgba(199, 162, 74, 0.08); }
.gift-badge { display: inline-block; margin-left: 6px; padding: 2px 8px; border-radius: 999px; background: var(--gold); color: var(--ink); font-size: 0.7rem; font-weight: 800; vertical-align: middle; }
.gift-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 16px; border: 1px dashed var(--gold); border-radius: 10px; background: rgba(199, 162, 74, 0.1); font-weight: 700; }

/* ---------- Payment choice (UPI / COD) ---------- */
.payment-choice { display: grid; gap: 10px; padding: 14px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.payment-choice legend { padding: 0 6px; font-weight: 700; font-size: 0.9rem; }
.payment-choice label { display: flex; gap: 10px; align-items: center; cursor: pointer; line-height: 1.4; }
.payment-choice input { width: 18px; height: 18px; min-height: 0; accent-color: var(--ink); }
.order-confirmed-breakdown { display: grid; grid-template-columns: 1fr auto; gap: 4px 16px; width: 100%; color: var(--muted); font-size: 0.92rem; }
.cod-message { padding: 14px; border-radius: 10px; background: var(--mist); line-height: 1.6; }
.upi-app-btn { display: inline-block; margin: 10px 0; }
.copy-upi-btn { margin-left: 6px; padding: 2px 10px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: 0.8rem; cursor: pointer; }
.proof-received { padding: 14px; border-radius: 10px; background: var(--mist); line-height: 1.6; text-align: center; }

/* ---------- Payment screenshot window ---------- */
.proof-modal { z-index: 70; }
.proof-form { text-align: left; }
.proof-form h2 { padding: 0 40px 0 0; }
.proof-file { display: block; cursor: pointer; }
.proof-file input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.proof-file span { display: block; padding: 16px; border: 1px dashed var(--ink); border-radius: 10px; text-align: center; font-weight: 700; background: #fff; }
.proof-preview { max-height: 260px; max-width: 100%; justify-self: center; border-radius: 8px; border: 1px solid var(--line); }
.proof-utr { display: grid; gap: 6px; font-size: 0.85rem; font-weight: 700; }
.proof-utr input { min-height: 44px; padding: 0 12px; border: 1px solid var(--line); border-radius: 8px; font-weight: 400; }
.proof-done { text-align: center; }

/* ---------- Admin ---------- */
.pay-method-badge { display: inline-block; margin-left: 6px; padding: 2px 8px; border-radius: 999px; font-size: 0.72rem; font-weight: 800; }
.pay-method-cod { background: #fde2c8; color: #7a3d00; }
.pay-method-upi { background: #dbe8ff; color: #1d3f7a; }
.admin-proof a { font-weight: 700; }

/* ---------- Show / hide password ---------- */
.password-wrap { position: relative; display: block; }
.password-wrap input { width: 100%; padding-right: 48px; }
.password-eye { position: absolute; top: 50%; right: 8px; transform: translateY(-50%); width: 36px; height: 36px; display: grid; place-items: center; border: 0; background: transparent; color: var(--muted); cursor: pointer; }
.password-eye svg { width: 20px; height: 20px; }
.password-eye:hover { color: var(--ink); }
.checkout-form .payment-choice { grid-column: 1 / -1; }
.payment-choice input[type="radio"] { padding: 0; flex: none; }
.gift-option button:disabled { opacity: 0.45; cursor: not-allowed; }
.cart-panel .cart-summary-line { padding: 5px 0; }

/* ---------- Account: menu cards + separate pages ---------- */
.account-hub { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px; }
.account-hub-card { display: grid; gap: 6px; padding: 24px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255, 255, 255, 0.6); color: var(--ink); text-decoration: none; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.account-hub-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.account-hub-icon { font-size: 1.6rem; }
.account-hub-card strong { font-size: 1.15rem; }
.account-hub-card span:last-child { color: var(--muted); line-height: 1.5; }
.account-subnav { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 22px; }
.account-subnav a { padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.9rem; background: rgba(255, 255, 255, 0.6); }
.account-subnav a.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.account-page-block { width: 100%; }
.account-signin-prompt { display: grid; gap: 12px; justify-items: start; padding: 8px 0; }
.address-form-title { margin: 24px 0 12px; font-size: 1.1rem; }
@media (max-width: 720px) { .account-hub { grid-template-columns: 1fr; } }

/* ---------- Admin: two views ---------- */
.admin-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 6px; }
.admin-tab { padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-weight: 700; cursor: pointer; }
.admin-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.admin-view-hint { color: var(--muted); font-size: 0.9rem; margin-bottom: 12px; }
[hidden] { display: none !important; }

/* ---------- Side menu (☰) ---------- */
.menu-toggle { display: grid; gap: 4px; width: 40px; height: 40px; padding: 11px 9px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255, 255, 255, 0.7); cursor: pointer; }
.menu-toggle span { display: block; height: 2px; border-radius: 2px; background: var(--ink); }
.menu-toggle:hover { background: #fff; }
.side-menu { position: fixed; inset: 0; z-index: 90; pointer-events: none; }
.side-menu.open { pointer-events: auto; }
.side-menu-backdrop { position: absolute; inset: 0; background: rgba(24, 23, 21, 0.45); opacity: 0; transition: opacity 0.25s ease; }
.side-menu.open .side-menu-backdrop { opacity: 1; }
.side-menu-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(380px, 86vw); display: flex; flex-direction: column; gap: 18px; padding: 26px 22px; background: var(--paper); box-shadow: -20px 0 60px rgba(24, 23, 21, 0.25); transform: translateX(100%); transition: transform 0.28s ease; overflow-y: auto; }
.side-menu.open .side-menu-panel { transform: translateX(0); }
.side-menu-close { align-self: flex-end; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; font-size: 1rem; }
.side-menu-user { display: grid; gap: 4px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.side-menu-user strong { font-size: 1.3rem; }
.side-menu-user span { color: var(--muted); font-size: 0.9rem; word-break: break-all; }
.side-menu-links { display: grid; gap: 4px; }
.side-menu-links a { display: flex; align-items: center; gap: 14px; padding: 13px 12px; border-radius: 10px; color: var(--ink); text-decoration: none; font-weight: 600; font-size: 1rem; }
.side-menu-links a:hover { background: rgba(24, 23, 21, 0.06); }
.side-menu-links a.active { background: var(--ink); color: #fff; }
.side-menu-icon { width: 24px; text-align: center; }
.side-menu-bottom { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.side-menu-logout { width: 100%; padding: 12px; border: 1px solid var(--ink); border-radius: 10px; background: transparent; font-weight: 700; cursor: pointer; }
.side-menu-logout:hover { background: var(--ink); color: #fff; }
body.side-menu-open { overflow: hidden; }

/* ---------- Settings page ---------- */
.settings-block { margin-bottom: 20px; }
.settings-block h2 { margin-bottom: 12px; }
.settings-form { display: grid; gap: 14px; max-width: 460px; }
.settings-form label { display: grid; gap: 6px; font-weight: 600; font-size: 0.9rem; }
.settings-form input[type="text"], .settings-form input[type="email"], .settings-form input[type="password"] { min-height: 46px; padding: 0 14px; border: 1px solid var(--line); border-radius: 8px; background: #fff; font: inherit; }
.settings-form input:disabled { background: #f1ede6; color: var(--muted); }
.settings-form button { justify-self: start; }
.settings-check { display: flex !important; gap: 10px; align-items: flex-start; font-weight: 400 !important; }
.settings-danger { border-color: rgba(179, 38, 30, 0.35); }
.settings-danger h2 { color: #b3261e; }
.settings-danger p { color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.danger-btn { padding: 12px 20px; border: 0; border-radius: 8px; background: #b3261e; color: #fff; font-weight: 700; cursor: pointer; }
.danger-btn:disabled { opacity: 0.6; }
.account-hub { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
