:root {
  color-scheme: dark;
  --ink: #ffffff;
  --muted: #d6dee8;
  --soft: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.2);
  --glass: rgba(255, 255, 255, 0.1);
  --surface: rgba(5, 34, 25, 0.82);
  --deep: #02150f;
  --a: #063d2c;
  --b: #0b6f4d;
  --accent: #e7b84f;
  --accent-2: #d8f4dc;
  --danger: #ff8d8d;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 12%, rgba(158, 232, 255, 0.2), transparent 26rem),
    radial-gradient(circle at 84% 8%, rgba(245, 209, 124, 0.16), transparent 22rem),
    linear-gradient(135deg, var(--deep), var(--a) 48%, var(--b));
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

.liquid-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.liquid-bg::before,
.liquid-bg::after {
  position: absolute;
  inset: -20%;
  content: "";
  mix-blend-mode: screen;
}

.liquid-bg::before {
  background:
    linear-gradient(112deg, transparent 0%, rgba(255, 255, 255, 0.18) 34%, transparent 50%),
    linear-gradient(136deg, transparent 12%, rgba(158, 232, 255, 0.16) 44%, transparent 68%);
  background-size: 220% 220%;
  opacity: 0.66;
  animation: glass-shine 12s ease-in-out infinite;
}

.liquid-bg::after {
  background:
    radial-gradient(circle at 25% 38%, rgba(255, 255, 255, 0.14), transparent 12rem),
    radial-gradient(circle at 70% 62%, rgba(245, 209, 124, 0.14), transparent 16rem);
  filter: blur(2px);
  opacity: 0.86;
}

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

[hidden] {
  display: none !important;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.16), transparent 42%, rgba(255, 255, 255, 0.08)),
    rgba(5, 10, 18, 0.76);
  backdrop-filter: blur(14px);
}

.brand,
.top-nav,
.mode-switch,
.hero-actions,
.product-row,
.cart-total,
.internal-actions,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18rem;
}

.brand-mark {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(245, 209, 124, 0.62);
  border-radius: 50%;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.38), transparent 46%),
    rgba(255, 255, 255, 0.08);
}

.foil-text {
  display: inline-block;
  background: linear-gradient(112deg, #9a6614 0%, #f7d171 18%, #fff6bd 34%, #d49b25 52%, #fff1a6 68%, #b97618 84%, #ffe37c 100%);
  background-size: 240% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: foil 5s ease-in-out infinite;
}

.top-nav {
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  color: var(--muted);
  font-size: 0.94rem;
}

.top-nav a:hover {
  color: var(--ink);
}

.mode-switch {
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.mode-switch.wide {
  width: 100%;
}

.mode-button {
  min-height: 2.35rem;
  padding: 0.55rem 0.9rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.mode-button.active {
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.55), transparent 48%),
    linear-gradient(135deg, var(--accent-2), #ffffff, var(--accent));
  color: #07101a;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(21rem, 0.9fr);
  min-height: calc(100vh - 5rem);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 6vw, 6rem) 2rem;
}

.hero-copy {
  max-width: 48rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(5rem, 13vw, 12rem);
  line-height: 0.82;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.2rem;
}

.hero-copy p:not(.eyebrow),
.muted {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions,
.internal-actions {
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.button,
.add-button,
.close-button {
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.button,
.add-button {
  min-height: 2.85rem;
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.15rem;
}

.button:hover,
.add-button:hover {
  transform: translateY(-2px);
}

.primary {
  background:
    linear-gradient(112deg, transparent 0%, rgba(255, 255, 255, 0.58) 38%, transparent 56%),
    linear-gradient(135deg, var(--accent-2), #ffffff 45%, var(--accent));
  background-size: 230% 100%, auto;
  color: #07101a;
  animation: glass-shine 6s ease-in-out infinite;
}

.glass-button,
.danger {
  border: 1px solid var(--line);
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.2), transparent 36%, rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.danger {
  color: var(--danger);
}

.full {
  width: 100%;
}

.hero-showcase {
  position: relative;
  display: grid;
  min-height: 36rem;
  align-items: center;
}

.showcase-card {
  position: absolute;
  display: grid;
  width: min(76vw, 18rem);
  aspect-ratio: 0.78;
  place-items: end start;
  overflow: hidden;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 0.7rem;
  background:
    linear-gradient(112deg, transparent 0%, rgba(255, 255, 255, 0.34) 36%, transparent 56%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  background-size: 230% 100%, auto;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.36);
  animation: glass-shine 7s ease-in-out infinite;
}

.showcase-card span {
  z-index: 1;
  font-weight: 900;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.showcase-card::before {
  position: absolute;
  inset: 12%;
  content: "";
}

.jewel {
  top: 1rem;
  left: 8%;
  background-color: rgba(92, 18, 45, 0.72);
}

.jewel::before {
  border: 1.1rem solid rgba(245, 209, 124, 0.95);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.6rem rgba(0, 0, 0, 0.18), 0 0 0 0.65rem rgba(255, 255, 255, 0.08);
}

.perfume {
  top: 7rem;
  right: 0;
  background-color: rgba(18, 78, 104, 0.74);
}

.perfume::before {
  inset: 18% 33% 14%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1rem 1rem 1.6rem 1.6rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.46), rgba(158, 232, 255, 0.22));
}

.textile {
  bottom: 1rem;
  left: 21%;
  background-color: rgba(48, 30, 98, 0.74);
}

.textile::before {
  inset: 17% 18%;
  border-radius: 42% 42% 14% 14%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent),
    linear-gradient(165deg, rgba(245, 209, 124, 0.7), rgba(90, 46, 150, 0.8));
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(1rem, 6vw, 6rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--line);
}

.status-strip div {
  padding: 1rem;
  background: rgba(5, 10, 18, 0.68);
}

.status-strip span,
.product-tag {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.status-strip strong {
  display: block;
  margin-top: 0.25rem;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 6vw, 6rem);
}

.section-heading {
  max-width: 58rem;
  margin-bottom: 1.5rem;
}

.segment-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
}

.shopping-tools {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.segment-tab {
  min-height: 2.6rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

.segment-tab.active {
  background: var(--ink);
  color: #07101a;
}

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

.product-card,
.cart-panel,
.internal,
.verify-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(112deg, transparent 0%, rgba(255, 255, 255, 0.22) 34%, rgba(255, 255, 255, 0.06) 48%, transparent 64%),
    var(--surface);
  background-size: 250% 100%, auto;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
  animation: glass-shine 8s ease-in-out infinite;
}

.product-card {
  display: grid;
  min-height: 30rem;
  align-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.65rem;
}

.product-card.is-hidden {
  display: none;
}

.catalogue-empty {
  display: grid;
  grid-column: 1 / -1;
  gap: 0.85rem;
  padding: clamp(1.4rem, 4vw, 2rem);
  border: 1px solid #ead2a2;
  border-radius: 0.5rem;
  background: #fff5df;
}

.catalogue-empty h3 {
  margin: 0;
  color: var(--maroon);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1;
}

.catalogue-empty p:not(.eyebrow) {
  max-width: 46rem;
  color: #7b6759;
  line-height: 1.65;
}

.catalogue-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-card p {
  color: var(--muted);
  line-height: 1.55;
}

.product-subtag {
  margin: -0.35rem 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.product-visual {
  position: relative;
  display: block;
  width: 100%;
  min-height: 14rem;
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  border: 0;
  border-radius: 0.5rem;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: zoom-in;
}

.product-visual::before,
.product-visual::after {
  position: absolute;
  content: "";
}

.visual-jewellery,
.visual-emerald {
  background-color: rgba(92, 18, 45, 0.72);
}

.visual-jewellery::before,
.visual-emerald::before {
  inset: 20%;
  border: 0.75rem solid rgba(245, 209, 124, 0.92);
  border-radius: 50%;
}

.visual-jewellery::after,
.visual-emerald::after {
  right: 22%;
  bottom: 24%;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: #58ffc6;
  box-shadow: -4rem -3rem 0 #f7d171, -1.8rem 2.5rem 0 #ffffff;
}

.visual-perfume,
.visual-ruby {
  background-color: rgba(18, 78, 104, 0.74);
}

.visual-perfume::before,
.visual-ruby::before {
  bottom: 1.4rem;
  left: 50%;
  width: 5.2rem;
  height: 9.5rem;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 0.9rem 0.9rem 1.5rem 1.5rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.52), rgba(245, 209, 124, 0.22));
}

.visual-clothes,
.visual-sapphire {
  background-color: rgba(48, 30, 98, 0.74);
}

.visual-clothes::before,
.visual-sapphire::before {
  inset: 16% 22%;
  border-radius: 48% 48% 12% 12%;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.24), rgba(158, 232, 255, 0.18)), var(--accent);
}

.visual-ruby {
  background-color: rgba(132, 10, 55, 0.78);
}

.visual-sapphire {
  background-color: rgba(8, 50, 130, 0.78);
}

.visual-emerald {
  background-color: rgba(5, 86, 55, 0.78);
}

.product-row {
  justify-content: space-between;
  gap: 1rem;
}

.price {
  font-weight: 900;
}

.add-button {
  min-width: 4.8rem;
  padding: 0.72rem 1rem;
  background: var(--ink);
  color: #07101a;
}

.cart-section,
.checkout-section {
  padding-top: 1rem;
}

.cart-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.75fr);
  gap: clamp(1rem, 4vw, 3rem);
  padding: clamp(1rem, 4vw, 2rem);
  border-radius: 0.65rem;
}

.cart-list {
  display: grid;
  gap: 0.65rem;
}

.cart-item,
.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.cart-total {
  margin: 0.75rem 0;
}

.cart-item-actions {
  display: grid;
  justify-items: end;
  gap: 0.35rem;
}

.remove-cart-item {
  min-height: 2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--danger);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.35rem 0.65rem;
  text-transform: uppercase;
}

.checkout-summary {
  display: grid;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.checkout-summary div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.checkout-summary .net-payable {
  font-weight: 900;
}

.coupon-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.coupon-row input {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(3, 7, 14, 0.7);
  color: var(--ink);
  padding: 0.85rem 1rem;
}

.checkout-form,
.track-box {
  display: grid;
  gap: 0.75rem;
}

.checkout-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.checkout-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.account-summary {
  margin: 0;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  line-height: 1.5;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select,
.track-box input {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: rgba(3, 7, 14, 0.7);
  color: var(--ink);
  padding: 0.85rem 1rem;
}

.checkout-form input[readonly] {
  opacity: 0.82;
}

.checkout-form textarea {
  min-height: 5.5rem;
  resize: vertical;
}

.payment-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.track-result {
  min-height: 5rem;
}

.tracking-card {
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.tracking-steps {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.5rem;
}

.tracking-items {
  display: grid;
  gap: 0.25rem;
  margin: 0.45rem 0;
}

.tracking-steps span {
  padding-left: 0.8rem;
  border-left: 3px solid rgba(255, 255, 255, 0.24);
  color: var(--muted);
}

.tracking-steps span.active {
  border-color: var(--accent);
  color: var(--ink);
  font-weight: 900;
}

.product-visual.has-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.product-visual.has-image::before,
.product-visual.has-image::after {
  display: none;
}

.product-preview-modal {
  width: min(96vw, 64rem);
  border: 0;
  border-radius: 0.75rem;
  padding: 0;
  background: transparent;
}

.product-preview-modal::backdrop {
  background: rgba(4, 8, 14, 0.72);
  backdrop-filter: blur(8px);
}

.product-preview-card {
  position: relative;
  padding: clamp(1rem, 3vw, 1.4rem);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.preview-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
}

.product-preview-body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.preview-visual {
  min-height: min(68vh, 34rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: default;
}

.preview-copy {
  display: grid;
  gap: 0.8rem;
  padding-right: 2rem;
}

.preview-copy h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.empty,
.form-status {
  color: var(--muted);
}

.form-status {
  min-height: 1.3rem;
  margin: 0.8rem 0 0;
}

.order-send-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.status-link {
  display: inline-flex;
  min-height: 2.55rem;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: var(--ink);
  color: #07101a;
  font-weight: 900;
}

.upi-payment-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin: 0.9rem 0;
  padding: 1rem;
  border: 1px solid rgba(142, 18, 22, 0.22);
  border-radius: 0.5rem;
  background: rgba(255, 252, 245, 0.72);
}

.upi-payment-card strong,
.upi-payment-card span,
.upi-payment-card small {
  display: block;
}

.upi-payment-card small {
  color: var(--muted);
  margin-top: 0.25rem;
}

.upi-qr {
  display: grid;
  place-items: center;
  width: 164px;
  height: 164px;
  padding: 6px;
  background: #fff;
  border: 1px solid rgba(33, 20, 16, 0.14);
}

.upi-actions,
.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.status-button {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.thank-you-modal {
  width: min(92vw, 620px);
  border: 0;
  padding: 0;
  background: transparent;
}

.thank-you-modal::backdrop {
  background: rgba(17, 10, 8, 0.62);
  backdrop-filter: blur(3px);
}

.thank-you-card {
  position: relative;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid rgba(215, 166, 79, 0.45);
  border-radius: 0.7rem;
  background: var(--cream);
  color: var(--text);
  box-shadow: 0 20px 60px rgba(33, 20, 16, 0.24);
}

.thank-you-card h2 {
  margin: 0.2rem 0 0.8rem;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--maroon);
  font-size: clamp(2.2rem, 7vw, 4rem);
  line-height: 0.95;
}

.thank-you-card small {
  display: block;
  margin-top: 0.85rem;
  color: var(--muted);
}

.internal {
  margin: 0 clamp(1rem, 6vw, 6rem) clamp(4rem, 7vw, 6rem);
  padding: clamp(1rem, 4vw, 2rem);
  border-radius: 0.65rem;
}

.internal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.table-wrap {
  overflow: auto;
  margin-top: 1rem;
}

.table-input {
  width: 100%;
  min-width: 9rem;
  min-height: 2.4rem;
  margin-bottom: 0.4rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(221, 236, 244, 0.2);
  border-radius: 0.35rem;
  background: rgba(3, 10, 18, 0.7);
  color: #f8fbff;
  font: inherit;
}

.order-item-line {
  display: block;
  min-width: 13rem;
  margin-bottom: 0.55rem;
}

.order-item-line strong,
.order-item-line small {
  display: block;
}

.order-item-line small {
  color: rgba(221, 236, 244, 0.74);
}

table {
  width: 100%;
  min-width: 58rem;
  border-collapse: collapse;
}

th,
td {
  padding: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--accent-2);
  font-size: 0.76rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

.verify-modal {
  width: min(94vw, 42rem);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.verify-modal::backdrop {
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
}

.verify-card {
  display: grid;
  gap: 0.85rem;
  padding: clamp(1rem, 4vw, 1.5rem);
  border-radius: 0.75rem;
}

.verify-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.close-button {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--ink);
  font-size: 1.4rem;
}

.verify-card label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.verify-card input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: rgba(3, 7, 14, 0.7);
  color: var(--ink);
  padding: 0.85rem;
}

.verify-card select,
.admin-card select,
.admin-card input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: rgba(3, 7, 14, 0.7);
  color: var(--ink);
  padding: 0.85rem;
}

.b2b-fields {
  display: grid;
  gap: 0.85rem;
}

.b2b-fields[hidden] {
  display: none !important;
}

.gst-preview {
  display: grid;
  gap: 0.45rem;
  padding: 0.9rem;
  border: 1px solid rgba(158, 232, 255, 0.35);
  border-radius: 0.55rem;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.16), transparent 45%),
    rgba(158, 232, 255, 0.08);
}

.gst-preview[hidden] {
  display: none !important;
}

.gst-preview strong {
  font-size: 1.05rem;
}

.gst-preview span {
  color: var(--muted);
  line-height: 1.45;
}

.confirm-row {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 0.55rem !important;
  margin-top: 0.25rem;
}

.confirm-row input {
  width: 1rem;
  height: 1rem;
  padding: 0;
}

.otp-row {
  display: grid;
  grid-template-columns: minmax(8rem, 0.45fr) 1fr;
  gap: 0.8rem;
  align-items: end;
}

footer {
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1rem, 6vw, 6rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.admin-page {
  min-height: 100vh;
}

.admin-shell {
  min-height: 100vh;
}

.admin-login {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(1rem, 5vw, 5rem);
}

.admin-login-card {
  width: min(100%, 44rem);
}

.admin-login-logo {
  display: block;
  width: min(18rem, 72vw);
  height: auto;
  margin-bottom: 1rem;
  border-radius: 0.65rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
}

.admin-login-card h1 {
  font-size: clamp(3.6rem, 9vw, 7rem);
}

.admin-dashboard {
  padding: clamp(1rem, 4vw, 3rem);
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: rgba(5, 10, 18, 0.74);
  backdrop-filter: blur(12px);
}

.admin-hero,
.admin-card {
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--surface);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: clamp(1.2rem, 4vw, 2rem);
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(6rem, 1fr));
  gap: 0.65rem;
}

.admin-metrics div {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.08);
}

.admin-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.admin-metrics strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.7rem;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-brand-logo {
  display: block;
  width: 8rem;
  height: auto;
  border-radius: 0.45rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.admin-card {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.dashboard-summary {
  gap: 1rem;
}

.admin-guidance {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.08);
}

.admin-guidance strong {
  color: #b8f0ff;
  font-weight: 900;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.admin-guidance span {
  color: var(--muted);
  line-height: 1.45;
}

.summary-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.summary-card,
.summary-list,
.summary-mini-row {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.summary-card {
  display: grid;
  gap: 0.3rem;
  min-height: 7rem;
  padding: 0.95rem;
  border-radius: 0.55rem;
}

.summary-card span,
.summary-list h4 {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.summary-card strong {
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
}

.summary-card small,
.summary-mini-row small {
  color: var(--muted);
  line-height: 1.35;
}

.summary-card.attention,
.summary-mini-row.attention {
  border-color: rgba(255, 231, 150, 0.55);
  background: rgba(255, 231, 150, 0.1);
}

.summary-card.warning,
.summary-mini-row.warning {
  border-color: rgba(255, 155, 130, 0.6);
  background: rgba(255, 155, 130, 0.1);
}

.summary-mini-row.critical {
  border-color: rgba(255, 120, 120, 0.75);
  background: rgba(255, 120, 120, 0.13);
}

.summary-lists {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.summary-list {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  min-height: 10rem;
  padding: 0.95rem;
  border-radius: 0.55rem;
}

.summary-list h4 {
  margin: 0;
}

.summary-mini-row {
  display: grid;
  gap: 0.25rem;
  padding: 0.75rem;
  border-radius: 0.45rem;
}

.summary-mini-row strong {
  overflow-wrap: anywhere;
}

.admin-card label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.inline-admin-form {
  display: grid;
  grid-template-columns: minmax(14rem, 1.4fr) minmax(10rem, 1fr) minmax(8rem, 0.8fr) auto;
  gap: 0.8rem;
  align-items: end;
  margin: 1rem 0;
}

.product-fields {
  display: grid;
  gap: 0.85rem;
}

.product-fields[hidden] {
  display: none !important;
}

.compact-filter {
  display: grid;
  gap: 0.3rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.sku-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.sku-summary span {
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-weight: 900;
}

.row-action {
  min-height: 2.35rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--danger);
  cursor: pointer;
  font-weight: 900;
}

.row-action.neutral {
  color: var(--accent-2);
}

.admin-workflow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.55rem;
}

.admin-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(158, 232, 255, 0.32);
  border-radius: 999px;
  color: var(--accent-2);
  font-weight: 900;
}

.admin-status-pill.paid {
  color: #bff7c5;
}

.permission-note {
  display: inline-flex;
  align-items: center;
  max-width: 9rem;
  margin-top: 0.35rem;
  color: #ffd9a3;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.admin-thumb {
  display: inline-block;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent),
    rgba(255, 255, 255, 0.08);
}

.admin-thumb.has-photo {
  background:
    linear-gradient(135deg, rgba(158, 232, 255, 0.28), rgba(245, 209, 124, 0.22)),
    rgba(255, 255, 255, 0.12);
}

@keyframes foil {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes glass-shine {
  0%,
  100% {
    background-position: 0% 50%, center;
  }

  50% {
    background-position: 100% 50%, center;
  }
}

@media (max-width: 920px) {
  .site-header,
  .hero,
  .cart-panel {
    grid-template-columns: 1fr;
  }

  .top-nav {
    justify-content: flex-start;
    overflow: auto;
    padding-bottom: 0.25rem;
  }

  .mode-switch {
    justify-self: start;
  }

  .hero-showcase {
    min-height: 30rem;
  }

  .status-strip,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .internal-head,
  .admin-topbar,
  .admin-hero {
    display: grid;
  }

  .admin-grid,
  .form-grid,
  .inline-admin-form,
  .admin-metrics,
  .summary-cards,
  .summary-lists {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(4.2rem, 24vw, 6rem);
  }

  .hero-actions .button,
  .internal-actions .button,
  .otp-row,
  .coupon-row {
    width: 100%;
  }

  .otp-row,
  .coupon-row {
    grid-template-columns: 1fr;
  }

  footer {
    display: grid;
  }
}

body:has(.storefront-shell) {
  --cream: #f4ead2;
  --cream-2: #fff7e7;
  --maroon: #064b35;
  --maroon-dark: #033225;
  --gold: #d6a53a;
  --brown: #173328;
  --ink-soft: #13271f;
  background: var(--cream);
  color: var(--ink-soft);
}

.storefront-shell {
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink-soft);
}

.storefront-shell .shipping-bar {
  padding: 0.45rem 1rem;
  background: linear-gradient(90deg, #033225, #07553d, #033225);
  color: #fff6d7;
  border-top: 4px solid var(--gold);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
}

.lux-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 2rem clamp(1rem, 6vw, 6rem);
  background:
    linear-gradient(115deg, rgba(255, 247, 225, 0.94), rgba(241, 224, 186, 0.9)),
    #f4e5c6;
  border-bottom: 1px solid rgba(6, 75, 53, 0.18);
}

.lux-logo {
  display: grid;
  justify-items: center;
  min-width: 12rem;
  color: var(--maroon);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 0.85;
}

.lux-logo img,
.footer-logo img {
  display: block;
  width: min(12rem, 34vw);
  height: auto;
  border-radius: 0.55rem;
  box-shadow: 0 12px 28px rgba(3, 50, 37, 0.18);
}

.footer-logo img {
  width: min(13rem, 60vw);
}

.lux-logo small,
.footer-logo small {
  color: var(--brown);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
}

.logo-flower {
  display: block;
  width: 4.2rem;
  height: 2.2rem;
  margin-bottom: 0.2rem;
  background:
    radial-gradient(circle at 50% 12%, #f9d24c 0 0.35rem, transparent 0.38rem),
    radial-gradient(ellipse at 30% 55%, #b60837 0 0.65rem, transparent 0.68rem),
    radial-gradient(ellipse at 50% 48%, #ff8f28 0 0.72rem, transparent 0.75rem),
    radial-gradient(ellipse at 70% 55%, #5d9f35 0 0.65rem, transparent 0.68rem);
}

.lux-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 3rem);
  color: var(--maroon);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
}

.account-greeting {
  color: var(--maroon);
  flex: 0 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.search-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  background: #fff9ee;
}

.search-pill input,
.newsletter input,
.lux-footer input {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink-soft);
}

.search-pill span,
.icon-button {
  color: var(--maroon);
  font-weight: 900;
}

.icon-button {
  display: inline-flex;
  width: auto;
  min-width: 4.8rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.lux-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(24rem, 1fr);
  min-height: 34rem;
  overflow: hidden;
  align-items: center;
  border-bottom: 4px solid #f1d7a9;
  background:
    radial-gradient(circle at 74% 48%, rgba(255, 248, 219, 0.7), transparent 21rem),
    radial-gradient(circle at 92% 28%, rgba(5, 87, 60, 0.18), transparent 18rem),
    linear-gradient(100deg, #f7e7bd 0%, #fff5d8 45%, #dba94b 100%);
}

.lux-hero-copy {
  z-index: 2;
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 8vw, 7.5rem);
}

.storefront-shell .eyebrow {
  color: var(--maroon);
  letter-spacing: 0.18rem;
}

.lux-hero h1,
.center-heading h2,
.product-head h2,
.newsletter h2 {
  color: var(--maroon);
}

.lux-hero h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.8rem, 7vw, 6.7rem);
  line-height: 0.98;
}

.lux-hero p:not(.eyebrow) {
  max-width: 34rem;
  color: #21150f;
  font-size: 1.15rem;
  line-height: 1.65;
}

.ornament-line {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 1.5rem 0 2rem;
}

.ornament-line::before,
.ornament-line::after {
  width: 6rem;
  height: 1px;
  content: "";
  background: var(--gold);
}

.ornament-line span {
  width: 0.5rem;
  height: 0.5rem;
  transform: rotate(45deg);
  background: var(--gold);
}

.storefront-shell .button {
  border-radius: 999px;
  letter-spacing: 0.09rem;
  text-transform: uppercase;
}

.maroon {
  background: var(--maroon);
  color: #fff8ea;
}

.outline {
  border: 1px solid var(--maroon);
  background: #fffaf1;
  color: var(--maroon);
}

.lux-hero-art {
  position: relative;
  min-height: 34rem;
  align-self: stretch;
}

.temple-silhouette {
  position: absolute;
  right: 7%;
  bottom: 6rem;
  width: 19rem;
  height: 14rem;
  opacity: 0.34;
  background:
    linear-gradient(to top, #6b3c18 0 1.4rem, transparent 1.4rem),
    radial-gradient(ellipse at 50% 100%, transparent 0 4.2rem, #6b3c18 4.25rem 4.55rem, transparent 4.6rem),
    radial-gradient(ellipse at 25% 100%, transparent 0 2.9rem, #6b3c18 2.95rem 3.2rem, transparent 3.25rem),
    radial-gradient(ellipse at 75% 100%, transparent 0 2.9rem, #6b3c18 2.95rem 3.2rem, transparent 3.25rem);
}

.hero-product {
  position: absolute;
  filter: drop-shadow(0 24px 30px rgba(78, 42, 12, 0.22));
}

.perfume-bottle {
  right: 25%;
  bottom: 5rem;
  width: 5rem;
  height: 11rem;
  border: 2px solid rgba(111, 62, 10, 0.28);
  border-radius: 1rem 1rem 1.7rem 1.7rem;
  background: linear-gradient(135deg, #fff7d4, #d28c21 45%, #ffe597);
}

.jewellery-bowl {
  right: 10%;
  bottom: 4.8rem;
  width: 11rem;
  height: 6rem;
  border-radius: 0 0 6rem 6rem;
  background: radial-gradient(circle at 50% 5%, #ffdf69 0 0.4rem, transparent 0.45rem), linear-gradient(#b46b10, #f4c14f);
  background-size: 1.2rem 1.2rem, auto;
}

.textile-roll {
  right: 29%;
  bottom: 3.6rem;
  width: 16rem;
  height: 2rem;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #6e241f 0 1.1rem, #c18a4e 1.1rem 2.2rem);
  transform: rotate(-5deg);
}

.diya {
  right: 2.5%;
  bottom: 8rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50% 50% 12% 12%;
  background: radial-gradient(ellipse at 50% 22%, #fff7a6 0 0.6rem, #ff8e10 0.65rem 1.4rem, transparent 1.45rem), linear-gradient(#dca536, #8f4b12);
}

.flower-cluster {
  position: absolute;
  right: 34%;
  bottom: 3rem;
  width: 18rem;
  height: 7rem;
  background:
    radial-gradient(circle at 18% 55%, #be071e 0 1.5rem, transparent 1.55rem),
    radial-gradient(circle at 34% 42%, #ff6745 0 1.35rem, transparent 1.4rem),
    radial-gradient(circle at 52% 56%, #fff7e0 0 1.45rem, transparent 1.5rem),
    radial-gradient(circle at 70% 42%, #e1a51c 0 1rem, transparent 1.05rem),
    radial-gradient(circle at 82% 58%, #be071e 0 1.1rem, transparent 1.15rem);
}

.hero-ornament {
  position: absolute;
  width: 6rem;
  height: 6rem;
  border-color: var(--gold);
  opacity: 0.85;
}

.hero-ornament.left {
  top: 0;
  left: 0;
  border-top: 5px double var(--gold);
  border-left: 5px double var(--gold);
  border-radius: 0 0 100% 0;
}

.hero-ornament.right {
  top: 0;
  right: 0;
  border-top: 5px double var(--gold);
  border-right: 5px double var(--gold);
  border-radius: 0 0 0 100%;
}

.lux-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid rgba(214, 165, 58, 0.48);
  background:
    linear-gradient(90deg, rgba(5, 76, 53, 0.08), rgba(255, 247, 226, 0.75)),
    #fbf1df;
}

.lux-benefits article {
  display: flex;
  gap: 1rem;
  min-height: 8.5rem;
  padding: 1.6rem clamp(1rem, 3vw, 3rem);
  border-right: 1px solid rgba(214, 165, 58, 0.48);
}

.lux-benefits span {
  color: var(--gold);
  font-size: 2rem;
}

.lux-benefits strong {
  color: var(--maroon);
  font-weight: 900;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.lux-benefits p {
  margin: 0.45rem 0 0;
  color: #5e4c43;
  line-height: 1.45;
}

.collection-section,
.products-section,
.help-section,
.newsletter {
  background: var(--cream);
}

.center-heading {
  max-width: 42rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.center-heading h2,
.product-head h2,
.newsletter h2 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.center-heading p:not(.eyebrow),
.newsletter p {
  color: #7b6759;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0 auto 1.25rem;
}

.trust-strip article {
  display: grid;
  gap: 0.35rem;
  min-height: 7rem;
  padding: 1rem;
  border: 1px solid rgba(214, 165, 58, 0.44);
  border-radius: 0.5rem;
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.95), rgba(244, 230, 190, 0.82)),
    #fffaf1;
}

.trust-strip strong {
  color: var(--maroon);
  font-weight: 900;
}

.trust-strip span {
  color: #7b6759;
  line-height: 1.45;
}

.footer-trust {
  margin: 0;
  padding: 1.25rem clamp(1rem, 6vw, 6rem) 0;
}

.footer-trust article {
  border-color: rgba(248, 228, 198, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.footer-trust strong {
  color: #fff7e8;
}

.footer-trust span {
  color: #d8c0aa;
}

.help-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(214, 165, 58, 0.44);
  border-radius: 0.5rem;
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.94), rgba(244, 230, 190, 0.82)),
    #fff5df;
}

.help-card h3 {
  margin-bottom: 0.8rem;
  color: var(--maroon);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.help-card p {
  color: #6f5b4f;
  line-height: 1.6;
}

.bulk-help {
  grid-column: 1 / -1;
}

.collection-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.collection-card {
  display: grid;
  gap: 0.75rem;
  padding: 0.75rem 0.75rem 1.2rem;
  border: 1px solid rgba(214, 165, 58, 0.5);
  border-radius: 1rem;
  background:
    linear-gradient(145deg, rgba(255, 248, 227, 0.92), rgba(235, 208, 143, 0.5)),
    #f8e9c9;
  color: var(--maroon);
  text-align: center;
}

.collection-card strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}

.collection-card span {
  color: #71584b;
}

.collection-art {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  border-radius: 0.8rem;
  background: linear-gradient(145deg, #fff8e8, #efd096);
}

.rose-card .collection-art {
  background: linear-gradient(145deg, #ffe0ec, #fff8e8);
}

.amber-card .collection-art {
  background: linear-gradient(145deg, #ffe1aa, #fff5d9);
}

.sapphire-card .collection-art {
  background: linear-gradient(145deg, #dbe9ff, #fff5d9);
}

.collection-art::before {
  position: absolute;
  inset: 14%;
  content: "";
}

.jewellery-art::before {
  border: 1rem solid #d3a12b;
  border-radius: 50%;
  box-shadow: 0 0 0 1.2rem rgba(255, 255, 255, 0.35);
}

.perfume-art::before {
  inset: 18% 34%;
  border: 2px solid rgba(117, 68, 16, 0.28);
  border-radius: 1rem 1rem 1.6rem 1.6rem;
  background: linear-gradient(145deg, #fff7d4, #d28c21);
}

.clothes-art::before {
  inset: 18% 24%;
  border-radius: 45% 45% 10% 10%;
  background: linear-gradient(145deg, #fff8d8, #2e6bc8);
}

.product-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-head a {
  color: var(--maroon);
  font-weight: 700;
}

.storefront-shell .shopping-tools {
  margin-bottom: 0.9rem;
}

.catalogue-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  background: var(--cream);
}

.catalogue-hero h1 {
  margin-bottom: 0.75rem;
  color: var(--maroon);
  font-size: clamp(3.2rem, 8vw, 6rem);
  line-height: 0.95;
}

.catalogue-hero p:not(.eyebrow) {
  max-width: 44rem;
  color: #7b6759;
  font-size: 1.08rem;
  line-height: 1.6;
}

.catalogue-login-card {
  display: grid;
  gap: 0.8rem;
  min-width: min(20rem, 100%);
  padding: 1rem;
  border: 1px solid #ead2a2;
  border-radius: 0.5rem;
  background: #fff5df;
}

.catalogue-login-card span {
  color: var(--maroon);
  font-weight: 900;
}

.storefront-shell .mode-switch,
.storefront-shell .segment-tab {
  border-color: #dfbf7c;
  background: #fff5df;
}

.storefront-shell .mode-button,
.storefront-shell .segment-tab {
  color: var(--maroon);
}

.storefront-shell .mode-button.active,
.storefront-shell .segment-tab.active {
  background: var(--maroon);
  color: #fff8ec;
}

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

.storefront-shell .product-card {
  min-height: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid #ead2a2;
  border-radius: 0.5rem;
  background: transparent;
  box-shadow: none;
  color: var(--ink-soft);
  animation: none;
  backdrop-filter: none;
}

.storefront-shell .product-card > div:not(.product-visual),
.storefront-shell .product-row {
  padding: 0 0.1rem;
}

.storefront-shell .product-row {
  flex-wrap: wrap;
}

.storefront-shell .product-card h3 {
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.storefront-shell .product-card p {
  color: #806c60;
}

.storefront-shell .product-tag {
  color: #88746a;
}

.storefront-shell .product-subtag {
  color: var(--maroon);
}

.subcategory-tabs {
  margin-top: 0.75rem;
}

.product-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.buy-button,
.favourite-button {
  min-height: 2.85rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.buy-button {
  padding: 0.72rem 1rem;
  background: #fffaf1;
  color: var(--maroon);
  box-shadow: inset 0 0 0 1px #dfbf7c;
}

.favourite-button {
  width: 2.85rem;
  min-width: 2.85rem;
  padding: 0;
  background: #fffaf1;
  color: var(--maroon);
  box-shadow: inset 0 0 0 1px #dfbf7c;
  font-size: 1.35rem;
  line-height: 1;
}

.favourite-button.active {
  background: var(--maroon);
  color: #fff8ec;
}

.favourite-button span {
  display: grid;
  place-items: center;
}

.storefront-shell .product-visual {
  min-height: 23rem;
  border-radius: 0.45rem;
  background-color: #fffaf1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.storefront-shell ~ .product-preview-modal .product-preview-card,
body:has(.storefront-shell) .product-preview-card {
  border-color: #ead2a2;
  background: #fff5df;
  color: var(--ink-soft);
}

body:has(.storefront-shell) .preview-copy p {
  color: #806c60;
}

body:has(.storefront-shell) .preview-copy h3 {
  color: var(--maroon);
}

.storefront-shell .add-button {
  background: var(--maroon);
  color: #fff8ec;
}

.saved-section {
  padding-top: 1rem;
  background: var(--cream);
}

.saved-list {
  max-width: 72rem;
}

.saved-product {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  border: 1px solid #ead2a2;
  background: #fffaf1;
}

.saved-thumb {
  min-height: 7rem;
  aspect-ratio: 1;
  border: 1px solid #ead2a2;
  animation: none;
}

.saved-product-copy {
  display: grid;
  gap: 0.25rem;
}

.saved-product-copy strong {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.saved-product-copy small {
  color: #806c60;
  font-weight: 800;
  text-transform: uppercase;
}

.saved-product-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.order-history-card {
  grid-template-columns: minmax(0, 1fr) auto;
}

.order-history-card .saved-product-copy {
  gap: 0.45rem;
}

.tracking-items {
  display: grid;
  gap: 0.25rem;
}

.tracking-items span {
  color: var(--muted);
  font-weight: 700;
}

.payment-reminder {
  display: block;
  margin-top: 0.35rem;
  color: var(--maroon);
  font-weight: 900;
  line-height: 1.45;
  text-transform: none;
}

.order-history-card .upi-payment-card {
  margin-top: 0.75rem;
}

.storefront-shell .cart-panel {
  border: 1px solid #ead2a2;
  background: #fff5df;
  box-shadow: none;
  color: var(--ink-soft);
  animation: none;
}

.storefront-shell .muted,
.storefront-shell .empty,
.storefront-shell .form-status {
  color: #7b6759;
}

.storefront-shell .status-link {
  background: var(--maroon);
  color: #fff8ec;
}

.storefront-shell .cart-item,
.storefront-shell .cart-total,
.storefront-shell .checkout-summary div {
  border-color: #ead2a2;
  background: #fffaf1;
}

.storefront-shell .remove-cart-item {
  border-color: #ead2a2;
  color: var(--maroon);
}

.storefront-shell .coupon-row input {
  border-color: #ead2a2;
  background: #fffaf1;
  color: var(--ink-soft);
}

.storefront-shell .checkout-form label {
  color: var(--maroon);
}

.storefront-shell .checkout-form input,
.storefront-shell .checkout-form textarea,
.storefront-shell .checkout-form select,
.storefront-shell .track-box input {
  border-color: #ead2a2;
  background: #fffaf1;
  color: var(--ink-soft);
}

.storefront-shell .account-summary {
  border-color: #ead2a2;
  background: #fffaf1;
  color: #7b6759;
}

.storefront-shell .payment-note {
  color: #7b6759;
}

.storefront-shell .tracking-card {
  border-color: #ead2a2;
  background: #fffaf1;
}

.storefront-shell .tracking-steps span {
  border-color: #e1c98f;
  color: #7b6759;
}

.storefront-shell .tracking-steps span.active {
  border-color: var(--maroon);
  color: var(--maroon);
}

.newsletter {
  padding: clamp(4rem, 8vw, 7rem) 1rem;
  text-align: center;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.bulk-contact-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--maroon);
  font-weight: 900;
}

.newsletter-form input,
.lux-footer input {
  width: min(100%, 24rem);
  border: 1px solid #d9c49a;
  border-radius: 0.35rem;
  background: white;
  padding: 1rem;
}

.lux-footer {
  display: block;
  padding: 0;
  border: 0;
  background: var(--maroon-dark);
  color: #f8e4c6;
}

.footer-perks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.footer-perks span {
  padding: 1.8rem clamp(1rem, 6vw, 6rem);
  background: var(--maroon);
  color: #fff8ec;
  font-weight: 900;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr 1.4fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 6vw, 6rem);
}

.footer-grid.compact-footer {
  grid-template-columns: minmax(0, 1fr);
  padding-top: 2rem;
}

.footer-grid p,
.footer-grid a {
  display: block;
  color: #d8c0aa;
  line-height: 1.55;
}

.footer-grid h3 {
  color: #fff7e8;
}

.footer-logo {
  display: grid;
  width: 12rem;
  min-height: 9rem;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: #f4e5c6;
}

.footer-logo .foil-text {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 40;
  display: grid;
  width: 4.4rem;
  height: 4.4rem;
  place-items: center;
  border-radius: 50%;
  background: #19c65b;
  color: white;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

body:not(.admin-page) .verify-card {
  background: #fff5df;
  color: #160c08;
}

body:not(.admin-page) .verify-card .eyebrow,
body:not(.admin-page) .verify-card label {
  color: #160c08;
}

body:not(.admin-page) .verify-card .eyebrow {
  font-weight: 900;
  letter-spacing: 0.2rem;
}

body:not(.admin-page) .verify-card h2 {
  color: #160c08;
  text-shadow: none;
}

body:not(.admin-page) .verify-card input,
body:not(.admin-page) .verify-card select {
  border-color: #b7904e;
  background: #fffaf1;
  color: #000;
  font-weight: 800;
  -webkit-text-fill-color: #000;
}

body:not(.admin-page) .verify-card input::placeholder {
  color: #4e463d;
  opacity: 1;
}

body:not(.admin-page) .verify-card input:focus,
body:not(.admin-page) .verify-card input:not(:placeholder-shown),
body:not(.admin-page) .verify-card input:-webkit-autofill,
body:not(.admin-page) .verify-card input:-webkit-autofill:hover,
body:not(.admin-page) .verify-card input:-webkit-autofill:focus {
  border-color: #7e1719;
  background: #fffaf1;
  color: #000;
  -webkit-text-fill-color: #000;
  box-shadow: 0 0 0 1000px #fffaf1 inset;
}

body:not(.admin-page) .close-button {
  background: var(--maroon);
  color: #fff8ec;
}

@media (max-width: 1080px) {
  .lux-header,
  .lux-hero,
  .catalogue-hero {
    grid-template-columns: 1fr;
  }

  .lux-nav,
  .header-tools {
    justify-content: flex-start;
    overflow: auto;
  }

  .lux-hero-art {
    min-height: 25rem;
  }

  .lux-benefits,
  .collection-cards,
  .trust-strip,
  .help-grid,
  .storefront-shell .product-grid,
  .footer-grid,
  .footer-perks {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 680px) {
  .upi-payment-card {
    grid-template-columns: 1fr;
  }

  .upi-qr {
    justify-self: start;
  }

  .lux-logo {
    justify-items: start;
  }

  .lux-hero h1 {
    font-size: clamp(3rem, 16vw, 4rem);
  }

  .lux-benefits,
  .collection-cards,
  .trust-strip,
  .help-grid,
  .storefront-shell .product-grid,
  .footer-grid,
  .footer-perks {
    grid-template-columns: 1fr;
  }

  .storefront-shell .product-row,
  .product-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .saved-product {
    grid-template-columns: 1fr;
  }

  .saved-product-actions {
    justify-content: stretch;
  }

  .preview-copy {
    padding-right: 0;
  }

  .preview-visual {
    min-height: 22rem;
  }

  .buy-button,
  .storefront-shell .add-button {
    width: 100%;
  }

  .favourite-button {
    width: 2.85rem;
    min-width: 2.85rem;
  }

  .product-head,
  .newsletter-form {
    display: grid;
  }
}

@media (max-width: 1180px) {
  .lux-header {
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .lux-nav,
  .header-tools {
    max-width: 100%;
    padding-bottom: 0.35rem;
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .lux-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .header-tools {
    justify-self: end;
  }

  .search-pill {
    min-width: min(16rem, 44vw);
  }

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

@media (max-width: 900px) {
  body {
    min-width: 0;
  }

  .section,
  .lux-benefits,
  .footer-main,
  .footer-bottom,
  .collection-cards,
  .products-section,
  .cart-section,
  .checkout-section,
  .tracking-section {
    padding-left: clamp(0.85rem, 4vw, 1.5rem);
    padding-right: clamp(0.85rem, 4vw, 1.5rem);
  }

  .lux-header {
    position: sticky;
    top: 0;
    gap: 0.8rem;
    padding: 0.85rem clamp(0.85rem, 4vw, 1.4rem);
  }

  .lux-logo .foil-text {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .lux-nav,
  .header-tools,
  .segment-tabs,
  .subcategory-tabs {
    gap: 0.65rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .lux-nav a,
  .header-tools .button,
  .header-tools .icon-button,
  .segment-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .search-pill {
    display: none;
  }

  .lux-hero {
    min-height: auto;
    padding-top: clamp(2.5rem, 9vw, 4rem);
  }

  .lux-hero-art {
    min-height: min(72vw, 25rem);
  }

  .catalogue-hero,
  .cart-panel {
    gap: 1.25rem;
  }

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

  .cart-item {
    align-items: flex-start;
    gap: 0.9rem;
  }

  .cart-item-actions {
    min-width: 7.5rem;
  }

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

  .verify-modal,
  .product-preview-modal,
  .thank-you-modal {
    max-height: calc(100dvh - 1rem);
    overflow: auto;
  }

  .verify-card {
    padding: clamp(1rem, 5vw, 1.8rem);
  }

  .admin-dashboard,
  .admin-login {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .admin-hero {
    gap: 1rem;
  }

  .table-wrap {
    border: 1px solid var(--line);
    border-radius: 0.75rem;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 560px) {
  .storefront-shell .shipping-bar {
    font-size: 0.68rem;
    line-height: 1.45;
    letter-spacing: 0.1rem;
  }

  .lux-header {
    grid-template-columns: 1fr;
  }

  .lux-logo {
    justify-self: start;
  }

  .header-tools {
    justify-self: stretch;
    width: 100%;
  }

  .header-tools .button,
  .header-tools .icon-button {
    min-height: 2.75rem;
    padding: 0.6rem 0.9rem;
  }

  .lux-nav a,
  .segment-tab {
    min-height: 2.65rem;
    display: inline-flex;
    align-items: center;
  }

  .lux-hero-copy {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .lux-hero h1,
  .catalogue-hero h1,
  .center-heading h2,
  .product-head h2,
  .cart-panel h2 {
    overflow-wrap: anywhere;
  }

  .lux-hero-art {
    min-height: 20rem;
    overflow: hidden;
  }

  .storefront-shell .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .collection-card,
  .cart-panel,
  .cart-box,
  .verify-card,
  .thank-you-card,
  .admin-card,
  .admin-hero {
    border-radius: 0.5rem;
  }

  .product-visual {
    min-height: 15rem;
  }

  .cart-item,
  .cart-total,
  .checkout-summary div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .cart-item-actions {
    justify-items: stretch;
    width: 100%;
  }

  .cart-item-actions strong,
  .checkout-summary strong,
  .cart-total strong {
    justify-self: start;
  }

  .remove-cart-item,
  .coupon-row .button,
  #checkout-button,
  #pay-now-button,
  .upi-actions .status-link,
  .order-send-actions .status-link {
    width: 100%;
  }

  .upi-payment-card {
    padding: 1rem;
  }

  .upi-actions,
  .order-send-actions,
  .thank-you-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .checkout-form input,
  .checkout-form textarea,
  .checkout-form select,
  .track-box input,
  .verify-card input,
  .verify-card select,
  .admin-card input,
  .admin-card select {
    min-height: 3.25rem;
    font-size: 1rem;
  }

  .verify-card h2,
  .admin-login-card h1 {
    font-size: clamp(3.2rem, 16vw, 4.6rem);
  }

  .table-wrap {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  table {
    min-width: 46rem;
  }
}

@media (max-width: 380px) {
  .button,
  .add-button,
  .buy-button,
  .icon-button,
  .segment-tab {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    font-size: 0.9rem;
  }

  .lux-logo .foil-text {
    font-size: 2.4rem;
  }

  .lux-hero h1 {
    font-size: 2.8rem;
  }

  .product-visual {
    min-height: 13rem;
  }
}

/* Final responsive hardening for phones, tablets, and narrow iPads. */
.storefront-shell {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.lux-header,
.lux-hero,
.section,
.catalogue-hero,
.products-section,
.collection-section,
.cart-section,
.checkout-section,
.tracking-section,
.saved-section {
  max-width: 100vw;
}

.lux-nav,
.header-tools,
.segment-tabs,
.subcategory-tabs {
  min-width: 0;
}

.collection-card,
.product-card,
.cart-panel,
.saved-product {
  min-width: 0;
}

.collection-card *,
.product-card *,
.cart-panel *,
.saved-product * {
  min-width: 0;
}

.storefront-shell .product-visual,
.collection-art,
.saved-thumb,
.preview-visual {
  background-position: center;
  background-repeat: no-repeat;
}

.storefront-shell .product-visual.has-image,
.saved-thumb.has-image,
.preview-visual.has-image {
  background-size: contain;
}

@media (min-width: 681px) and (max-width: 1180px) {
  .lux-header {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .header-tools {
    justify-content: flex-end;
  }

  .lux-hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .lux-hero-copy {
    padding-bottom: 1.5rem;
  }

  .lux-hero-art {
    min-height: clamp(20rem, 46vw, 28rem);
  }

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

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

@media (max-width: 680px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
  }

  .storefront-shell .shipping-bar {
    position: relative;
    z-index: 2;
    padding: 0.55rem 0.9rem;
    white-space: normal;
  }

  .lux-header {
    position: sticky;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 0.85rem 0.9rem;
  }

  .lux-logo {
    width: fit-content;
    max-width: 9.5rem;
  }

  .lux-logo .foil-text {
    font-size: clamp(2.35rem, 13vw, 3.4rem);
    line-height: 0.9;
  }

  .lux-logo small {
    font-size: 0.68rem;
    letter-spacing: 0.16rem;
  }

  .lux-nav,
  .header-tools,
  .segment-tabs,
  .subcategory-tabs {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
  }

  .lux-nav a,
  .header-tools .button,
  .header-tools .icon-button,
  .segment-tab,
  .subcategory-tabs button {
    scroll-snap-align: start;
    flex: 0 0 auto;
    max-width: 78vw;
  }

  .account-greeting {
    max-width: 9rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lux-hero {
    display: block;
    min-height: auto;
    overflow: hidden;
  }

  .lux-hero-copy {
    position: relative;
    z-index: 3;
    padding: clamp(2.25rem, 10vw, 3.5rem) 1rem 1rem;
  }

  .lux-hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.25rem);
    line-height: 0.98;
  }

  .lux-hero p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.55;
  }

  .ornament-line {
    margin: 1rem 0 1.25rem;
  }

  .ornament-line::before,
  .ornament-line::after {
    width: clamp(2.2rem, 18vw, 4.5rem);
  }

  .lux-hero-art {
    position: relative;
    z-index: 1;
    height: clamp(14rem, 56vw, 21rem);
    min-height: 0;
    margin-top: 0;
    overflow: hidden;
  }

  .temple-silhouette {
    right: 4%;
    bottom: 2.8rem;
    width: clamp(11rem, 56vw, 17rem);
    height: clamp(8rem, 38vw, 13rem);
  }

  .perfume-bottle {
    right: 42%;
    bottom: 3rem;
    width: clamp(3rem, 12vw, 4.4rem);
    height: clamp(6.5rem, 28vw, 10rem);
  }

  .jewellery-bowl {
    right: 8%;
    bottom: 2.8rem;
    width: clamp(7rem, 33vw, 10rem);
    height: clamp(3.8rem, 18vw, 5.6rem);
  }

  .textile-roll {
    right: 26%;
    bottom: 2rem;
    width: clamp(9rem, 46vw, 14rem);
  }

  .diya,
  .flower-cluster {
    display: none;
  }

  .hero-ornament {
    width: 4.5rem;
    height: 4.5rem;
  }

  .lux-benefits article {
    min-height: auto;
    padding: 1rem;
  }

  .center-heading {
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .center-heading h2,
  .product-head h2,
  .newsletter h2 {
    font-size: clamp(2.25rem, 13vw, 3.4rem);
    line-height: 1;
  }

  .collection-cards {
    gap: 1rem;
  }

  .collection-card {
    gap: 0.65rem;
    padding: 0.65rem 0.65rem 1rem;
    border-radius: 0.5rem;
  }

  .collection-art {
    min-height: 0;
    aspect-ratio: 1.35 / 1;
    border-radius: 0.45rem;
  }

  .collection-card strong {
    font-size: clamp(1.6rem, 9vw, 2rem);
  }

  .catalogue-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .catalogue-login-card {
    min-width: 0;
    width: 100%;
  }

  .storefront-shell .product-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .storefront-shell .product-card {
    display: grid;
    gap: 0.75rem;
  }

  .storefront-shell .product-visual {
    min-height: 0;
    aspect-ratio: 1 / 0.9;
    border-radius: 0.45rem;
  }

  .product-tag,
  .product-subtag,
  .product-card h3,
  .product-card p {
    overflow-wrap: anywhere;
  }

  .saved-product {
    grid-template-columns: 5.5rem minmax(0, 1fr);
    align-items: start;
  }

  .saved-product-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .saved-thumb {
    width: 5.5rem;
    min-height: 5.5rem;
  }

  .product-preview-card {
    padding: 0.85rem;
  }

  .preview-visual {
    min-height: 0;
    aspect-ratio: 1 / 0.95;
  }
}

@media (max-width: 420px) {
  .header-tools {
    gap: 0.45rem;
  }

  .header-tools .button,
  .header-tools .icon-button {
    min-width: auto;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    font-size: 0.82rem;
  }

  .lux-nav {
    font-size: 0.78rem;
    letter-spacing: 0.13rem;
  }

  .segment-tabs,
  .subcategory-tabs {
    gap: 0.5rem;
  }

  .segment-tab {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .lux-hero-copy {
    padding-top: 2rem;
  }

  .lux-hero h1 {
    font-size: clamp(2.45rem, 14vw, 3.4rem);
  }

  .lux-hero-art {
    height: 13.5rem;
  }

  .collection-art {
    aspect-ratio: 1.15 / 1;
  }
}

/* Launch mobile/tablet stability layer. Keep this at the end so it wins. */
html,
body {
  overflow-x: hidden;
}

img,
video,
canvas,
svg {
  max-width: 100%;
}

.storefront-shell,
.admin-page {
  overflow-x: clip;
}

.lux-header,
.lux-nav,
.header-tools,
.segment-tabs,
.subcategory-tabs,
.product-grid,
.cart-panel,
.checkout-form,
.table-wrap {
  min-width: 0;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-wrap table {
  min-width: 54rem;
}

.storefront-shell .product-visual,
.collection-art,
.saved-thumb,
.preview-visual {
  background-position: center center;
  background-repeat: no-repeat;
}

.storefront-shell .product-visual.has-image,
.saved-thumb.has-image,
.preview-visual.has-image {
  background-size: contain;
}

@media (max-width: 1180px) {
  .lux-header {
    grid-template-columns: minmax(7rem, auto) minmax(0, 1fr);
    align-items: start;
  }

  .lux-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .header-tools {
    justify-content: flex-end;
  }

  .lux-nav,
  .header-tools,
  .segment-tabs,
  .subcategory-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .lux-nav a,
  .header-tools .button,
  .header-tools .icon-button,
  .account-greeting,
  .segment-tab,
  .subcategory-tabs button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .search-pill {
    max-width: 18rem;
  }
}

@media (min-width: 681px) and (max-width: 1180px) {
  .lux-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .lux-hero-copy {
    padding-bottom: 0.75rem;
  }

  .lux-hero-art {
    height: clamp(18rem, 42vw, 27rem);
    min-height: 0;
  }

  .catalogue-hero {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .lux-header {
    grid-template-columns: 1fr;
    padding: 0.75rem 0.85rem;
  }

  .lux-logo {
    max-width: 8.5rem;
  }

  .lux-nav,
  .header-tools,
  .segment-tabs,
  .subcategory-tabs {
    width: 100%;
    gap: 0.55rem;
  }

  .header-tools {
    justify-content: flex-start;
  }

  .search-pill {
    display: none;
  }

  .account-greeting {
    max-width: 8.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lux-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: 0;
  }

  .lux-hero-copy {
    width: 100%;
    padding: 2rem 1rem 0.75rem;
  }

  .lux-hero h1,
  .catalogue-hero h1,
  .cart-panel h2,
  .saved-section h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .lux-hero-art {
    width: 100%;
    height: clamp(12.5rem, 54vw, 19rem);
    min-height: 0;
    overflow: hidden;
  }

  .temple-silhouette,
  .hero-product,
  .flower-cluster {
    pointer-events: none;
  }

  .storefront-shell .product-grid {
    grid-template-columns: 1fr;
  }

  .storefront-shell .product-card,
  .collection-card {
    width: 100%;
  }

  .storefront-shell .product-visual {
    aspect-ratio: 1 / 0.86;
    min-height: 0;
  }

  .saved-product,
  .order-history-card {
    grid-template-columns: 1fr;
  }

  .saved-thumb {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1.35 / 1;
  }

  .cart-panel {
    grid-template-columns: 1fr;
  }

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

  .upi-qr {
    justify-self: center;
    width: min(100%, 14rem);
  }

  .admin-dashboard,
  .admin-login {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .admin-topbar,
  .admin-hero,
  .internal-head,
  .inline-admin-form {
    grid-template-columns: 1fr;
  }

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

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

  .table-wrap {
    margin-inline: -0.25rem;
    border: 1px solid var(--line);
    border-radius: 0.5rem;
  }
}

@media (max-width: 420px) {
  .lux-nav a,
  .header-tools .button,
  .header-tools .icon-button,
  .segment-tab,
  .subcategory-tabs button {
    max-width: 82vw;
  }

  .lux-hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.25rem);
  }

  .button,
  .add-button,
  .buy-button,
  .status-link {
    min-height: 2.85rem;
  }
}

/* Final header cleanup for DIVYAMOnline catalogue/navigation. */
.storefront-shell .lux-header {
  grid-template-columns: minmax(10rem, 13rem) minmax(0, 1fr) auto;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: 1.15rem clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  overflow: visible;
}

.storefront-shell .lux-logo {
  min-width: 0;
  max-width: 13rem;
  justify-self: start;
  overflow: visible;
}

.storefront-shell .lux-logo img {
  width: clamp(10rem, 13vw, 12.75rem);
  max-width: 100%;
  object-fit: contain;
}

.storefront-shell .lux-nav {
  min-width: 0;
  justify-content: center;
  gap: clamp(1rem, 2.4vw, 2.8rem);
}

.storefront-shell .lux-nav a {
  white-space: nowrap;
}

.storefront-shell .header-tools {
  flex-wrap: nowrap;
  min-width: 0;
}

.storefront-shell .header-tools .button,
.storefront-shell .header-tools .icon-button {
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  white-space: nowrap;
}

.storefront-shell .header-tools .button.outline,
.storefront-shell .header-tools .icon-button {
  border-color: rgba(248, 221, 155, 0.45);
  background: #fff8ea;
  color: var(--maroon);
}

.storefront-shell .header-tools .button.maroon {
  border-color: rgba(248, 221, 155, 0.2);
  color: #fff8ea;
}

@media (max-width: 1180px) {
  .storefront-shell .lux-header {
    grid-template-columns: minmax(9rem, 12rem) minmax(0, 1fr);
  }

  .storefront-shell .lux-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .storefront-shell .header-tools {
    justify-content: flex-end;
    overflow-x: auto;
  }
}

@media (max-width: 680px) {
  .storefront-shell .lux-header {
    grid-template-columns: 1fr;
    padding: 0.85rem;
  }

  .storefront-shell .lux-logo img {
    width: min(11rem, 70vw);
  }

  .storefront-shell .lux-nav,
  .storefront-shell .header-tools {
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
  }
}

/* DIVYAM brand layer */
body:has(.storefront-shell) {
  --maroon: #5b0508;
  --maroon-2: #7b1114;
  --gold: #d89a30;
  --gold-soft: #f8dd9b;
  --peacock: #0e6a62;
  --lotus: #b7445d;
  --cream: #fbf0dc;
  --cream-2: #fff8ea;
  --ink-soft: #1d0e08;
  background:
    radial-gradient(circle at 50% -10%, rgba(248, 221, 155, 0.42), transparent 34rem),
    linear-gradient(135deg, rgba(91, 5, 8, 0.08) 25%, transparent 25%) 0 0 / 2.2rem 2.2rem,
    linear-gradient(225deg, rgba(14, 106, 98, 0.06) 25%, transparent 25%) 0 0 / 2.2rem 2.2rem,
    var(--cream);
}

.shipping-bar {
  background: linear-gradient(90deg, #370305, #7b1114 48%, #370305);
  color: #fff6df;
  letter-spacing: 0.12rem;
}

.lux-header {
  border-bottom: 1px solid rgba(216, 154, 48, 0.34);
  background:
    linear-gradient(90deg, rgba(91, 5, 8, 0.97), rgba(39, 7, 6, 0.96)),
    repeating-linear-gradient(90deg, rgba(248, 221, 155, 0.09) 0 1px, transparent 1px 18px);
}

.lux-logo {
  max-width: 13.5rem;
}

.lux-logo img,
.footer-logo img,
.admin-login-logo,
.admin-brand-logo {
  border: 1px solid rgba(248, 221, 155, 0.38);
  border-radius: 0.35rem;
  background: #4c0306;
  box-shadow: 0 12px 28px rgba(41, 4, 5, 0.22);
}

.lux-nav a,
.header-tools .icon-button,
.header-tools .button {
  color: #fff6df;
}

.lux-nav a:hover,
.header-tools .icon-button:hover,
.header-tools .button:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.lux-hero {
  background:
    linear-gradient(90deg, rgba(251, 240, 220, 0.96), rgba(255, 248, 234, 0.88)),
    repeating-linear-gradient(45deg, rgba(216, 154, 48, 0.16) 0 1px, transparent 1px 18px);
  border-bottom: 1px solid rgba(216, 154, 48, 0.34);
}

.lux-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(91, 5, 8, 0.12), transparent 22%, transparent 78%, rgba(91, 5, 8, 0.12)),
    repeating-linear-gradient(90deg, transparent 0 4.8rem, rgba(216, 154, 48, 0.12) 4.8rem 4.9rem);
}

.lux-hero h1 {
  color: var(--maroon);
  text-shadow: 0 1px 0 #fff4d8, 0 18px 40px rgba(91, 5, 8, 0.14);
}

.eyebrow {
  color: var(--peacock);
}

.button.maroon,
.add-button,
.buy-button,
.status-link {
  background: linear-gradient(135deg, #5b0508, #8a1518);
  color: #fff9e8;
  box-shadow: 0 12px 24px rgba(91, 5, 8, 0.2);
}

.button.outline,
.segment-tab,
.remove-cart-item {
  border-color: rgba(126, 17, 20, 0.32);
}

.lux-benefits article,
.trust-strip article,
.collection-card,
.storefront-shell .product-card,
.storefront-shell .cart-panel,
.catalogue-login-card,
.saved-product {
  border-color: rgba(216, 154, 48, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(249, 232, 197, 0.9)),
    repeating-linear-gradient(135deg, rgba(91, 5, 8, 0.04) 0 1px, transparent 1px 12px);
}

.collection-card::before,
.storefront-shell .product-card::before {
  background: linear-gradient(90deg, var(--maroon), var(--gold), var(--peacock));
}

.temple-silhouette {
  background:
    linear-gradient(180deg, rgba(91, 5, 8, 0.18), rgba(216, 154, 48, 0.08)),
    repeating-linear-gradient(90deg, rgba(91, 5, 8, 0.12) 0 0.35rem, transparent 0.35rem 1.2rem);
  border-color: rgba(216, 154, 48, 0.36);
}

.perfume-bottle {
  background: linear-gradient(160deg, #fff6db, #d89a30 42%, #5b0508 43% 100%);
}

.jewellery-bowl {
  background: radial-gradient(circle at 48% 28%, #fff3bf 0 18%, #d89a30 19% 42%, #7b1114 43% 100%);
}

.textile-roll {
  background:
    repeating-linear-gradient(90deg, rgba(255, 248, 234, 0.7) 0 0.55rem, transparent 0.55rem 1.1rem),
    linear-gradient(135deg, #0e6a62, #b7445d);
}

.diya {
  background: radial-gradient(circle at 50% 24%, #fff1a8 0 11%, #d89a30 12% 28%, #7b1114 29% 100%);
}

.storefront-shell .product-visual {
  border: 1px solid rgba(216, 154, 48, 0.45);
  background-color: #fff5df;
}

.storefront-shell .product-tag,
.storefront-shell .product-subtag {
  color: var(--peacock);
}

.footer-trust,
.lux-footer {
  background:
    linear-gradient(135deg, #3d0305, #6b0b0e),
    repeating-linear-gradient(45deg, rgba(248, 221, 155, 0.12) 0 1px, transparent 1px 16px);
}

.whatsapp-float {
  background: linear-gradient(135deg, var(--peacock), #0b4d48);
  color: #fff;
}
