/* ==========================================================================
   DRB SWEETS — "Jaisalmer Haveli" Storefront Design System
   The Golden City rendered as editorial luxury D2C.
   Loaded on every storefront page (layouts/app.blade.php).
   Fonts (Cormorant Garamond + Manrope) linked in the layout <head>.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand palette */
  --maroon: #5A1020;
  --burgundy: #7A1E2E;
  --maroon-ink: #3A0A15;
  --gold: #C9A45C;
  --gold-deep: #A57C34;
  --gold-soft: #E4CD9A;
  --ivory: #F8F3E8;
  --cream: #FBF7EF;
  --sand: #E7D8BC;
  --chocolate: #241717;
  --ink: #2B211B;
  --muted: #8A7B6B;
  --line: #E6D9C2;

  /* Signature gradients */
  --foil: linear-gradient(135deg, #E4CD9A 0%, #C9A45C 45%, #A57C34 100%);
  --maroon-depth: linear-gradient(160deg, #7A1E2E 0%, #5A1020 58%, #3A0A15 100%);

  /* Type */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-ui: 'Manrope', system-ui, -apple-system, sans-serif;

  /* Structure */
  --max: 1240px;
  --wide: 1420px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --radius: 3px;
  --shadow-sm: 0 1px 2px rgba(36, 23, 23, .05), 0 6px 20px -8px rgba(36, 23, 23, .10);
  --shadow-lg: 0 30px 70px -28px rgba(58, 10, 21, .45);
  --header-h: 84px;

  /* Jali lattice (gold, faint) */
  --jali: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23C9A45C' stroke-width='1'%3E%3Cpath d='M24 0 L48 24 L24 48 L0 24 Z'/%3E%3Cpath d='M24 12 L36 24 L24 36 L12 24 Z'/%3E%3C/g%3E%3Ccircle cx='24' cy='24' r='2' fill='%23C9A45C'/%3E%3C/svg%3E");
}

/* ---------- Base / reset ---------- */
* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  font-family: inherit;
}

::selection {
  background: var(--maroon);
  color: var(--ivory);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
}

/* Native scrollbar (webkit) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--sand);
  border-radius: 20px;
  border: 2px solid var(--cream);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-deep);
}

/* ---------- Layout primitives ---------- */
.drb-container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.drb-container--wide {
  max-width: var(--wide);
}

.drb-container--narrow {
  max-width: 860px;
}

.drb-section {
  padding-block: clamp(4.5rem, 10vw, 9rem);
  position: relative;
}

.drb-section--tight {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.drb-section--cream {
  background: var(--cream);
}

.drb-section--ivory {
  background: var(--ivory);
}

.drb-section--sand {
  background: linear-gradient(180deg, var(--ivory), var(--sand));
}

.drb-section--dark {
  background: var(--maroon-depth);
  color: var(--ivory);
  overflow: hidden;
}

.drb-section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--jali);
  background-size: 46px 46px;
  opacity: .05;
  pointer-events: none;
}

.drb-section--dark>.drb-container {
  position: relative;
  z-index: 1;
}

/* ---------- Editorial type helpers ---------- */
.drb-eyebrow {
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: .8em;
  margin: 0 0 1.4rem;
}

.drb-section--dark .drb-eyebrow {
  color: var(--gold-soft);
}

.drb-eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: currentColor;
  opacity: .6;
}

.drb-eyebrow--center {
  justify-content: center;
}

.drb-eyebrow--center::after {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: currentColor;
  opacity: .6;
}

.drb-display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.9rem, 7.5vw, 6rem);
  line-height: .98;
  letter-spacing: -.01em;
}

.drb-h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: -.01em;
  font-variant-numeric: lining-nums;
  color: var(--maroon);
}

/* Story heading: keep "A legacy of pure taste from last 10 Generations." to 2 lines */
.drb-h2--story {
  font-size: clamp(1.9rem, 4.3vw, 3rem);
  text-wrap: balance;
}

.drb-section--dark .drb-h2 {
  color: var(--ivory);
}

.drb-h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.1;
}

.drb-italic {
  font-style: italic;
  font-weight: 500;
}

.drb-gold-text {
  color: var(--gold-deep);
}

.drb-section--dark .drb-gold-text {
  color: var(--gold-soft);
}

.drb-lead {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
  color: var(--muted);
  max-width: 54ch;
}

.drb-section--dark .drb-lead {
  color: rgba(248, 243, 232, .78);
}

/* Divider: centered lotus-diamond flanked by gold hairlines */
.drb-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin: 0 auto;
}

.drb-divider::before,
.drb-divider::after {
  content: "";
  height: 1px;
  width: min(28vw, 220px);
  background: linear-gradient(90deg, transparent, var(--gold));
}

.drb-divider::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.drb-divider__mark {
  color: var(--gold-deep);
  font-size: 1.1rem;
  line-height: 1;
}

.drb-rule {
  height: 1px;
  background: var(--line);
  border: 0;
}

/* ---------- Signature: jharokha arch media ---------- */
.drb-arch {
  position: relative;
  border-radius: 47% 47% var(--radius) var(--radius) / 30% 30% var(--radius) var(--radius);
  overflow: hidden;
  background: var(--sand);
}

.drb-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* framed variant: offset gold hairline echoing the arch */
.drb-arch--framed {
  box-shadow: inset 0 0 0 1px rgba(201, 164, 92, .55);
}

.drb-arch--framed::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 164, 92, .45);
  border-radius: 46% 46% 2px 2px / 30% 30% 2px 2px;
  pointer-events: none;
  z-index: 2;
}

/* Product/category monogram placeholder (no photo available) */
.drb-media__ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(228, 205, 154, .28), transparent 60%),
    var(--maroon-depth);
  color: var(--gold-soft);
}

.drb-media__ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--jali);
  background-size: 42px 42px;
  opacity: .12;
}

.drb-media__ph span {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--gold-soft);
  text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}

.drb-media__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Buttons ---------- */
.drb-btn {
  --btn-bg: var(--burgundy);
  --btn-fg: var(--ivory);
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7em;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 1.1em 2.3em;
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.drb-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(58, 10, 21, .55);
}

.drb-btn:active {
  transform: translateY(0);
}

.drb-btn:disabled,
.drb-btn.is-disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.drb-btn--primary {
  --btn-bg: var(--burgundy);
  --btn-fg: var(--ivory);
}

.drb-btn--primary:hover {
  background: var(--maroon);
}

.drb-btn--gold {
  --btn-bg: transparent;
  --btn-fg: var(--maroon-ink);
  background: var(--foil);
}

.drb-btn--gold:hover {
  filter: brightness(1.06) saturate(1.05);
}

.drb-btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--maroon);
  --btn-bd: rgba(90, 16, 32, .35);
}

.drb-btn--outline:hover {
  background: var(--maroon);
  color: var(--ivory);
  border-color: var(--maroon);
}

.drb-btn--light {
  --btn-bg: transparent;
  --btn-fg: var(--ivory);
  --btn-bd: rgba(228, 205, 154, .5);
}

.drb-btn--light:hover {
  background: var(--foil);
  color: var(--maroon-ink);
  border-color: transparent;
}

.drb-btn--block {
  display: flex;
  width: 100%;
}

.drb-btn--lg {
  padding: 1.25em 2.8em;
  font-size: .78rem;
}

.drb-btn--sm {
  padding: .8em 1.5em;
  font-size: .68rem;
  letter-spacing: .14em;
}

/* text link with animated gold underline */
.drb-link {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--maroon);
  padding-bottom: .35em;
  position: relative;
}

.drb-section--dark .drb-link {
  color: var(--gold-soft);
}

.drb-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform: scaleX(.4);
  transform-origin: left;
  opacity: .5;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}

.drb-link:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.drb-link i {
  transition: transform .4s var(--ease);
}

.drb-link:hover i {
  transform: translateX(4px);
}

/* ---------- Header ---------- */
.drb-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background .45s var(--ease), border-color .45s var(--ease), color .45s var(--ease), box-shadow .45s var(--ease);
}

.drb-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid transparent;
}

/* solid default */
.drb-header {
  background: rgba(251, 247, 239, .9);
  backdrop-filter: saturate(1.4) blur(14px);
  color: var(--ink);
}

.drb-header .drb-header__inner {
  border-bottom-color: var(--line);
}

/* transparent over hero */
body.drb-has-hero .drb-header.is-top {
  background: transparent;
  backdrop-filter: none;
  color: var(--ivory);
}

body.drb-has-hero .drb-header.is-top .drb-header__inner {
  border-bottom-color: transparent;
}

.drb-header.is-solid {
  box-shadow: 0 8px 30px -18px rgba(36, 23, 23, .4);
}

.drb-logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  gap: .25rem;
}

.drb-logo__mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: .04em;
}

.drb-logo__mark b {
  color: var(--gold-deep);
  font-weight: 700;
}

body.drb-has-hero .drb-header.is-top .drb-logo__mark b {
  color: var(--gold-soft);
}

.drb-logo__sub {
  font-family: var(--font-ui);
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
  opacity: .7;
}

.drb-nav {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.drb-nav a {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  position: relative;
  padding: .4rem 0;
  opacity: .85;
  transition: opacity .3s var(--ease);
}

.drb-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold-deep);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .4s var(--ease);
}

body.drb-has-hero .drb-header.is-top .drb-nav a::after {
  background: var(--gold-soft);
}

.drb-nav a:hover {
  opacity: 1;
}

.drb-nav a:hover::after {
  transform: scaleX(1);
}

.drb-header__actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.drb-iconbtn {
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
  font-size: 1.05rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem;
  transition: color .3s var(--ease), transform .3s var(--ease);
}

.drb-iconbtn:hover {
  color: var(--gold-deep);
}

body.drb-has-hero .drb-header.is-top .drb-iconbtn:hover {
  color: var(--gold-soft);
}

.drb-iconbtn__label {
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--foil);
  color: var(--maroon-ink);
  font-family: var(--font-ui);
  font-size: .64rem;
  font-weight: 800;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(58, 10, 21, .35);
}

.drb-cartbtn.pulse {
  animation: cartPulse .5s var(--ease);
}

@keyframes cartPulse {

  0%,
  100% {
    transform: scale(1)
  }

  40% {
    transform: scale(1.18)
  }
}

.drb-burger {
  display: none;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font-size: 1.3rem;
  padding: .4rem;
}

/* Mobile menu panel */
.drb-mobilemenu {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--maroon-depth);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 6vw, 3rem);
}

.drb-mobilemenu::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--jali);
  background-size: 46px 46px;
  opacity: .06;
}

.drb-mobilemenu__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.drb-mobilemenu__close {
  background: none;
  border: 0;
  color: var(--ivory);
  font-size: 1.6rem;
  cursor: pointer;
}

.drb-mobilemenu__links {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.drb-mobilemenu__links a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(228, 205, 154, .15);
}

.drb-mobilemenu__links a:hover {
  color: var(--gold-soft);
}

.drb-mobilemenu__foot {
  position: relative;
  margin-top: auto;
  padding-top: 2rem;
  color: rgba(248, 243, 232, .7);
  font-size: .85rem;
}

/* ---------- Hero ---------- */
.drb-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--ivory);
  overflow: hidden;
}

.drb-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.drb-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drb-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(58, 10, 21, .86) 0%, rgba(58, 10, 21, .55) 45%, rgba(58, 10, 21, .25) 100%),
    linear-gradient(180deg, rgba(36, 23, 23, .35), rgba(36, 23, 23, .55));
}

.drb-hero__jali {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: var(--jali);
  background-size: 54px 54px;
  opacity: .07;
}

.drb-hero__inner {
  position: relative;
  z-index: 2;
  padding-block: calc(var(--header-h) + 3rem) 5rem;
  max-width: 52rem;
}

.drb-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 8.5vw, 6.5rem);
  line-height: .96;
  letter-spacing: -.015em;
  margin: 0 0 1.8rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, .4);
}

.drb-hero__title em {
  font-style: italic;
  color: var(--gold-soft);
}

.drb-hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  color: rgba(248, 243, 232, .85);
  max-width: 40ch;
  margin: 0 0 2.6rem;
}

.drb-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.drb-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 2;
  transform: translateX(-50%);
  color: var(--gold-soft);
  font-family: var(--font-ui);
  font-size: .64rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  opacity: .85;
}

.drb-hero__scroll span {
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--gold-soft), transparent);
  animation: scrollLine 2.4s var(--ease) infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }

  45% {
    transform: scaleY(1);
    transform-origin: top
  }

  55% {
    transform: scaleY(1);
    transform-origin: bottom
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}

/* ---------- Two-column editorial (story / craft / pickup / store) ---------- */
.drb-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}

.drb-split--reverse .drb-split__media {
  order: 2;
}

.drb-split__media {
  position: relative;
}

.drb-split__media .drb-arch {
  aspect-ratio: 4 / 5;
}

.drb-split__body {
  max-width: 34rem;
}

.drb-split__media--tag::before {
  content: attr(data-tag);
  position: absolute;
  z-index: 3;
  left: -1rem;
  top: 2rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-ui);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ---------- Section heading block ---------- */
.drb-heading {
  max-width: 40rem;
}

.drb-heading--center {
  margin-inline: auto;
  text-align: center;
}

.drb-heading__lead {
  margin-top: 1.4rem;
}

.drb-heading--center .drb-heading__lead {
  margin-inline: auto;
}

.drb-sectionhead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ---------- Product grid + card ---------- */
.drb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.6rem);
}

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

.drb-product {
  display: flex;
  flex-direction: column;
  position: relative;
}

.drb-product__media {
  position: relative;
  aspect-ratio: 4 / 5;
  margin-bottom: 1.4rem;
}

.drb-product__media .drb-arch {
  position: absolute;
  inset: 0;
  transition: box-shadow .5s var(--ease);
}

.drb-product__media .drb-media__img {
  transition: transform 1.1s var(--ease-out);
}

.drb-product:hover .drb-media__img {
  transform: scale(1.07);
}

.drb-product:hover .drb-arch--framed {
  box-shadow: inset 0 0 0 1px var(--gold);
}

.drb-product__badge {
  position: absolute;
  z-index: 3;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-ui);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .5em .9em;
  border-radius: 2px;
  color: var(--maroon-ink);
  background: var(--foil);
  box-shadow: 0 4px 14px -4px rgba(58, 10, 21, .5);
}

.drb-product__badge--green {
  background: #3f6f4b;
  color: var(--ivory);
}

.drb-product__add {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--maroon);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  opacity: 0;
  transform: translateY(8px) scale(.9);
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease);
  box-shadow: var(--shadow-sm);
}

.drb-product:hover .drb-product__add {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.drb-product__add:hover {
  background: var(--foil);
}

.drb-product__cat {
  font-family: var(--font-ui);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .5rem;
}

.drb-product__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  line-height: 1.05;
  color: var(--ink);
  transition: color .3s var(--ease);
}

.drb-product:hover .drb-product__name {
  color: var(--maroon);
}

.drb-product__hindi {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: .1rem;
}

.drb-product__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .9rem;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
}

.drb-product__price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
}

.drb-product__price small {
  font-family: var(--font-ui);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}

.drb-product__weights {
  font-family: var(--font-ui);
  font-size: .68rem;
  letter-spacing: .1em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ---------- Category cards ---------- */
.drb-catgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.8rem);
}

.drb-cat {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
  background:
    radial-gradient(ellipse at 50% 20%, rgba(201,164,92,0.2), transparent 50%),
    linear-gradient(165deg, #4A0F1A 0%, #5A1020 48%, #761B2B 100%);
  box-shadow: 0 10px 28px rgba(90, 16, 32, 0.12);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.drb-cat--text {
  aspect-ratio: auto;
  min-height: 140px;
  align-items: center;
  padding: 1.35rem 1.25rem;
}

.drb-cat--text .drb-cat__body {
  padding: 0;
  padding-right: 2.5rem;
}

.drb-cat--text .drb-cat__arrow {
  top: 50%;
  transform: translateY(-50%);
  right: 1.1rem;
}

.drb-cat--text:hover .drb-cat__arrow {
  transform: translateY(-50%);
}

.drb-cat--text::after {
  background: linear-gradient(135deg, rgba(90, 16, 32, .2) 0%, transparent 55%);
}

.drb-cat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(90, 16, 32, 0.18);
}

.drb-cat__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .9s var(--ease-out);
}

.drb-cat:hover .drb-cat__img {
  transform: scale(1.06);
}

.drb-cat__initial {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 6.5rem);
  font-weight: 600;
  color: rgba(232, 213, 168, 0.22);
  line-height: 1;
  pointer-events: none;
}

.drb-cat::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: var(--jali);
  background-size: 44px 44px;
  opacity: .1;
  transition: opacity .5s var(--ease);
}

.drb-cat::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(90, 16, 32, .15) 0%, transparent 34%, rgba(90, 16, 32, .45) 58%, rgba(36, 12, 18, .9) 100%);
}

.drb-cat__body {
  position: relative;
  z-index: 2;
  padding: 1.6rem;
  width: 100%;
}

.drb-cat__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,.25);
  margin: 0;
}

.drb-cat__meta {
  font-family: var(--font-ui);
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: .35rem;
}

.drb-cat__arrow {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(228, 205, 154, .4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}

.drb-cat:hover::before {
  opacity: .2;
}

.drb-cat:hover .drb-cat__arrow {
  background: var(--foil);
  color: var(--maroon-ink);
  border-color: transparent;
}

/* ---------- Steps (pickup experience) ---------- */
.drb-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  counter-reset: step;
}

.drb-step {
  position: relative;
  padding-top: 2.6rem;
}

.drb-step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold-deep);
  opacity: .55;
}

.drb-section--dark .drb-step::before {
  color: var(--gold-soft);
}

.drb-step__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.drb-step__text {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.65;
}

.drb-section--dark .drb-step__text {
  color: rgba(248, 243, 232, .72);
}

.drb-step__line {
  position: absolute;
  top: 1.1rem;
  left: 3.4rem;
  right: -1.2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: .4;
}

.drb-step:last-child .drb-step__line {
  display: none;
}

/* ---------- Craft pillars ---------- */
.drb-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.1rem, 2.5vw, 1.75rem);
}
.drb-pillar {
  text-align: center;
  padding: clamp(1.6rem, 3vw, 2.1rem) clamp(1.2rem, 2.5vw, 1.75rem);
  border: 1px solid rgba(228, 205, 154, 0.28);
  background: rgba(255, 252, 247, 0.04);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color .35s var(--ease), background .35s var(--ease), transform .35s var(--ease);
}
.drb-pillar:hover {
  border-color: rgba(228, 205, 154, 0.5);
  background: rgba(255, 252, 247, 0.07);
  transform: translateY(-3px);
}
.drb-section--dark .drb-pillar {
  border-top-color: rgba(228,205,154,.28);
}
.drb-pillar__icon {
  color: var(--gold-deep);
  font-size: 1.45rem;
  margin-bottom: 1rem;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(228, 205, 154, 0.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.drb-section--dark .drb-pillar__icon { color: var(--gold-soft); }

.drb-pillar__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 .65rem;
}

.drb-pillar__text {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  max-width: 28ch;
}

.drb-section--dark .drb-pillar__text {
  color: rgba(248, 243, 232, .72);
}

/* ---------- Seasonal / CTA banner ---------- */
.drb-cta {
  position: relative;
  text-align: center;
  color: var(--ivory);
  overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(3.5rem, 9vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--maroon-depth);
}

.drb-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--jali);
  background-size: 50px 50px;
  opacity: .07;
}

.drb-cta>* {
  position: relative;
  z-index: 1;
}

/* ---------- Store / location ---------- */
.drb-storecard {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 3rem);
}

.drb-store-row {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.drb-store-row:last-child {
  border-bottom: 0;
}

.drb-store-row i {
  color: var(--gold-deep);
  font-size: 1.05rem;
  margin-top: .2rem;
  width: 1.4rem;
}

.drb-store-row__label {
  font-family: var(--font-ui);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

.drb-store-row__value {
  font-size: 1.02rem;
  color: var(--ink);
}

/* ---------- Footer ---------- */
.drb-footer {
  position: relative;
  background: var(--chocolate);
  color: rgba(248, 243, 232, .75);
  overflow: hidden;
}

.drb-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--jali);
  background-size: 48px 48px;
  opacity: .04;
}

.drb-footer__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(3.5rem, 7vw, 6rem) 2rem;
}

.drb-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(228, 205, 154, .15);
}

.drb-footer__brand .drb-logo__mark {
  color: var(--ivory);
  font-size: 2rem;
}

.drb-footer__brand .drb-logo__mark b {
  color: var(--gold-soft);
}

.drb-footer__tag {
  margin-top: 1.2rem;
  max-width: 30ch;
  line-height: 1.7;
  font-size: .92rem;
}

.drb-footcol h4 {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.3rem;
}

.drb-footcol a,
.drb-footcol p {
  display: block;
  font-size: .92rem;
  color: rgba(248, 243, 232, .72);
  padding: .35rem 0;
  transition: color .3s var(--ease);
  margin: 0;
}

.drb-footcol a:hover {
  color: var(--gold-soft);
}

.drb-footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  font-size: .8rem;
  letter-spacing: .04em;
}

.drb-footer__social {
  display: flex;
  gap: .8rem;
}

.drb-footer__social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(228, 205, 154, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  transition: background .3s var(--ease), color .3s var(--ease);
}

.drb-footer__social a:hover {
  background: var(--foil);
  color: var(--maroon-ink);
  border-color: transparent;
}

/* ---------- Filter bar (shop) ---------- */
.drb-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.drb-field {
  position: relative;
}

.drb-input,
.drb-select {
  width: 100%;
  font-family: var(--font-ui);
  font-size: .92rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .95rem 1.1rem;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  appearance: none;
}

.drb-input::placeholder {
  color: var(--muted);
}

.drb-input:focus,
.drb-select:focus {
  outline: 0;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(201, 164, 92, .16);
  background: #fff;
}

.drb-field--search .drb-input {
  padding-left: 2.9rem;
}

.drb-field--search i {
  position: absolute;
  left: 1.05rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.drb-suggest {
  position: relative;
}

.drb-suggest__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + .45rem);
  z-index: 50;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md, 0 12px 36px rgba(36, 23, 23, .12));
  max-height: min(70vh, 420px);
  overflow-y: auto;
  padding: .4rem 0;
}

.drb-suggest__label {
  padding: .55rem 1rem .25rem;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.drb-suggest__item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .7rem 1rem;
  text-decoration: none;
  color: inherit;
  transition: background .2s var(--ease, ease);
}

.drb-suggest__item:hover,
.drb-suggest__item.is-active {
  background: rgba(90, 16, 32, .06);
}

.drb-suggest__initial {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--maroon, #5A1020);
  color: var(--ivory, #F8F3E8);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.drb-suggest__initial i {
  position: static;
  transform: none;
  color: inherit;
  font-size: .75rem;
  pointer-events: auto;
}

.drb-suggest__meta {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  min-width: 0;
}

.drb-suggest__name {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.drb-suggest__sub {
  font-size: .8rem;
  color: var(--muted);
}

.drb-suggest__empty {
  padding: 1rem;
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
}

.drb-suggest__all {
  display: block;
  padding: .85rem 1rem;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  color: var(--maroon);
  text-decoration: none;
}

.drb-suggest__all:hover {
  background: rgba(90, 16, 32, .04);
}

.drb-field--select::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-deep);
  pointer-events: none;
  font-size: .8rem;
}

.drb-chip {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .6rem 1.1rem;
  border-radius: 40px;
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--muted);
  transition: all .3s var(--ease);
}

.drb-chip:hover {
  border-color: var(--gold-deep);
  color: var(--ink);
}

.drb-chip input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.drb-chip:has(input:checked) {
  background: var(--maroon);
  color: var(--ivory);
  border-color: var(--maroon);
}

/* ---------- Badges ---------- */
.drb-badge {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-family: var(--font-ui);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .45em .8em;
  border-radius: 2px;
}

.drb-badge--gold {
  background: var(--foil);
  color: var(--maroon-ink);
}

.drb-badge--maroon {
  background: rgba(90, 16, 32, .1);
  color: var(--maroon);
}

.drb-badge--green {
  background: rgba(63, 111, 75, .14);
  color: #3f6f4b;
}

.drb-badge--muted {
  background: rgba(138, 123, 107, .14);
  color: var(--muted);
}

/* ---------- Breadcrumb ---------- */
.drb-crumb {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-ui);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.drb-crumb a:hover {
  color: var(--maroon);
}

.drb-crumb__sep {
  opacity: .5;
}

.drb-crumb .is-current {
  color: var(--ink);
}

/* ---------- PDP ---------- */
.drb-pdp {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.drb-pdp__media {
  position: relative;
}

.drb-pdp__media .drb-arch {
  aspect-ratio: 4 / 5;
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.drb-pdp__badge {
  position: absolute;
  z-index: 3;
  top: 1.4rem;
  left: 1.4rem;
}

.drb-pdp__body {
  padding-top: 1rem;
}

.drb-pdp__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--ink);
  margin: .6rem 0 .2rem;
}

.drb-pdp__hindi {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--muted);
}

.drb-pdp__desc {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 1.6rem 0;
  max-width: 44ch;
}

.drb-pdp__price {
  display: flex;
  align-items: baseline;
  gap: .7rem;
  margin: 1.6rem 0;
}

.drb-pdp__price b {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.6rem;
  color: var(--maroon);
  line-height: 1;
}

.drb-pdp__price span {
  font-family: var(--font-ui);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.drb-pdp__label {
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1rem;
  display: block;
}

/* variant cards */
.drb-variants {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.drb-variant {
  min-width: 6.2rem;
  text-align: center;
  cursor: pointer;
  padding: .9rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  transition: all .3s var(--ease);
  position: relative;
}

.drb-variant:hover {
  border-color: var(--gold-deep);
}

.drb-variant__name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  color: var(--ink);
}

.drb-variant__price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: .2rem;
}

.drb-variant.is-selected {
  border-color: var(--maroon);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--maroon);
}

.drb-variant.is-selected .drb-variant__price {
  color: var(--maroon);
}

.drb-variant.is-disabled {
  opacity: .45;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* qty stepper */
.drb-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  height: 54px;
  overflow: hidden;
}

.drb-stepper button {
  width: 46px;
  height: 100%;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--muted);
  font-size: 1.2rem;
  transition: color .2s var(--ease), background .2s var(--ease);
}

.drb-stepper button:hover {
  color: var(--maroon);
  background: rgba(90, 16, 32, .05);
}

.drb-stepper input {
  width: 46px;
  height: 100%;
  text-align: center;
  border: 0;
  background: transparent;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}

.drb-stepper input::-webkit-outer-spin-button,
.drb-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.drb-pdp__actions {
  display: flex;
  gap: 1rem;
  margin: 1.8rem 0;
}

.drb-pdp__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.drb-pdp__metaitem {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}

.drb-pdp__metaitem i {
  color: var(--gold-deep);
  font-size: 1.1rem;
  margin-top: .15rem;
}

.drb-pdp__metaitem b {
  font-family: var(--font-ui);
  font-size: .82rem;
  color: var(--ink);
  display: block;
}

.drb-pdp__metaitem span {
  font-size: .78rem;
  color: var(--muted);
}

.drb-unavail {
  padding: 1rem 1.2rem;
  background: rgba(138, 123, 107, .1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 600;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}

/* ---------- Cart drawer ---------- */
.drb-cart__overlay {
  position: fixed;
  inset: 0;
  background: rgba(36, 23, 23, .55);
  z-index: 1000;
  backdrop-filter: blur(2px);
}

.drb-cart {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 440px;
  max-width: 100vw;
  background: var(--cream);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px -30px rgba(58, 10, 21, .6);
}

.drb-cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 1.8rem;
  border-bottom: 1px solid var(--line);
}

.drb-cart__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--maroon);
}

.drb-cart__title small {
  display: block;
  font-family: var(--font-ui);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.drb-cart__close {
  background: none;
  border: 0;
  font-size: 1.3rem;
  color: var(--muted);
  cursor: pointer;
  transition: color .3s var(--ease);
}

.drb-cart__close:hover {
  color: var(--maroon);
}

.drb-cart__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.4rem 1.8rem;
}

.drb-cart-item {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.drb-cart-item__media {
  width: 76px;
  height: 92px;
  flex-shrink: 0;
  border-radius: 40% 40% 2px 2px / 24% 24% 2px 2px;
  overflow: hidden;
  background: var(--sand);
  position: relative;
}

.drb-cart-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drb-cart-item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.drb-cart-item__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}

.drb-cart-item__variant {
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .04em;
  margin-top: .1rem;
}

.drb-cart-item__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: .7rem;
}

.drb-cart-item__price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--maroon);
}

.drb-cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--ivory);
}

.drb-cart-qty button {
  width: 30px;
  height: 30px;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--muted);
  font-size: .95rem;
  transition: color .2s var(--ease);
}

.drb-cart-qty button:hover {
  color: var(--maroon);
}

.drb-cart-qty span {
  min-width: 24px;
  text-align: center;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .85rem;
}

.drb-cart-item__remove {
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s var(--ease);
}

.drb-cart-item__remove:hover {
  color: var(--maroon);
}

.drb-cart__empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--muted);
}

.drb-cart__empty i {
  font-size: 2.6rem;
  color: var(--sand);
  margin-bottom: 1rem;
}

.drb-cart__empty h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: .4rem;
}

.drb-cart__foot {
  padding: 1.5rem 1.8rem;
  border-top: 1px solid var(--line);
  background: var(--ivory);
}

.drb-cart__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .5rem;
}

.drb-cart__row b {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--maroon);
}

.drb-cart__note {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .74rem;
  color: var(--muted);
  margin: .8rem 0 1.2rem;
}

.drb-cart__note i {
  color: var(--gold-deep);
}

/* ---------- Checkout ---------- */
.drb-checkout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.drb-stepbar {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.drb-stepbar__item {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--muted);
}

.drb-stepbar__num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: .78rem;
  background: var(--ivory);
}

.drb-stepbar__label {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.drb-stepbar__item.is-active {
  color: var(--maroon);
}

.drb-stepbar__item.is-active .drb-stepbar__num {
  background: var(--maroon);
  color: var(--ivory);
  border-color: var(--maroon);
}

.drb-stepbar__item.is-done .drb-stepbar__num {
  background: var(--foil);
  color: var(--maroon-ink);
  border-color: transparent;
}

.drb-stepbar__sep {
  width: 1.6rem;
  height: 1px;
  background: var(--line);
}

.drb-panel {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1.4rem;
  position: relative;
}

.drb-panel__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.drb-panel__num {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 800;
}

.drb-panel__num.is-ok {
  background: #3f6f4b;
}

.drb-panel__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
}

.drb-otp {
  width: 100%;
  text-align: center;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: .6em;
  padding: 1rem;
  text-indent: .6em;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--maroon);
}

.drb-otp:focus {
  outline: 0;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(201, 164, 92, .16);
}

.drb-phone {
  display: flex;
}

.drb-phone__cc {
  display: inline-flex;
  align-items: center;
  padding: 0 1.1rem;
  background: var(--sand);
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
  font-weight: 700;
  color: var(--maroon-ink);
}

.drb-phone .drb-input {
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* pickup slots */
.drb-slotgroup {
  margin-bottom: 1.6rem;
}

.drb-slotgroup__label {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: .9rem;
}

.drb-slotgroup__label i {
  color: var(--gold-deep);
}

.drb-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
}

.drb-slot {
  cursor: pointer;
  text-align: center;
  padding: .95rem .6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: all .25s var(--ease);
}

.drb-slot:hover {
  border-color: var(--gold-deep);
  transform: translateY(-2px);
}

.drb-slot__time {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink);
}

.drb-slot__to {
  font-size: .68rem;
  color: var(--muted);
  margin-top: .15rem;
}

.drb-slot.is-selected {
  border-color: var(--maroon);
  background: var(--cream);
  box-shadow: inset 0 0 0 1px var(--maroon);
}

.drb-slot.is-selected .drb-slot__time {
  color: var(--maroon);
}

/* order summary */
.drb-summary {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.drb-summary__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 1.4rem;
}

.drb-summary__items {
  max-height: 16rem;
  overflow-y: auto;
  margin-bottom: 1.2rem;
}

.drb-summary__item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
}

.drb-summary__item h5 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .88rem;
  color: var(--ink);
  margin: 0;
}

.drb-summary__item p {
  font-size: .74rem;
  color: var(--muted);
  margin: .15rem 0 0;
}

.drb-summary__item b {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.drb-summary__line {
  display: flex;
  justify-content: space-between;
  padding: .45rem 0;
  color: var(--muted);
  font-size: .92rem;
}

.drb-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1rem;
  margin-top: .6rem;
  border-top: 1px solid var(--line);
}

.drb-summary__total span {
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .82rem;
}

.drb-summary__total b {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--maroon);
}

/* ---------- Confirmation + timeline ---------- */
.drb-confirm {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.drb-seal {
  width: 108px;
  height: 108px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: var(--foil);
  color: var(--maroon-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  position: relative;
  box-shadow: 0 20px 50px -20px rgba(165, 124, 52, .7);
}

.drb-seal::before,
.drb-seal::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0;
}

.drb-seal.celebrate::before {
  animation: sealRing 1.6s var(--ease) .1s forwards;
}

.drb-seal.celebrate::after {
  animation: sealRing 1.6s var(--ease) .35s forwards;
}

@keyframes sealRing {
  0% {
    opacity: .8;
    transform: scale(.85)
  }

  100% {
    opacity: 0;
    transform: scale(1.5)
  }
}

.drb-orderbox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  text-align: left;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  margin: 2rem 0;
}

.drb-orderbox__k {
  font-family: var(--font-ui);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

.drb-orderbox__v {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: .2rem;
}

.drb-orderbox__v.maroon {
  color: var(--maroon);
}

.drb-timeline {
  text-align: left;
  margin: 2rem 0;
  padding-left: .5rem;
}

.drb-tl {
  position: relative;
  display: flex;
  gap: 1.2rem;
  padding-bottom: 1.8rem;
}

.drb-tl:last-child {
  padding-bottom: 0;
}

.drb-tl__dot {
  position: relative;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--cream);
  flex-shrink: 0;
  margin-top: .2rem;
}

.drb-tl::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 1.2rem;
  bottom: -.4rem;
  width: 2px;
  background: var(--line);
}

.drb-tl:last-child::before {
  display: none;
}

.drb-tl.is-done .drb-tl__dot {
  background: var(--gold);
  border-color: var(--gold-deep);
}

.drb-tl.is-done::before {
  background: var(--gold);
}

.drb-tl.is-current .drb-tl__dot {
  background: var(--maroon);
  border-color: var(--maroon);
  box-shadow: 0 0 0 5px rgba(90, 16, 32, .15);
}

.drb-tl__label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.drb-tl.is-done .drb-tl__label,
.drb-tl.is-current .drb-tl__label {
  color: var(--ink);
}

.drb-tl__time {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .15rem;
}

/* ---------- Account / orders ---------- */
.drb-order {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.drb-order__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.3rem 1.6rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--cream), var(--ivory));
}

.drb-order__num {
  font-family: var(--font-ui);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.drb-order__date {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
}

.drb-order__body {
  padding: 1.3rem 1.6rem;
}

.drb-order__items {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  color: var(--muted);
  font-size: .92rem;
}

.drb-order__items li {
  padding: .2rem 0;
}

.drb-order__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.drb-order__total {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--maroon);
}

.drb-order__actions {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.drb-btn--danger {
  color: #8B1E1E;
  border-color: rgba(139, 30, 30, .35);
}

.drb-btn--danger:hover {
  background: rgba(139, 30, 30, .08);
  border-color: #8B1E1E;
  color: #8B1E1E;
}

.drb-flash {
  padding: .9rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-size: .92rem;
  font-weight: 500;
}

.drb-flash--ok {
  background: rgba(46, 125, 50, .08);
  border-color: rgba(46, 125, 50, .25);
  color: #1B5E20;
}

.drb-flash--err {
  background: rgba(139, 30, 30, .08);
  border-color: rgba(139, 30, 30, .25);
  color: #8B1E1E;
}

/* ---------- Empty state ---------- */
.drb-empty {
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) 1.5rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
}

.drb-empty__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  font-size: 1.6rem;
}

.drb-empty h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .5rem;
}

.drb-empty p {
  color: var(--muted);
  max-width: 40ch;
  margin: 0 auto 1.6rem;
}

/* ---------- Pagination ---------- */
.drb-pagination nav {
  display: flex;
  justify-content: center;
}

.drb-home-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  padding-top: 1.5rem;
  text-align: center;
}

.drb-home-more__note {
  margin: 0;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.drb-pagination [role="navigation"] {
  display: flex;
  gap: .3rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.drb-pagination span,
.drb-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 .5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 600;
  transition: all .3s var(--ease);
}

.drb-pagination a:hover {
  border-color: var(--gold-deep);
  color: var(--maroon);
}

.drb-pagination [aria-current] span {
  background: var(--maroon);
  color: var(--ivory);
  border-color: var(--maroon);
}

.drb-pagination .hidden {
  display: none;
}

/* hide Laravel's default "Showing x to y" text row if present */
.drb-pagination p.text-sm {
  display: none;
}

/* ---------- Reveal motion ---------- */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}

.js-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.js-reveal [data-reveal="fade"] {
  transform: none;
}

.js-reveal [data-reveal-delay="1"] {
  transition-delay: .08s;
}

.js-reveal [data-reveal-delay="2"] {
  transition-delay: .16s;
}

.js-reveal [data-reveal-delay="3"] {
  transition-delay: .24s;
}

.js-reveal [data-reveal-delay="4"] {
  transition-delay: .32s;
}

.js-reveal [data-reveal-delay="5"] {
  transition-delay: .40s;
}

.js-reveal [data-reveal-delay="6"] {
  transition-delay: .48s;
}

/* ---------- Utilities ---------- */
.drb-mt-sm {
  margin-top: 1rem;
}

.drb-mt {
  margin-top: 2rem;
}

.drb-mt-lg {
  margin-top: 3.5rem;
}

.drb-center {
  text-align: center;
}

.drb-flex {
  display: flex;
}

.drb-gap {
  gap: 1rem;
}

.drb-hide-mobile {
  display: initial;
}

.drb-show-mobile {
  display: none;
}

.drb-spin {
  animation: drbspin 1s linear infinite;
}

@keyframes drbspin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .drb-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .drb-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .drb-step__line {
    display: none;
  }

  .drb-footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 72px;
  }

  .drb-nav {
    display: none;
  }

  .drb-burger {
    display: inline-flex;
  }

  .drb-iconbtn__label {
    display: none;
  }

  .drb-pdp {
    grid-template-columns: 1fr;
  }

  .drb-pdp__media .drb-arch {
    position: relative;
    top: 0;
    max-width: 460px;
    margin-inline: auto;
  }

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

  .drb-summary {
    position: relative;
    top: 0;
    order: -1;
  }

  .drb-split {
    grid-template-columns: 1fr;
  }

  .drb-split--reverse .drb-split__media {
    order: 0;
  }

  .drb-split__media .drb-arch {
    max-width: 460px;
    margin-inline: auto;
    aspect-ratio: 4/5;
  }

  .drb-catgrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .drb-pillars {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {

  .drb-grid,
  .drb-grid--3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
  }

  .drb-product__name {
    font-size: 1.25rem;
  }

  .drb-product__add {
    opacity: 1;
    transform: none;
    width: 40px;
    height: 40px;
  }

  .drb-catgrid {
    grid-template-columns: 1fr;
  }

  .drb-slots {
    grid-template-columns: repeat(2, 1fr);
  }

  .drb-orderbox {
    grid-template-columns: 1fr;
  }

  .drb-footer__top {
    grid-template-columns: 1fr;
  }

  .drb-cart {
    width: 100vw;
  }

  .drb-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .drb-field {
    width: 100%;
  }

  .drb-hide-mobile {
    display: none;
  }

  .drb-show-mobile {
    display: initial;
  }

  .drb-sectionhead {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .js-reveal [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .drb-hero__scroll span {
    animation: none;
  }
}