:root {
  /* EDIT: Main brand colors and shared design tokens. */
  --bg: #030201;
  --bg-soft: #090604;
  --panel: rgba(10, 7, 4, .82);
  --panel-strong: rgba(16, 10, 5, .92);
  --line: rgba(218, 169, 83, .44);
  --line-soft: rgba(218, 169, 83, .22);
  --text: #fff6e8;
  --muted: #d8c7ae;
  --gold: #d8a94f;
  --gold-light: #ffe3a1;
  --gold-dark: #805012;
  --green: #25d366;
  --neon-green: #00ff88;
  --shadow: 0 28px 70px rgba(0, 0, 0, .58);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: 'Tajawal', 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 50% -15%, rgba(218, 169, 83, .18), transparent 32%),
    radial-gradient(circle at 12% 28%, rgba(112, 69, 22, .18), transparent 28%),
    #030201;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .45), transparent 32%, rgba(0, 0, 0, .54)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.018) 0 1px, transparent 1px 96px);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .34;
  background:
    radial-gradient(circle at 68% 18%, rgba(255, 220, 150, .12), transparent 20%),
    radial-gradient(circle at 28% 74%, rgba(129, 76, 24, .14), transparent 26%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.hero .container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
}

.topbar,
.header,
.footer,
.hero,
.section {
  position: relative;
}

.topbar {
  z-index: 40;
  color: #f8e6c3;
  font-size: .92rem;
  background: linear-gradient(180deg, rgba(8, 5, 3, .98), rgba(4, 2, 1, .96));
  border-bottom: 1px solid rgba(218, 169, 83, .24);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .24);
}

.topbar-inner,
.header-inner,
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
}

.topbar-inner,
.header-inner {
  direction: ltr;
}

.topbar-group {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.topbar-features { justify-content: flex-start; }
.topbar-slogan { justify-content: center; color: var(--gold-light); font-weight: 700; }
.topbar-contact { justify-content: flex-end; direction: ltr; }
.topbar-features,
.topbar-slogan,
.nav {
  direction: rtl;
}

.topbar-item,
.nav-link,
.lang-btn,
.menu-toggle,
.product-btn,
.qty-btn,
.car-btn,
.btn {
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.topbar-item,
.nav-link,
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 245, 226, .9);
  white-space: nowrap;
}

.topbar-item:hover,
.nav-link:hover,
.lang-btn:hover {
  color: var(--gold-light);
}

.topbar-contact .topbar-item:first-child .ico { color: var(--green); }
.topbar-contact .topbar-item:last-child .ico { color: var(--gold); }
.topbar-facebook .ico { color: #74a7ff; }

.topbar-sep {
  display: none;
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, .12);
}

.ico {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: currentColor;
}

.diamond {
  color: var(--gold);
  font-size: .82em;
  text-shadow: 0 0 14px rgba(255, 211, 116, .6);
}

.header {
  z-index: 35;
  background: rgba(4, 2, 1, .88);
  border-bottom: 1px solid rgba(218, 169, 83, .16);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .16);
}

.header-inner {
  grid-template-columns: 180px minmax(0, 1fr) auto;
  padding: 20px 0 18px;
}

.brand {
  display: inline-flex;
  justify-self: start;
}

.brand-logo {
  width: 128px;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(232, 181, 81, .28));
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
}

.nav-link {
  position: relative;
  padding: 8px 0;
  font-size: .98rem;
  font-weight: 700;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width .2s ease;
}

.nav-link.is-active,
.nav-link:hover {
  color: var(--gold-light);
}

.nav-link.is-active::after,
.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid rgba(255, 225, 160, .54);
  border-radius: 999px;
  background: rgba(0, 0, 0, .52);
  box-shadow: inset 0 0 24px rgba(218, 169, 83, .08);
}

.lang-btn {
  min-width: 84px;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  background: transparent;
  color: #f7ead8;
  font-size: .93rem;
}

.lang-btn.is-active {
  color: var(--gold-light);
  background: rgba(218, 169, 83, .14);
  box-shadow: inset 0 0 0 1px rgba(218, 169, 83, .22);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  cursor: pointer;
  background: rgba(0, 0, 0, .42);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 10px;
  background: var(--gold-light);
}

.hero {
  position: relative;
  min-height: calc(100vh - 142px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 36px 0 70px;
  margin: 0;
  background:
    radial-gradient(circle at 72% 46%, rgba(216, 169, 79, .13), transparent 24%),
    radial-gradient(circle at 20% 34%, rgba(126, 82, 28, .16), transparent 32%),
    linear-gradient(180deg, rgba(0,0,0,.96), rgba(5,3,2,.98));
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(420px, .96fr) minmax(440px, 1.04fr);
  align-items: center;
  gap: 28px;
  direction: ltr;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 34px;
}

.hero-copy {
  grid-column: 1;
  direction: rtl;
  max-width: 570px;
  text-align: center;
  justify-self: center;
  padding: 16px 0 24px;
  border: none;
  background: transparent;
  box-shadow: none;
}

.hero-monogram {
  display: block;
  width: min(300px, 72%);
  height: auto;
  margin: 0 auto 12px;
  filter:
    drop-shadow(0 0 20px rgba(255, 218, 132, .45))
    drop-shadow(0 8px 32px rgba(0, 0, 0, .6));
}

.hero-title {
  margin: 0 0 8px;
  color: var(--gold-light);
  font-family: 'Amiri', serif;
  font-size: clamp(2.35rem, 3.6vw, 4rem);
  line-height: 1.3;
  font-weight: 700;
  text-shadow: 0 0 24px rgba(218, 169, 83, .28), 0 8px 32px rgba(0, 0, 0, .6);
}

.hero-tagline,
.section-title,
.card-title,
.feature-title,
.order-name {
  font-family: 'Amiri', serif;
}

.hero-tagline,
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #f3cd78;
  font-weight: 700;
}

.hero-tagline {
  margin: 0 0 12px;
  justify-content: center;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.3;
  letter-spacing: .06em;
}

.rule {
  display: inline-block;
  width: clamp(48px, 10vw, 122px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(234, 188, 98, .75), transparent);
}

.hero-desc {
  max-width: 520px;
  margin: 0 auto 20px;
  color: rgba(255, 244, 226, .82);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-cta,
.order-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}

.btn {
  min-height: 52px;
  min-width: 158px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 24px;
  cursor: pointer;
  font-weight: 700;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: #120a03;
  background: linear-gradient(135deg, #b98225, #ffe39a 52%, #c28a30);
  box-shadow: 0 18px 36px rgba(218, 169, 83, .24);
}

.btn-outline {
  color: var(--gold-light);
  border-color: rgba(255, 218, 132, .54);
  background: rgba(0, 0, 0, .34);
}

.btn-outline:hover {
  background: rgba(218, 169, 83, .12);
}

.hero-photo-wrap {
  position: absolute;
  z-index: 2;
  right: max(18px, calc((100vw - 1180px) / 2));
  top: 51%;
  transform: translateY(-50%);
  width: min(54vw, 690px);
  height: 100%;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo {
  width: 100%;
  height: auto;
  max-height: min(620px, calc(100vh - 220px));
  object-fit: contain;
  border-radius: 0;
  filter:
    saturate(1.1)
    contrast(1.12)
    drop-shadow(0 20px 40px rgba(0,0,0,.7))
    drop-shadow(0 0 28px rgba(218,169,83,.18));
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3,2,1,.18), rgba(3,2,1,0) 38%, rgba(3,2,1,.18)),
    linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.68));
}

.smoke-layer {
  position: absolute;
  z-index: 1;
  width: 36vw;
  min-width: 360px;
  height: 160px;
  pointer-events: none;
  opacity: .62;
  filter: blur(48px);
  background:
    radial-gradient(circle at 25% 45%, rgba(200, 180, 140, .18), transparent 35%),
    radial-gradient(circle at 65% 25%, rgba(180, 160, 120, .15), transparent 40%),
    radial-gradient(circle at 45% 70%, rgba(220, 200, 160, .12), transparent 38%);
  animation: smoke-drift 8s ease-in-out infinite;
}

.incense-smoke {
  position: absolute;
  z-index: 4;
  right: min(41vw, 520px);
  bottom: 18%;
  width: 170px;
  height: 300px;
  pointer-events: none;
  opacity: .72;
  filter: blur(.2px);
}

.incense-smoke::after {
  content: "";
  position: absolute;
  right: 48%;
  bottom: 0;
  width: 54px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 122, .5), rgba(73, 42, 12, .2) 46%, transparent 70%);
  filter: blur(4px);
}

.incense-smoke span {
  position: absolute;
  bottom: 16px;
  width: 54px;
  height: 180px;
  border-right: 2px solid rgba(255, 232, 190, .24);
  border-radius: 52% 48% 46% 54%;
  filter: blur(1.6px);
  transform-origin: 50% 100%;
  animation: incense-rise 6.8s ease-in-out infinite;
}

.incense-smoke span:nth-child(1) {
  right: 56px;
  height: 210px;
  animation-delay: 0s;
}

.incense-smoke span:nth-child(2) {
  right: 34px;
  height: 250px;
  border-right-color: rgba(255, 232, 190, .18);
  transform: rotate(-13deg);
  animation-delay: 1.1s;
}

.incense-smoke span:nth-child(3) {
  right: 82px;
  height: 230px;
  border-right-color: rgba(218, 169, 83, .18);
  transform: rotate(12deg);
  animation-delay: 2s;
}

.incense-smoke span:nth-child(4) {
  right: 70px;
  height: 270px;
  border-right-color: rgba(255, 255, 255, .12);
  transform: rotate(22deg);
  animation-delay: 3s;
}

@keyframes smoke-drift {
  0%, 100% {
    transform: translateX(0) translateY(0);
    opacity: .55;
  }
  50% {
    transform: translateX(20px) translateY(-15px);
    opacity: .7;
  }
}

@keyframes incense-rise {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(.72) rotate(-8deg);
  }
  22% {
    opacity: .58;
  }
  62% {
    opacity: .38;
    transform: translateY(-76px) scale(1.02) rotate(12deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-150px) scale(1.28) rotate(-18deg);
  }
}

.smoke-a { top: 22%; right: 2%; }
.smoke-b { top: 32%; left: 6%; transform: scaleX(-1) rotate(9deg); opacity: .38; }
.smoke-c { bottom: 15%; right: 11%; opacity: .3; transform: rotate(6deg); }

.scroll-cue {
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: 14px;
  display: grid;
  justify-items: center;
  gap: 5px;
  color: rgba(255, 245, 226, .86);
  font-size: .82rem;
  transform: translateX(-50%);
}

.mouse {
  width: 22px;
  height: 38px;
  border: 1px solid rgba(255, 245, 226, .82);
  border-radius: 999px;
  display: grid;
  justify-items: center;
  padding-top: 7px;
}

.wheel {
  width: 3px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold-light);
}

.section {
  overflow: hidden;
  padding: 46px 0 62px;
  background: #030201;
}

.section + .section {
  padding-top: 26px;
}

.section-alt {
  background:
    radial-gradient(circle at 50% 0%, rgba(218, 169, 83, .08), transparent 28%),
    #030201;
}

.section-title {
  margin: 0 auto 24px;
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: 1.15;
  letter-spacing: .01em;
}

.carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-top: 0;
}

.car-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 1fr);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  overflow-x: auto;
  padding: 2px 0 10px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.car-track::-webkit-scrollbar { display: none; }

.card,
.feature,
.order-details,
.order-frame {
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.006)),
    rgba(0, 0, 0, .5);
  border: 1px solid var(--line);
  box-shadow: inset 0 0 22px rgba(218, 169, 83, .045), var(--shadow);
}

.card {
  min-width: 0;
  border-radius: 14px;
  padding: 14px 14px 18px;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(218, 169, 83, .32);
  background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 227, 161, .52);
  box-shadow: inset 0 0 22px rgba(218, 169, 83, .065), 0 30px 68px rgba(0, 0, 0, .52);
}

.card-photo {
  width: 100%;
  height: 168px;
  margin-bottom: 12px;
  border-radius: 8px;
  object-fit: cover;
  background:
    radial-gradient(circle at 50% 46%, rgba(218,169,83,.22), transparent 35%),
    #070504;
  box-shadow: inset 0 0 16px rgba(0, 0, 0, .32);
}
.card:nth-child(2) .card-photo,
.card:nth-child(3) .card-photo {
  object-fit: contain;
  padding: 10px;
}

.card-photo-product {
  object-fit: contain;
  padding: 6px;
}

.card-photo-luxury {
  object-fit: cover;
  object-position: center 44%;
  padding: 0;
}

.card-title {
  margin: 0;
  color: var(--gold-light);
  font-size: 1.08rem;
  line-height: 1.4;
  font-weight: 700;
}

.card-sub,
.feature-desc,
.order-desc,
.order-notes,
.footer-contact {
  color: rgba(255, 239, 213, .76);
}

.card-sub {
  margin: 4px 0 0;
  font-size: .93rem;
  line-height: 1.42;
}

.car-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(218, 169, 83, .6);
  border-radius: 50%;
  color: var(--gold-light);
  cursor: pointer;
  background: rgba(0, 0, 0, .64);
}

.car-btn:hover {
  color: #130c04;
  background: var(--gold-light);
}

.features {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.feature {
  position: relative;
  isolation: isolate;
  min-height: 230px;
  border-radius: 18px;
  padding: 26px 18px 24px;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(255, 227, 161, .24);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 227, 161, .12), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.012) 58%, rgba(216,169,79,.035)),
    rgba(0, 0, 0, .54);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.025),
    inset 0 18px 34px rgba(255, 227, 161, .035),
    0 24px 58px rgba(0, 0, 0, .38);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
}

.feature::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: -1;
  border: 1px solid rgba(255, 227, 161, .08);
  border-radius: 14px;
  pointer-events: none;
}

.feature::after {
  content: "";
  position: absolute;
  inset: auto 22% -28px;
  z-index: -1;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(216,169,79,.18), transparent 68%);
  filter: blur(12px);
  opacity: .72;
  pointer-events: none;
}

.feature-ico {
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  padding: 15px;
  color: #fff1c6;
  border: 1px solid rgba(255, 231, 169, .44);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, .42), transparent 18%),
    radial-gradient(circle at 50% 54%, rgba(255, 221, 143, .2), transparent 42%),
    conic-gradient(from 210deg, rgba(114,70,15,.94), rgba(255,224,147,.7), rgba(151,93,22,.86), rgba(255,238,183,.55), rgba(114,70,15,.94));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .09),
    inset 0 -10px 22px rgba(45, 24, 4, .42),
    0 0 0 7px rgba(216, 169, 79, .055),
    0 0 30px rgba(216, 169, 79, .24),
    0 18px 34px rgba(0,0,0,.38);
  filter: drop-shadow(0 0 12px rgba(255, 227, 161, .2));
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, color .24s ease;
}

.feature-ico * {
  stroke-width: 1.85;
}

.feature-title {
  margin: 0 0 10px;
  color: #ffe8aa;
  font-size: 1.12rem;
  line-height: 1.35;
  font-weight: 700;
  text-shadow: 0 0 18px rgba(216,169,79,.18);
}

.feature-desc {
  margin: 0;
  color: rgba(255, 243, 222, .78);
  font-size: .94rem;
  line-height: 1.7;
}

.feature:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 227, 161, .58);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 227, 161, .16), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.018) 58%, rgba(216,169,79,.06)),
    rgba(0, 0, 0, .58);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.035),
    inset 0 20px 38px rgba(255, 227, 161, .045),
    0 34px 72px rgba(0, 0, 0, .52),
    0 0 34px rgba(216, 169, 79, .12);
}

.feature:hover .feature-ico {
  transform: translateY(-4px) scale(1.07);
  color: #fff8df;
  border-color: rgba(255, 242, 204, .82);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.13),
    inset 0 -10px 22px rgba(45, 24, 4, .34),
    0 0 0 8px rgba(216, 169, 79, .08),
    0 0 42px rgba(216, 169, 79, .42),
    0 18px 38px rgba(0,0,0,.42);
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.order-frame,
.order-details {
  border-radius: 8px;
}

.order-frame {
  padding: 20px;
  border: 1px solid rgba(218, 169, 83, .26);
  box-shadow: inset 0 0 26px rgba(218, 169, 83, .06), 0 24px 48px rgba(0, 0, 0, .42);
  position: relative;
  overflow: hidden;
}

.order-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 227, 161, .12);
  border-radius: 6px;
  pointer-events: none;
}

.order-frame::after {
  content: "";
  position: absolute;
  inset: auto 12% 6% 12%;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(216, 169, 79, .2), transparent 66%);
  filter: blur(12px);
  pointer-events: none;
}

.order-photo {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, .72));
}

.order-details {
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.order-eyebrow,
.order-label {
  color: var(--gold);
  font-weight: 700;
}

.order-eyebrow {
  margin: 0 0 8px;
  letter-spacing: .08em;
}

.order-name {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.2;
}

.order-desc {
  margin: 0;
  line-height: 1.9;
}

.order-block { margin-top: 22px; }
.order-label { margin: 0 0 10px; }

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

.product-btn,
.qty {
  border: 1px solid rgba(218, 169, 83, .34);
  border-radius: 8px;
  background: rgba(0, 0, 0, .32);
}

.product-btn {
  min-width: 112px;
  padding: 12px 16px;
  color: var(--text);
  cursor: pointer;
}

.product-btn:hover {
  border-color: rgba(255, 227, 161, .6);
  background: rgba(218, 169, 83, .12);
}

.product-btn.is-active {
  color: #120a03;
  border-color: var(--gold-light);
  background: linear-gradient(135deg, #b98225, #ffe39a 52%, #c28a30);
}

.order-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  min-height: 54px;
  border-color: rgba(255, 227, 161, .42);
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: 0;
  color: var(--gold-light);
  cursor: pointer;
  background: transparent;
  font-size: 1.2rem;
}

.qty-value {
  min-width: 30px;
  text-align: center;
  color: var(--gold-light);
  font-size: 1.28rem;
  font-weight: 700;
}

.qty-unit {
  color: rgba(255, 239, 213, .76);
  font-weight: 700;
}

.order-promise {
  max-width: 300px;
  padding: 14px 16px;
  border: 1px solid rgba(218, 169, 83, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .025);
}

.order-hint {
  margin: 0;
  color: rgba(255, 239, 213, .76);
  font-size: .95rem;
  line-height: 1.7;
}

.btn-wide { min-width: 210px; }

.order-notes {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.order-notes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.order-notes .ico {
  margin-top: 3px;
  color: var(--gold);
}

.footer {
  padding: 28px 0 42px;
  background: #020101;
  border-top: 1px solid var(--line-soft);
}

.footer-inner {
  align-items: center;
}

.footer-logo {
  width: 94px;
  margin-bottom: 8px;
}

.footer-tag,
.footer-copy {
  margin: 0;
  color: rgba(255, 239, 213, .72);
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.footer-copy {
  text-align: end;
}

.designer-credit {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .42em;
  color: #b9c9cd;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: .74rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .16em;
}

.designer-credit-code {
  color: #f1efe7;
}

.designer-credit-slash {
  color: #42e0c3;
  font-size: 1.22em;
  font-weight: 800;
  letter-spacing: 0;
}

.designer-credit-services {
  color: #6fbfd7;
}

.wa-float,
.fb-float {
  position: fixed;
  right: 18px;
  z-index: 50;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(255,255,255,.9);
  border-radius: 50%;
  transition: transform .2s ease, box-shadow .2s ease;
}

.wa-float {
  bottom: 18px;
  background: var(--green);
  box-shadow: 0 16px 34px rgba(37, 211, 102, .32);
}

.fb-float {
  bottom: 88px;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, .36), transparent 28%),
    linear-gradient(145deg, #3f8cff 0%, #1457d9 48%, #092e86 100%);
  border-color: rgba(255, 230, 176, .82);
  box-shadow: 0 16px 34px rgba(45, 111, 226, .3), 0 0 0 1px rgba(216, 169, 79, .24);
}

.wa-float:hover,
.fb-float:hover {
  transform: translateY(-3px);
}

.wa-float svg,
.fb-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.is-fallback {
  padding: 24px;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .topbar-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 7px;
  }

  .topbar-features,
  .topbar-contact {
    justify-content: center;
  }

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

  .nav {
    gap: 18px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 24px;
  }

  .hero-copy {
    justify-self: center;
    text-align: center;
    padding: 26px 0 0;
  }

  .hero-tagline,
  .hero-cta {
    justify-content: center;
  }

  .hero-photo-wrap {
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    transform: none;
    height: auto;
    width: min(680px, 92vw);
    margin: -12px auto 0;
  }

  .incense-smoke {
    right: 50%;
    bottom: 20%;
    transform: translateX(50%);
  }

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

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, 680px);
  }

  .header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    grid-template-columns: auto auto;
  }

  .brand-logo {
    width: 104px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 10px;
  }

  .nav.open {
    display: flex;
  }

  .nav-link {
    justify-content: center;
    padding: 12px;
    border-top: 1px solid rgba(218, 169, 83, .12);
  }

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

  .lang-switch {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 36px 0 76px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-cta,
  .order-cta {
    gap: 12px;
  }

  .btn {
    width: min(100%, 260px);
  }

  .carousel {
    grid-template-columns: 1fr;
  }

  .car-btn {
    display: none;
  }

  .car-track {
    grid-template-columns: none;
    grid-auto-columns: minmax(184px, 72%);
    scroll-snap-type: x mandatory;
  }

  .card {
    scroll-snap-align: start;
  }

  .order-grid {
    grid-template-columns: 1fr;
  }

  .order-promise {
    max-width: none;
    width: 100%;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .hero {
    min-height: 620px;
    padding: 28px 0 64px;
  }

  .hero .container {
    max-width: 100%;
  }

  .hero-inner {
    grid-template-columns: minmax(350px, .92fr) minmax(380px, 1.08fr);
    gap: 18px;
    padding: 0 28px;
  }

  .hero-copy {
    grid-column: 1;
    max-width: 470px;
    padding: 8px 0 18px;
    text-align: center;
    justify-self: center;
  }

  .hero-monogram {
    display: block;
    width: min(230px, 68%);
    margin-inline: auto;
  }

  .hero-title {
    font-size: clamp(2rem, 3.6vw, 3.2rem);
  }

  .hero-tagline {
    justify-content: center;
    font-size: clamp(1.2rem, 2vw, 1.65rem);
  }

  .hero-desc {
    max-width: 430px;
    margin-inline: auto;
    font-size: .95rem;
    line-height: 1.8;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-photo-wrap {
    position: absolute;
    inset: auto max(14px, calc((100vw - 1060px) / 2)) auto auto;
    top: 52%;
    width: min(53vw, 610px);
    height: 100%;
    margin: 0;
    transform: translateY(-50%);
  }

  .hero-photo {
    max-height: 520px;
  }

  .incense-smoke {
    right: min(39vw, 430px);
    bottom: 17%;
    transform: none;
  }
}

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

  .hero-copy {
    text-align: center;
    padding: 26px 0 0;
  }

  .hero-photo-wrap {
    position: relative;
    inset: auto;
    width: min(680px, 92vw);
    height: auto;
    margin: -8px auto 0;
    transform: none;
  }

  .hero-photo {
    max-height: none;
  }
}

@media (max-width: 620px) {
  .topbar {
    font-size: .78rem;
  }

  .topbar-group {
    gap: 12px;
    flex-wrap: wrap;
  }

  .topbar-features {
    display: none;
  }

  .topbar-contact {
    gap: 14px;
  }

  .hero-monogram {
    width: min(245px, 78vw);
  }

  .hero-title {
    font-size: clamp(2.05rem, 11vw, 3.2rem);
  }

  .hero-tagline {
    font-size: 1.32rem;
    gap: 8px;
  }

  .rule {
    width: 42px;
  }

  .hero-photo-wrap {
    width: min(112vw, 560px);
    margin-inline: -6vw;
  }

  .incense-smoke {
    width: 130px;
    height: 230px;
    opacity: .5;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .features {
    grid-template-columns: 1fr 1fr;
  }

  .feature {
    min-height: 190px;
    padding: 18px 12px;
  }

  .feature-ico {
    width: 56px;
    height: 56px;
    padding: 13px;
  }

  .feature-title {
    font-size: 1rem;
  }

  .feature-desc {
    font-size: .88rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-copy {
    text-align: center;
  }
}

@media (max-width: 420px) {
  .features {
    grid-template-columns: 1fr;
  }

  .card-photo {
    height: 138px;
  }

  .product-btn,
  .btn-wide {
    width: 100%;
  }
}

/* Final hero composition: reference-style side-by-side layout */
.page-smoke {
  position: fixed;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
  opacity: .36;
  mix-blend-mode: screen;
}

.page-smoke span {
  position: absolute;
  width: 620px;
  height: 150px;
  border-radius: 48% 52% 55% 45%;
  background:
    radial-gradient(ellipse at 14% 48%, rgba(255, 248, 232, .26), transparent 32%),
    radial-gradient(ellipse at 38% 38%, rgba(210, 181, 142, .18), transparent 34%),
    radial-gradient(ellipse at 66% 58%, rgba(255, 255, 255, .2), transparent 30%),
    radial-gradient(ellipse at 88% 46%, rgba(168, 121, 76, .16), transparent 34%);
  filter: blur(24px);
  transform: rotate(-12deg);
  animation: page-smoke-drift 22s ease-in-out infinite;
}

.page-smoke span:nth-child(1) {
  top: 13%;
  right: -150px;
}

.page-smoke span:nth-child(2) {
  top: 33%;
  left: -180px;
  width: 760px;
  opacity: .84;
  transform: rotate(9deg);
  animation-delay: -7s;
}

.page-smoke span:nth-child(3) {
  bottom: 10%;
  right: 18%;
  width: 680px;
  opacity: .72;
  animation-delay: -12s;
}

.page-smoke span:nth-child(4) {
  top: 58%;
  right: -220px;
  width: 820px;
  height: 170px;
  opacity: .68;
  transform: rotate(-4deg);
  animation-delay: -15s;
}

.page-smoke span:nth-child(5) {
  top: 6%;
  left: 20%;
  width: 520px;
  height: 120px;
  opacity: .5;
  transform: rotate(14deg);
  animation-delay: -4s;
}

.page-smoke span:nth-child(6) {
  bottom: 28%;
  left: 12%;
  width: 590px;
  height: 140px;
  opacity: .6;
  transform: rotate(-18deg);
  animation-delay: -19s;
}

@keyframes page-smoke-drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-10deg) scale(1);
    filter: blur(24px);
  }
  50% {
    transform: translate3d(58px, -34px, 0) rotate(5deg) scale(1.12);
    filter: blur(30px);
  }
}

.topbar,
.header,
.wa-float,
.fb-float {
  z-index: 10;
}

.hero-inner,
.scroll-cue,
.carousel,
.features,
.order-grid,
.footer-inner {
  position: relative;
  z-index: 4;
}

.hero {
  min-height: calc(100vh - 142px);
  padding: clamp(34px, 5vw, 58px) 0 74px;
  background:
    radial-gradient(ellipse at 76% 42%, rgba(214, 163, 73, .15), transparent 31%),
    radial-gradient(ellipse at 20% 40%, rgba(110, 75, 38, .18), transparent 34%),
    linear-gradient(180deg, #030201 0%, #070403 78%, #030201 100%);
}

.hero-inner {
  min-height: min(660px, calc(100vh - 210px));
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  direction: ltr;
  max-width: 1180px;
  padding: 0 32px;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  direction: rtl;
  max-width: 560px;
  padding: 0;
  text-align: center;
  justify-self: center;
}

.hero-photo-wrap {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  inset: auto;
  top: auto;
  right: auto;
  width: 100%;
  height: auto;
  min-height: 420px;
  margin: 0;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-photo {
  width: min(100%, 680px);
  max-height: min(700px, calc(100vh - 170px));
  object-fit: contain;
  filter:
    saturate(1.12)
    contrast(1.1)
    drop-shadow(0 34px 54px rgba(0, 0, 0, .85))
    drop-shadow(0 0 34px rgba(216, 169, 79, .22));
}

.hero-monogram {
  display: block;
  width: min(320px, 74%);
  margin: 0 auto 8px;
}

.hero-title {
  font-size: clamp(2.45rem, 3.9vw, 4.35rem);
}

.hero-tagline {
  justify-content: center;
}

.hero-desc {
  max-width: 510px;
  margin-inline: auto;
}

.hero-cta {
  justify-content: center;
}

.smoke-layer {
  opacity: .48;
  filter: blur(34px);
}

.incense-smoke {
  z-index: 4;
  right: 27%;
  bottom: 16%;
  opacity: .68;
}

@media (min-width: 901px) and (max-width: 1180px) {
  .hero-inner {
    grid-template-columns: minmax(330px, .94fr) minmax(390px, 1.06fr);
    min-height: 570px;
    padding-inline: 24px;
  }

  .hero-photo-wrap {
    min-height: 380px;
  }

  .hero-photo {
    max-height: 575px;
  }

  .hero-monogram {
    width: min(260px, 68%);
  }

  .hero-title {
    font-size: clamp(2.1rem, 3.4vw, 3.5rem);
  }

  .hero-desc {
    font-size: .96rem;
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  .hero {
    min-height: 560px;
  }

  .hero-inner {
    grid-template-columns: minmax(290px, .92fr) minmax(330px, 1.08fr);
    min-height: 520px;
    gap: 14px;
    padding-inline: 20px;
  }

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

  .hero-photo-wrap {
    min-height: 340px;
  }

  .hero-photo {
    max-height: 475px;
  }

  .hero-monogram {
    width: min(220px, 66%);
  }

  .hero-title {
    font-size: clamp(1.95rem, 3.4vw, 2.75rem);
  }

  .hero-tagline {
    font-size: 1.16rem;
  }

  .hero-desc {
    font-size: .9rem;
    line-height: 1.75;
  }

  .btn {
    min-width: 138px;
    padding-inline: 18px;
  }
}

@media (max-width: 720px) {
  .page-smoke {
    opacity: .24;
  }

  .page-smoke span {
    width: 440px;
    height: 120px;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 70px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 10px;
    padding-inline: 18px;
  }

  .hero-copy,
  .hero-photo-wrap {
    grid-column: 1;
  }

  .hero-copy {
    grid-row: 1;
  }

  .hero-photo-wrap {
    grid-row: 2;
    min-height: 0;
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .hero-photo {
    max-height: none;
  }

  .incense-smoke {
    right: 50%;
    bottom: 22%;
    transform: translateX(50%);
  }
}

/* Softer, clearer incense smoke across the full page */
.page-smoke {
  opacity: .44;
}

.page-smoke span {
  height: 118px;
  background:
    radial-gradient(ellipse at 12% 48%, rgba(255, 250, 238, .34), transparent 28%),
    radial-gradient(ellipse at 36% 42%, rgba(222, 197, 164, .24), transparent 31%),
    radial-gradient(ellipse at 64% 56%, rgba(255, 255, 255, .28), transparent 27%),
    radial-gradient(ellipse at 90% 48%, rgba(178, 132, 82, .18), transparent 31%);
  filter: blur(16px);
  animation-duration: 28s;
}

.page-smoke span:nth-child(1) {
  opacity: .82;
}

.page-smoke span:nth-child(2) {
  opacity: .76;
}

.page-smoke span:nth-child(3) {
  opacity: .68;
}

.page-smoke span:nth-child(4) {
  opacity: .62;
}

.page-smoke span:nth-child(5),
.page-smoke span:nth-child(6) {
  opacity: .56;
}

@keyframes page-smoke-drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-8deg) scale(1);
    filter: blur(16px);
  }
  50% {
    transform: translate3d(46px, -28px, 0) rotate(4deg) scale(1.08);
    filter: blur(20px);
  }
}

.smoke-layer {
  opacity: .54;
  filter: blur(24px);
}

.incense-smoke {
  opacity: .78;
}

.incense-smoke span {
  border-right-color: rgba(255, 242, 220, .34);
  filter: blur(1.1px);
  animation-duration: 8.4s;
}

.incense-smoke span:nth-child(2) {
  border-right-color: rgba(255, 232, 190, .28);
}

.incense-smoke span:nth-child(3) {
  border-right-color: rgba(218, 169, 83, .26);
}

.incense-smoke span:nth-child(4) {
  border-right-color: rgba(255, 255, 255, .22);
}

@media (max-width: 720px) {
  .page-smoke {
    opacity: .3;
  }

  .page-smoke span {
    filter: blur(18px);
  }
}

/* Fine dense incense wisps: realistic, thin, layered smoke */
.page-smoke {
  opacity: .62;
  mix-blend-mode: screen;
}

.page-smoke span {
  width: 150px;
  height: 560px;
  border-radius: 50%;
  background:
    linear-gradient(100deg,
      transparent 0 19%,
      rgba(255, 255, 255, .04) 20%,
      rgba(255, 246, 226, .34) 21%,
      rgba(255, 255, 255, .05) 22%,
      transparent 24% 38%,
      rgba(232, 203, 166, .27) 40%,
      rgba(255, 255, 255, .05) 41%,
      transparent 43% 57%,
      rgba(255, 255, 255, .06) 58%,
      rgba(255, 243, 220, .3) 59%,
      transparent 61% 100%),
    linear-gradient(180deg, transparent 0%, rgba(255, 250, 238, .3) 18%, rgba(255,255,255,.16) 46%, transparent 92%);
  filter: blur(1.4px);
  opacity: .74;
  transform-origin: 50% 100%;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 72%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 72%, transparent 100%);
  animation: incense-page-wisp 13s ease-in-out infinite;
}

.page-smoke span::before,
.page-smoke span::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(82deg,
      transparent 0 28%,
      rgba(255, 255, 255, .04) 29%,
      rgba(255, 244, 224, .28) 30%,
      transparent 32% 49%,
      rgba(220, 190, 150, .2) 51%,
      transparent 53% 100%);
  filter: blur(2px);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 76%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 76%, transparent 100%);
}

.page-smoke span::after {
  transform: translateX(34px) rotate(9deg) scaleY(.9);
  opacity: .74;
  filter: blur(2.8px);
}

.page-smoke span:nth-child(1) {
  top: 5%;
  right: 8%;
  height: 610px;
  opacity: .78;
  animation-delay: -1s;
}

.page-smoke span:nth-child(2) {
  top: 16%;
  left: 10%;
  width: 175px;
  height: 650px;
  opacity: .68;
  animation-delay: -5s;
}

.page-smoke span:nth-child(3) {
  top: 42%;
  right: 20%;
  width: 170px;
  height: 620px;
  opacity: .66;
  animation-delay: -9s;
}

.page-smoke span:nth-child(4) {
  top: 52%;
  left: 4%;
  width: 190px;
  height: 600px;
  opacity: .6;
  animation-delay: -12s;
}

.page-smoke span:nth-child(5) {
  top: -3%;
  left: 44%;
  width: 145px;
  height: 540px;
  opacity: .56;
  animation-delay: -3s;
}

.page-smoke span:nth-child(6) {
  bottom: -8%;
  right: 42%;
  width: 185px;
  height: 610px;
  opacity: .58;
  animation-delay: -15s;
}

@keyframes incense-page-wisp {
  0%, 100% {
    transform: translate3d(0, 26px, 0) rotate(-8deg) scaleX(.9);
    opacity: .44;
    filter: blur(1.6px);
  }
  28% {
    opacity: .78;
  }
  55% {
    transform: translate3d(34px, -38px, 0) rotate(7deg) scaleX(1.08);
    opacity: .66;
    filter: blur(2.6px);
  }
  82% {
    transform: translate3d(-18px, -76px, 0) rotate(-3deg) scaleX(.98);
    opacity: .5;
  }
}

.smoke-layer {
  opacity: .16;
  filter: blur(18px);
}

.incense-smoke {
  opacity: .9;
}

.incense-smoke span {
  width: 42px;
  border-right-width: 1.4px;
  border-right-color: rgba(255, 247, 232, .46);
  filter: blur(.7px);
}

@media (max-width: 720px) {
  .page-smoke {
    opacity: .42;
  }

  .page-smoke span {
    width: 115px;
    height: 460px;
    filter: blur(1.8px);
  }
}

/* Organic incense smoke overlay */
.svg-filters {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.page-smoke {
  opacity: .72;
}

.page-smoke span {
  width: 132px;
  height: 620px;
  background:
    linear-gradient(96deg,
      transparent 0 16%,
      rgba(255, 255, 255, .03) 18%,
      rgba(255, 246, 230, .38) 19.5%,
      rgba(255, 255, 255, .06) 21%,
      transparent 24% 35%,
      rgba(216, 188, 151, .28) 38%,
      rgba(255, 255, 255, .08) 39.5%,
      transparent 42% 54%,
      rgba(255, 250, 238, .32) 57%,
      rgba(255, 255, 255, .05) 58.5%,
      transparent 61% 100%),
    radial-gradient(ellipse at 50% 35%, rgba(255, 243, 220, .18), transparent 54%);
  filter: url("#incenseDisplace") blur(1.05px);
  opacity: .86;
  mix-blend-mode: screen;
  animation: incense-page-wisp-real 12s ease-in-out infinite;
}

.page-smoke span::before,
.page-smoke span::after {
  background:
    linear-gradient(78deg,
      transparent 0 28%,
      rgba(255, 250, 238, .36) 30%,
      rgba(255, 255, 255, .06) 31.5%,
      transparent 34% 51%,
      rgba(226, 197, 158, .24) 53%,
      transparent 56% 100%);
  filter: url("#incenseDisplace") blur(1.7px);
}

.page-smoke span::after {
  opacity: .82;
  filter: url("#incenseDisplace") blur(2.2px);
}

.page-smoke span:nth-child(1) { top: 2%; right: 7%; opacity: .92; }
.page-smoke span:nth-child(2) { top: 12%; left: 8%; opacity: .82; }
.page-smoke span:nth-child(3) { top: 31%; right: 22%; opacity: .78; }
.page-smoke span:nth-child(4) { top: 48%; left: 5%; opacity: .72; }
.page-smoke span:nth-child(5) { top: -7%; left: 43%; opacity: .68; }
.page-smoke span:nth-child(6) { bottom: -12%; right: 38%; opacity: .7; }

@keyframes incense-page-wisp-real {
  0%, 100% {
    transform: translate3d(0, 32px, 0) rotate(-7deg) scaleX(.88);
    opacity: .52;
    filter: url("#incenseDisplace") blur(1px);
  }
  30% {
    opacity: .9;
  }
  58% {
    transform: translate3d(28px, -48px, 0) rotate(6deg) scaleX(1.08);
    opacity: .76;
    filter: url("#incenseDisplace") blur(1.8px);
  }
  84% {
    transform: translate3d(-16px, -96px, 0) rotate(-2deg) scaleX(.96);
    opacity: .58;
  }
}

.incense-smoke span {
  filter: url("#incenseDisplace") blur(.55px);
}

@media (max-width: 720px) {
  .page-smoke {
    opacity: .5;
  }

  .page-smoke span {
    width: 104px;
    height: 500px;
  }
}

/* Photographic incense smoke: thin, realistic, non-illustrated */
.page-smoke {
  opacity: .55;
  mix-blend-mode: screen;
}

.page-smoke span {
  display: none;
}

.page-smoke::before,
.page-smoke::after {
  content: "";
  position: absolute;
  inset: -12% -8%;
  background-image: url("assets/incense-smoke-real.png");
  background-repeat: repeat-y;
  background-size: min(1120px, 118vw) auto;
  background-position: 50% 0;
  opacity: .68;
  filter: contrast(1.12) brightness(1.16) saturate(.78) blur(.25px);
  transform-origin: 50% 50%;
  animation: realistic-smoke-drift 26s ease-in-out infinite;
}

.page-smoke::after {
  inset: -16% -14%;
  background-size: min(980px, 104vw) auto;
  background-position: 14% 10%;
  opacity: .38;
  filter: contrast(1.2) brightness(1.28) saturate(.65) blur(.55px);
  transform: scaleX(-1) rotate(.8deg);
  animation-duration: 34s;
  animation-delay: -11s;
}

@keyframes realistic-smoke-drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: .42;
  }
  35% {
    transform: translate3d(18px, -42px, 0) scale(1.03);
    opacity: .7;
  }
  70% {
    transform: translate3d(-16px, -86px, 0) scale(1.01);
    opacity: .52;
  }
}

.smoke-layer {
  opacity: .08;
  filter: blur(20px);
}

.incense-smoke {
  opacity: .42;
}

.incense-smoke span {
  border-right-width: 1px;
  border-right-color: rgba(255, 250, 238, .22);
  filter: blur(1.2px);
}

@media (max-width: 720px) {
  .page-smoke {
    opacity: .42;
  }

  .page-smoke::before,
  .page-smoke::after {
    inset: -10% -28%;
    background-size: 820px auto;
  }
}

/* Final smoke treatment: ultra-fine scattered incense wisps */
.page-smoke {
  opacity: .5;
  mix-blend-mode: screen;
}

.page-smoke::before,
.page-smoke::after {
  content: none;
}

.page-smoke span {
  display: block;
  width: 52px;
  height: 540px;
  border-radius: 50%;
  background:
    linear-gradient(92deg,
      transparent 0 31%,
      rgba(255, 255, 255, .03) 32%,
      rgba(255, 250, 238, .22) 33%,
      rgba(255, 255, 255, .025) 34%,
      transparent 36% 53%,
      rgba(230, 214, 190, .16) 54%,
      rgba(255, 255, 255, .025) 55%,
      transparent 57% 100%),
    radial-gradient(ellipse at 42% 38%, rgba(255, 255, 255, .08), transparent 32%),
    radial-gradient(ellipse at 58% 64%, rgba(218, 193, 160, .08), transparent 35%);
  filter: url("#incenseDisplace") blur(1.3px);
  opacity: .42;
  transform-origin: 50% 100%;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 66%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 66%, transparent 100%);
  animation: fine-real-smoke 18s ease-in-out infinite;
}

.page-smoke span::before,
.page-smoke span::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(84deg,
      transparent 0 42%,
      rgba(255, 252, 244, .18) 43%,
      rgba(255, 255, 255, .025) 44%,
      transparent 46% 100%);
  filter: url("#incenseDisplace") blur(1.8px);
  opacity: .7;
}

.page-smoke span::after {
  transform: translateX(18px) rotate(8deg) scaleY(.94);
  opacity: .46;
  filter: url("#incenseDisplace") blur(2.4px);
}

.page-smoke span:nth-child(1) {
  top: 8%;
  right: 12%;
  height: 500px;
  opacity: .32;
  animation-delay: -2s;
}

.page-smoke span:nth-child(2) {
  top: 22%;
  left: 15%;
  width: 44px;
  height: 560px;
  opacity: .28;
  animation-delay: -8s;
}

.page-smoke span:nth-child(3) {
  top: 44%;
  right: 30%;
  width: 46px;
  height: 520px;
  opacity: .24;
  animation-delay: -13s;
}

.page-smoke span:nth-child(4) {
  top: 58%;
  left: 8%;
  width: 40px;
  height: 480px;
  opacity: .22;
  animation-delay: -5s;
}

.page-smoke span:nth-child(5) {
  top: 1%;
  left: 46%;
  width: 36px;
  height: 470px;
  opacity: .2;
  animation-delay: -16s;
}

.page-smoke span:nth-child(6) {
  bottom: -16%;
  right: 44%;
  width: 48px;
  height: 540px;
  opacity: .24;
  animation-delay: -10s;
}

@keyframes fine-real-smoke {
  0%, 100% {
    transform: translate3d(0, 26px, 0) rotate(-4deg) scaleX(.72);
    opacity: .18;
  }
  34% {
    transform: translate3d(14px, -34px, 0) rotate(5deg) scaleX(.95);
    opacity: .42;
  }
  68% {
    transform: translate3d(-10px, -82px, 0) rotate(-2deg) scaleX(.82);
    opacity: .26;
  }
}

.smoke-layer {
  opacity: .04;
}

.incense-smoke {
  opacity: .28;
}

.incense-smoke span {
  width: 24px;
  border-right-width: 1px;
  border-right-color: rgba(255, 250, 238, .16);
  filter: url("#incenseDisplace") blur(1.4px);
}

@media (max-width: 720px) {
  .page-smoke {
    opacity: .34;
  }

  .page-smoke span {
    width: 36px;
    height: 410px;
  }
}

/* EDIT: Smoke effect.
   The image comes from assets/incense-smoke-real.png.
   Adjust opacity, background-position, and background-size here to tune the smoke. */
.page-smoke {
  opacity: .66;
  mix-blend-mode: screen;
}

.page-smoke span {
  display: none;
}

.page-smoke::before,
.page-smoke::after {
  content: "";
  position: absolute;
  inset: -24% -8% -4%;
  background-image: url("assets/incense-smoke-real.png");
  background-repeat: repeat-y;
  background-size: min(1040px, 112vw) auto;
  background-position: 50% -140px;
  opacity: .58;
  filter: contrast(1.2) brightness(1.22) saturate(.72) blur(.18px);
  transform-origin: 50% 50%;
  animation: restored-smoke-rise 28s ease-in-out infinite;
}

.page-smoke::after {
  inset: -28% -16% -2%;
  background-size: min(900px, 98vw) auto;
  background-position: 18% -210px;
  opacity: .28;
  filter: contrast(1.28) brightness(1.34) saturate(.62) blur(.45px);
  transform: scaleX(-1) rotate(.7deg);
  animation-duration: 36s;
  animation-delay: -12s;
}

@keyframes restored-smoke-rise {
  0%, 100% {
    transform: translate3d(0, -24px, 0) scale(1);
    opacity: .42;
  }
  42% {
    transform: translate3d(16px, -82px, 0) scale(1.02);
    opacity: .68;
  }
  76% {
    transform: translate3d(-12px, -132px, 0) scale(1.01);
    opacity: .5;
  }
}

@media (max-width: 720px) {
  .page-smoke {
    opacity: .52;
  }

  .page-smoke::before,
  .page-smoke::after {
    inset: -22% -30% 0;
    background-size: 760px auto;
    background-position-y: -120px;
  }
}

/* English layout direction */
html[dir="ltr"] body {
  font-family: 'Jost', 'Segoe UI', Arial, sans-serif;
}

html[dir="ltr"] .topbar-features,
html[dir="ltr"] .topbar-slogan,
html[dir="ltr"] .nav,
html[dir="ltr"] .hero-copy,
html[dir="ltr"] .order-details,
html[dir="ltr"] .features,
html[dir="ltr"] .footer {
  direction: ltr;
}

html[dir="ltr"] .hero-title,
html[dir="ltr"] .hero-desc,
html[dir="ltr"] .order-name,
html[dir="ltr"] .order-desc {
  letter-spacing: 0;
}

html[dir="ltr"] .product-options,
html[dir="ltr"] .order-notes li,
html[dir="ltr"] .footer-contact {
  direction: ltr;
}

/* Hero art direction: an aged incense counter, lit by brass and real smoke. */
.page-smoke,
.svg-filters,
.hero .smoke-layer,
.hero .incense-smoke {
  display: none;
}

.hero {
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 73% 69%, rgba(171, 113, 38, .18), transparent 23%),
    radial-gradient(ellipse at 16% 24%, rgba(116, 74, 30, .16), transparent 32%),
    linear-gradient(122deg, #050301 0%, #0a0602 47%, #030201 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .48;
  background-image:
    linear-gradient(90deg, rgba(221, 177, 94, .055) 1px, transparent 1px),
    linear-gradient(rgba(221, 177, 94, .035) 1px, transparent 1px);
  background-size: 74px 74px;
  -webkit-mask-image: radial-gradient(ellipse at 72% 55%, #000 0%, transparent 62%);
  mask-image: radial-gradient(ellipse at 72% 55%, #000 0%, transparent 62%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(204, 157, 74, .15);
  border-inline-width: 0;
}

.hero-inner {
  z-index: 2;
}

.hero-copy {
  position: relative;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .7);
}

.hero-copy::before {
  content: none;
}

.hero-photo-wrap {
  z-index: 3;
  overflow: visible;
}

.hero-photo-wrap::before {
  content: "";
  position: absolute;
  width: min(78%, 430px);
  aspect-ratio: 1;
  left: 50%;
  bottom: 7%;
  z-index: -1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 179, 83, .19) 0%, rgba(167, 104, 31, .08) 43%, transparent 71%);
  filter: blur(7px);
}

.hero-photo {
  position: relative;
  z-index: 1;
  filter:
    saturate(1.04)
    contrast(1.07)
    drop-shadow(0 38px 58px rgba(0, 0, 0, .88))
    drop-shadow(0 0 26px rgba(214, 161, 69, .17));
}

.hero-smoke {
  position: absolute;
  inset: -18% -22% -5%;
  z-index: 2;
  overflow: visible;
  pointer-events: none;
}

.hero-smoke::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/incense-smoke-alpha.webp");
  background-repeat: no-repeat;
  background-size: 108% auto;
  background-position: 50% 56%;
  mix-blend-mode: screen;
  opacity: .3;
  filter: brightness(1.12) contrast(1.04) saturate(.62) blur(.4px);
  transition: opacity .7s ease;
  -webkit-mask-image: radial-gradient(ellipse at 48% 56%, #000 0%, rgba(0, 0, 0, .68) 46%, transparent 78%);
  mask-image: radial-gradient(ellipse at 48% 56%, #000 0%, rgba(0, 0, 0, .68) 46%, transparent 78%);
}

.hero-smoke.is-live::before {
  opacity: .12;
}

.hero-smoke-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  mix-blend-mode: screen;
  filter: saturate(.72) brightness(1.32) contrast(1.04);
  transition: opacity .8s ease;
}

.hero-smoke.is-live .hero-smoke-canvas {
  opacity: 1;
}

@media (max-width: 900px) {
  .hero-smoke {
    inset: -14% -18% -4%;
  }
}

@media (max-width: 720px) {
  .hero::after {
    inset: 10px;
  }

  .hero-smoke {
    inset: -12% -18% -1%;
  }

  .hero-smoke::before { opacity: .23; }
  .hero-smoke.is-live .hero-smoke-canvas { opacity: .88; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-smoke::before { opacity: .18; }
  .hero-smoke-canvas { display: none; }
}

html[dir="ltr"] .footer-copy {
  text-align: end;
}
