:root {
  --paper: #fff7ed;
  --ink: #2b1710;
  --muted: #7b5e50;
  --red: #b92118;
  --red-dark: #7d150f;
  --gold: #f3b84d;
  --jade: #315f4b;
  --line: rgba(86, 43, 27, 0.16);
  --shadow: 0 18px 34px rgba(43, 20, 10, 0.16);
  --font-main: "Be Vietnam Pro", "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(185, 33, 24, 0.3), transparent 34rem),
    linear-gradient(180deg, #120906, #2a1510 52%, #120906);
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page {
  width: min(100%, 480px);
  min-height: 100vh;
  margin: 0 auto;
  padding-bottom: 92px;
  background: var(--paper);
  box-shadow: 0 0 48px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  color: #fff;
  background: #120906;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 26% 18%, rgba(243, 184, 77, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(18, 9, 6, 0.84) 0%, rgba(18, 9, 6, 0.48) 32%, rgba(18, 9, 6, 0.08) 58%, rgba(18, 9, 6, 0.2) 100%);
}

.hero-copy {
  position: absolute;
  inset: 16px 16px auto;
  z-index: 1;
  display: grid;
  max-width: 310px;
  gap: 8px;
}

.hero-brand {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px 5px 5px;
  border: 1px solid rgba(243, 184, 77, 0.48);
  border-radius: 999px;
  background: rgba(30, 10, 4, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 247, 237, 0.12);
  backdrop-filter: blur(6px);
}

.hero-brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(243, 184, 77, 0.6);
  border-radius: 50%;
  object-fit: cover;
}

.hero-brand span,
.hero-brand strong {
  display: block;
  line-height: 1.15;
}

.hero-brand span {
  color: rgba(255, 247, 237, 0.82);
  font-size: 9px;
  font-weight: 600;
}

.hero-brand strong {
  margin-top: 2px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.kicker {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(31px, 8.5vw, 40px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 700;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
}

.hero-copy p:not(.kicker) {
  max-width: 30ch;
  margin: 0;
  color: rgba(255, 247, 237, 0.9);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.hero-badges span {
  padding: 6px 8px;
  border: 1px solid rgba(255, 231, 166, 0.36);
  border-radius: 999px;
  background: rgba(18, 9, 6, 0.38);
  color: #ffdda0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.hero-actions,
.sticky-cta {
  display: grid;
  gap: 10px;
}

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

.sticky-cta {
  grid-template-columns: 0.82fr 0.82fr 1.12fr;
}

.btn,
.sticky-cta a,
.sticky-cta button,
.product button,
.sound-btn,
.submit-btn,
.success a {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
}

.btn-primary,
.sticky-cta button,
.submit-btn,
.success a {
  background: linear-gradient(135deg, #f4c765, #c92d1e 52%, #8b180f);
  color: #fff;
  box-shadow: 0 14px 28px rgba(185, 33, 24, 0.34);
}

.btn-quiet,
.sticky-cta a {
  background: rgba(255, 247, 237, 0.95);
  color: var(--red-dark);
}

.sticky-cta .zalo-cta {
  background: #0b8fe8;
  color: #fff;
  box-shadow: 0 12px 24px rgba(11, 143, 232, 0.24);
}

.deal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px;
  background: linear-gradient(135deg, #7d150f, #b92118 48%, #f3b84d);
  color: #fff;
}

.deal div {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(45, 12, 5, 0.25);
}

.deal span {
  display: block;
  color: rgba(255, 247, 237, 0.82);
  font-size: 12px;
  font-weight: 500;
}

.deal strong {
  display: block;
  margin-top: 4px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
}

.deal .deal-old-price {
  color: rgba(255, 247, 237, 0.86);
  font-size: 15px;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.deal.expired .deal-old-price {
  color: #fff;
  text-decoration: none;
}

.campaign-reason {
  margin: -4px 12px 12px;
  padding: 9px 12px;
  border: 1px solid rgba(243, 184, 77, 0.42);
  border-radius: 8px;
  background: #fff7e9;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.gift-offer {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 12px;
  margin: 0 12px 14px;
  padding: 10px;
  border: 1px solid rgba(243, 184, 77, 0.58);
  border-radius: 10px;
  background: linear-gradient(135deg, #fffaf1, #fff0cc);
  box-shadow: 0 12px 28px rgba(94, 48, 17, 0.12);
}

.gift-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #32170e;
}

.gift-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 174px;
  object-fit: cover;
}

.gift-badge {
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: 1;
  padding: 5px 7px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.gift-copy {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 5px;
}

.gift-copy h2 {
  margin: 0;
  color: var(--red-dark);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
}

.gift-copy > p:not(.kicker) {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.4;
}

.gift-value {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 7px;
}

.gift-value span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.gift-value del {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.gift-value strong {
  color: var(--red);
  font-size: 20px;
  font-weight: 700;
}

.gift-copy small {
  color: #7c4b25;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.35;
}

.modal-gift {
  margin: 0 0 12px;
  padding: 8px 10px;
  border: 1px dashed rgba(185, 33, 24, 0.42);
  border-radius: 8px;
  background: #fff5dd;
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px;
  background: #fff;
}

.trust-heading {
  grid-column: 1 / -1;
  padding: 2px 0 5px;
}

.trust-heading h2 {
  margin: 2px 0 0;
  color: var(--red-dark);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
}

.trust div {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf3;
}

.trust span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 22px;
  background: var(--jade);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.trust b {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
}

.timer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px;
  padding: 13px;
  border-radius: 8px;
  background: #25110b;
  color: #fff;
  box-shadow: var(--shadow);
}

.timer p {
  margin: 0 0 3px;
  color: rgba(255, 247, 237, 0.72);
  font-size: 12px;
  font-weight: 500;
}

.timer strong {
  color: var(--gold);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.timer.expired strong {
  color: rgba(255, 247, 237, 0.82);
}

.sound-btn {
  min-width: 126px;
  min-height: 42px;
  border: 1px solid rgba(243, 184, 77, 0.4);
  background: rgba(255, 247, 237, 0.08);
  color: #ffe1a3;
  font-size: 12px;
  font-weight: 600;
}

.sound-btn.on {
  background: var(--jade);
  color: #fff;
}

.video-review {
  padding: 18px 12px 20px;
  background: #fffaf3;
}

.video-review h2 {
  margin-bottom: 10px;
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(86, 43, 27, 0.2);
  border-radius: 8px;
  background: #120906;
  box-shadow: 0 14px 28px rgba(43, 20, 10, 0.16);
}

.video-frame iframe,
.video-launch {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-launch {
  position: relative;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  background: #120906;
}

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

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #ff0033;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
  font-size: 25px;
  line-height: 1;
}

.video-review p:not(.kicker) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

section.block,
.culture,
.shop {
  padding: 20px 12px;
}

h2 {
  margin: 6px 0 14px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.products {
  display: grid;
  gap: 10px;
}

.size-guide {
  margin: -2px 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 7px 16px rgba(82, 35, 18, 0.06);
}

.size-guide table {
  width: 100%;
  border-collapse: collapse;
}

.size-guide caption {
  padding: 10px 10px 8px;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.size-guide th,
.size-guide td {
  padding: 9px 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  vertical-align: top;
}

.size-guide th {
  background: #fff7ed;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.size-guide td:first-child {
  color: var(--red-dark);
  font-weight: 700;
}

.product {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 12px;
  min-height: 184px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(82, 35, 18, 0.08);
}

.product.selected {
  border-color: rgba(185, 33, 24, 0.55);
  box-shadow: 0 12px 28px rgba(185, 33, 24, 0.15);
}

.product .photo {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #f7eee2, #fffaf3);
  overflow: hidden;
}

.product img {
  width: 100%;
  height: 164px;
  object-fit: cover;
}

.product.combo img {
  object-fit: contain;
}

.product h3 {
  margin: 0 0 4px;
  color: var(--red-dark);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
}

.product p,
.product small {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.42;
}

.price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  margin: 10px 0;
}

.product-old,
.product-sale {
  display: grid;
  gap: 2px;
}

.product-old small,
.product-sale small {
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
}

.product-old span {
  color: #8e7a70;
  font-size: 12px;
  font-weight: 600;
  text-decoration: line-through;
}

.product-sale {
  justify-items: end;
}

.product-sale small {
  color: var(--red);
}

.product-sale b {
  color: var(--red);
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}

.price.expired {
  justify-content: flex-end;
}

.price.expired small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.price.expired b {
  color: var(--ink);
}

.product button {
  width: 100%;
  min-height: 42px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.product .photo-button {
  position: relative;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  background: linear-gradient(180deg, #f7eee2, #fffaf3);
  color: inherit;
  cursor: zoom-in;
}

.product .photo-button::after {
  content: "+";
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(32, 14, 9, 0.72);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(32, 14, 9, 0.26);
}

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

.feature-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-content: start;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 7px 16px rgba(82, 35, 18, 0.06);
}

.feature-item .icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #f8ead8;
  font-size: 18px;
}

.feature-item h3 {
  margin: 0 0 4px;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.42;
}

.culture {
  position: relative;
  overflow: hidden;
  margin: 0 12px 8px;
  border: 1px solid rgba(222, 173, 78, 0.54);
  border-radius: 10px;
  background:
    linear-gradient(110deg, rgba(255, 214, 124, 0.06), transparent 30%, rgba(0, 0, 0, 0.18) 72%),
    repeating-linear-gradient(
      2deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      rgba(0, 0, 0, 0.035) 2px,
      rgba(0, 0, 0, 0.035) 5px
    ),
    linear-gradient(135deg, #4a2415, #2a120c 48%, #3a1b10);
  color: #f5dca2;
  box-shadow:
    inset 0 0 0 3px rgba(255, 226, 157, 0.045),
    inset 0 18px 40px rgba(255, 190, 81, 0.035),
    0 10px 24px rgba(47, 20, 12, 0.16);
}

.culture::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(233, 191, 105, 0.17);
  border-radius: 6px;
  pointer-events: none;
}

.culture-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: #dcae58;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.culture h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 13px;
  color: #f1c86f;
  font-family: "Playwrite VN", "Segoe Print", "Lucida Handwriting", cursive;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.34);
}

.culture p {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: #f3dca9;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
}

.culture p:last-child {
  margin-bottom: 0;
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.section-head span {
  padding: 5px 9px;
  border-radius: 999px;
  background: #2a1510;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.reviews {
  display: grid;
  gap: 12px;
}

.review {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(69, 35, 20, 0.08);
}

.media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #170b07;
}

.scene {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  cursor: zoom-in;
  background: #170b07;
}

.scene.scene-contain {
  object-fit: contain;
  background: #e9e1db;
}

.media-gallery {
  aspect-ratio: auto;
  display: grid;
  gap: 8px;
  padding: 8px;
}

.review-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 7px;
  background: #170b07;
  object-fit: contain;
}

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

.review-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 7px;
  padding: 0;
  overflow: hidden;
  background: #170b07;
  cursor: zoom-in;
}

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

.avatar {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-image: url("assets/review-avatars-diverse-opt-v1.webp");
  background-repeat: no-repeat;
  background-size: 500% 300%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.18);
}

.review-copy {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 11px 12px 12px;
}

.review-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5px;
}

.reviewer {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.reviewer b {
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
}

.review-head span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.review-copy p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.48;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 1px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
}

.review-meta span {
  color: #e3a11a;
  letter-spacing: 1px;
}

.review-meta time {
  color: var(--muted);
  font-weight: 600;
}

.review-verified {
  width: fit-content;
  padding: 4px 7px;
  border-radius: 999px;
  background: #eef8f2;
  color: #28704f;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 16px;
  background: rgba(18, 9, 6, 0.88);
}

.image-lightbox.open {
  display: grid;
}

.image-lightbox img {
  max-width: min(100%, 480px);
  max-height: 86vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.52);
}

.image-lightbox button {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #fff7ed;
  color: var(--red-dark);
  font-size: 28px;
  line-height: 1;
}

.pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.pager button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--red-dark);
  font-weight: 700;
}

.pager button.active {
  background: var(--red);
  color: #fff;
}

.assurance {
  background: #fffaf3;
}

.assurance ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.assurance li {
  padding: 11px 12px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: #fff;
  color: #3a251b;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.faq-section {
  padding: 20px 12px;
  background: #f8eee3;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-item summary {
  position: relative;
  padding: 12px 42px 12px 12px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f8ead8;
  color: var(--red-dark);
  font-size: 18px;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 12px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
}

.brand-section {
  padding: 20px 12px;
  background:
    radial-gradient(circle at top right, rgba(243, 184, 77, 0.16), transparent 15rem),
    #25110b;
  color: #fff;
}

.brand-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.brand-head img {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border: 1px solid rgba(243, 184, 77, 0.5);
  border-radius: 50%;
  object-fit: cover;
}

.brand-head h2 {
  margin: 4px 0 0;
  color: #fff;
  font-size: 22px;
}

.brand-section > p {
  margin: 0 0 12px;
  color: rgba(255, 247, 237, 0.82);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.58;
}

.brand-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.brand-points span {
  padding: 9px 7px;
  border: 1px solid rgba(243, 184, 77, 0.25);
  border-radius: 8px;
  background: rgba(255, 247, 237, 0.06);
  color: #ffe0a3;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.storefront-section {
  padding: 22px 12px 26px;
  background:
    radial-gradient(circle at 50% 0, rgba(221, 159, 62, 0.13), transparent 22rem),
    #21100b;
  color: #fff8e9;
}

.storefront-kicker {
  margin: 0;
  color: #efb867;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.storefront-section h2 {
  margin: 6px 0 7px;
  color: #fff9ed;
  font-size: clamp(23px, 6vw, 31px);
  line-height: 1.2;
}

.storefront-intro {
  margin: 0 0 14px;
  color: rgba(255, 248, 233, 0.78);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

.storefront-figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(229, 177, 91, 0.34);
  border-radius: 15px;
  background: #160905;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
}

.storefront-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.storefront-figure figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 13px 12px;
  color: rgba(255, 248, 233, 0.72);
  font-size: 10px;
  line-height: 1.45;
}

.storefront-figure figcaption strong {
  color: #f2c47f;
  font-size: 11px;
}

.storefront-figure figcaption span {
  text-align: right;
}

.seller-info {
  position: relative;
  overflow: hidden;
  padding-bottom: 34px;
  background:
    radial-gradient(circle at 50% 0, rgba(204, 143, 55, 0.16), transparent 34%),
    linear-gradient(180deg, #24100a 0%, #160805 100%);
  color: #fff8e9;
}

.seller-info::before,
.seller-info::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(222, 166, 77, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.seller-info::before {
  top: -92px;
  left: -82px;
}

.seller-info::after {
  right: -88px;
  bottom: -92px;
}

.seller-kicker {
  margin: 0;
  color: #efb867;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seller-info h2 {
  margin: 8px 0 12px;
  color: #fff9ed;
  font-size: clamp(25px, 7vw, 34px);
  line-height: 1.16;
}

.worship-divider {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #d49b46;
}

.worship-divider::before,
.worship-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(224, 168, 80, 0.75));
}

.worship-divider::after {
  background: linear-gradient(90deg, rgba(224, 168, 80, 0.75), transparent);
}

.worship-divider span {
  width: 9px;
  height: 9px;
  border: 1px solid #e0a850;
  transform: rotate(45deg);
}

.seller-grid {
  display: grid;
  gap: 10px;
}

.seller-card {
  position: relative;
  padding: 15px 16px;
  border: 1px solid rgba(226, 176, 92, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 248, 230, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.seller-card.address-card {
  grid-column: 1 / -1;
}

.seller-card h3 {
  margin: 0 0 7px;
  color: #f3c98c;
  font-size: 14px;
}

.seller-card p,
.seller-card address {
  margin: 0;
  color: rgba(255, 248, 233, 0.86);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
}

.seller-card a {
  color: #fff8e9;
  text-decoration-color: rgba(239, 184, 103, 0.55);
  text-underline-offset: 3px;
}

.seller-policies {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.seller-policy {
  overflow: hidden;
  border: 1px solid rgba(226, 176, 92, 0.24);
  border-radius: 13px;
  background: rgba(255, 248, 230, 0.055);
}

.seller-policy summary {
  min-height: 54px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff8e9;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.seller-policy summary::-webkit-details-marker {
  display: none;
}

.seller-policy summary::after {
  content: "+";
  color: #efb867;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

.seller-policy[open] summary::after {
  content: "−";
}

.seller-policy p {
  margin: 0;
  padding: 0 16px 15px;
  color: rgba(255, 248, 233, 0.76);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.62;
}

@media (min-width: 700px) {
  .seller-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.brand-footer {
  position: relative;
  overflow: hidden;
  padding: 24px 12px 34px;
  background:
    radial-gradient(circle at 50% 0, rgba(213, 146, 48, 0.14), transparent 23rem),
    linear-gradient(180deg, #26120c 0%, #160805 100%);
  color: #fff8e9;
}

.brand-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 12px;
  left: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 178, 92, 0.62), transparent);
}

.brand-footer-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-footer-head img {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border: 1px solid rgba(229, 177, 91, 0.45);
  border-radius: 50%;
  object-fit: cover;
}

.brand-footer-kicker {
  margin: 0 0 3px;
  color: #efb867;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-footer-head h2 {
  margin: 0;
  color: #fff9ed;
  font-size: clamp(20px, 5.5vw, 27px);
  line-height: 1.18;
}

.brand-footer-copy {
  margin: 14px 0 16px;
  color: rgba(255, 248, 233, 0.8);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

.brand-storefront {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(229, 177, 91, 0.34);
  border-radius: 14px;
  background: #120704;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.brand-storefront img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.brand-storefront figcaption {
  display: grid;
  gap: 2px;
  padding: 10px 12px 11px;
}

.brand-storefront figcaption strong {
  color: #f3c98c;
  font-size: 12px;
}

.brand-storefront figcaption span {
  color: rgba(255, 248, 233, 0.65);
  font-size: 10px;
}

.brand-assurances {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 10px 0 22px;
}

.brand-assurances span {
  min-width: 0;
  padding: 9px 5px;
  border: 1px solid rgba(229, 177, 91, 0.24);
  border-radius: 10px;
  background: rgba(255, 248, 233, 0.045);
  color: rgba(255, 248, 233, 0.7);
  font-size: 9px;
  line-height: 1.35;
  text-align: center;
}

.brand-assurances strong {
  display: block;
  margin-bottom: 2px;
  color: #f3c98c;
  font-size: 12px;
}

.brand-contact {
  padding-top: 20px;
  border-top: 1px solid rgba(229, 177, 91, 0.2);
}

.brand-contact-head {
  margin-bottom: 12px;
}

.brand-contact-head p {
  margin: 0 0 3px;
  color: #efb867;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-contact-head h3 {
  margin: 0;
  color: #fff9ed;
  font-size: 21px;
  line-height: 1.2;
}

.brand-address {
  padding: 14px;
  border: 1px solid rgba(229, 177, 91, 0.26);
  border-radius: 12px;
  background: rgba(255, 248, 233, 0.05);
}

.brand-address h4 {
  margin: 0 0 9px;
  color: #f3c98c;
  font-size: 12px;
}

.brand-address address {
  display: grid;
  gap: 8px;
  margin: 0;
  color: rgba(255, 248, 233, 0.82);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
}

.brand-address address span {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 7px;
}

.brand-address address strong {
  color: #f0c17e;
  font-weight: 700;
}

.brand-contact-list {
  display: grid;
  gap: 7px;
  margin-top: 8px;
}

.brand-contact-list a {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 9px 13px;
  border: 1px solid rgba(229, 177, 91, 0.22);
  border-radius: 11px;
  background: rgba(255, 248, 233, 0.04);
  color: #fff8e9;
  text-decoration: none;
}

.brand-contact-list span {
  color: #efb867;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-contact-list strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 12px;
  font-weight: 600;
}

.brand-footer .seller-policies {
  margin-top: 14px;
}

@media (min-width: 430px) {
  .brand-storefront figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .brand-storefront figcaption span {
    text-align: right;
  }
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 20;
  width: min(100%, 480px);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  background: rgba(24, 10, 5, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 -14px 32px rgba(0, 0, 0, 0.32);
}

.sticky-cta a,
.sticky-cta button {
  min-height: 52px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 600;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: end;
  justify-items: center;
  padding: 12px;
  background: rgba(18, 9, 6, 0.72);
}

.modal.open {
  display: grid;
}

.order {
  position: relative;
  width: min(100%, 456px);
  max-height: calc(100vh - 24px);
  max-height: calc(100dvh - 24px);
  overflow: auto;
  padding: 18px 14px 16px;
  border-radius: 8px;
  background: #fffaf3;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
  overscroll-behavior: contain;
}

.close {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #2a1510;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.summary {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.modal-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -2px 0 12px;
  padding: 9px 11px;
  border: 1px solid rgba(243, 184, 77, 0.5);
  border-radius: 8px;
  background: #fff7e9;
}

.modal-offer span {
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}

.modal-offer strong {
  color: var(--red);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.modal-offer.expired strong {
  color: var(--muted);
}

.summary-image {
  display: block;
  width: 78px;
  height: 78px;
  border-radius: 7px;
  object-fit: cover;
  background: #170b07;
}

.summary-copy {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 3px;
}

.summary-copy span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.summary-copy b {
  color: var(--red-dark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.summary-copy strong {
  color: var(--red);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.summary-prices {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
}

.summary-old {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--muted);
  white-space: nowrap;
}

.summary-old small {
  font-size: 9px;
  font-weight: 500;
}

.summary-old del {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-decoration-thickness: 1.5px;
}

.summary-prices strong::before {
  content: "Sale ";
  font-size: 10px;
  font-weight: 600;
}

.summary-prices.expired .summary-old,
.summary-prices.expired strong::before {
  display: none;
}

form {
  display: grid;
  gap: 10px;
}

label {
  display: grid;
  gap: 5px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.optional-field .field-label {
  color: rgba(48, 29, 23, 0.76);
}

.optional-field small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.optional-field textarea {
  border-color: rgba(224, 211, 195, 0.72);
  background: rgba(255, 255, 255, 0.68);
}

.optional-field textarea::placeholder {
  color: rgba(111, 96, 88, 0.58);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 12px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(185, 33, 24, 0.12);
}

textarea {
  resize: vertical;
}

.submit-btn {
  width: 100%;
  margin-top: 4px;
}

.submit-btn:disabled {
  cursor: wait;
  opacity: 0.68;
}

@media (max-width: 480px) {
  .modal {
    padding: 8px;
  }

  .order {
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
    padding: 12px 12px 10px;
  }

  .order > .kicker {
    margin-right: 40px;
    font-size: 11px;
  }

  .order h2 {
    margin: 2px 40px 7px 0;
    font-size: 21px;
    line-height: 1.08;
  }

  .close {
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .modal-offer {
    margin: -2px 0 6px;
    padding: 6px 8px;
  }

  .modal-offer strong {
    font-size: 15px;
  }

  .summary {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 7px;
    margin-bottom: 6px;
    padding: 5px;
  }

  .summary-image {
    width: 56px;
    height: 56px;
  }

  .summary-copy {
    gap: 1px;
  }

  .summary-copy b {
    font-size: 13px;
    line-height: 1.2;
  }

  .summary-copy strong {
    font-size: 16px;
  }

  .modal-gift {
    margin-bottom: 6px;
    padding: 5px 6px;
    font-size: 9.5px;
    line-height: 1.25;
  }

  form {
    gap: 5px;
  }

  label {
    gap: 2px;
    font-size: 12px;
  }

  input,
  select,
  textarea {
    min-height: 36px;
    padding: 8px 9px;
  }

  textarea[name="address"] {
    height: 38px;
  }

  textarea[name="note"] {
    height: 42px;
  }

  .order .submit-btn {
    min-height: 40px;
    margin-top: 1px;
  }
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.success {
  display: none;
  gap: 8px;
  margin-top: 12px;
  padding: 12px;
  border-radius: 8px;
  background: #eff8f1;
  color: #163c2d;
}

.success.show {
  display: grid;
}

.success.error {
  background: #fff0ed;
  color: #8b180f;
}

.success b {
  font-size: 14px;
  font-weight: 700;
}

.success span {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

.success a {
  min-height: 42px;
}

.thank-you-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 16px;
  background: rgba(18, 9, 6, 0.78);
  backdrop-filter: blur(4px);
}

.thank-you-modal.open {
  display: grid;
}

.thank-you-card {
  position: relative;
  width: min(100%, 420px);
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: 24px 18px 18px;
  border: 1px solid rgba(243, 184, 77, 0.48);
  border-radius: 14px;
  background:
    radial-gradient(circle at top right, rgba(243, 184, 77, 0.16), transparent 14rem),
    #fffaf3;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
  text-align: center;
}

.thank-you-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f4c765, #b92118);
  color: #fff;
  box-shadow: 0 12px 24px rgba(185, 33, 24, 0.24);
  font-size: 28px;
  font-weight: 800;
}

.thank-you-card h2 {
  margin: 4px 28px 8px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.15;
}

.thank-you-card > p {
  margin: 0 auto 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.thank-you-order {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px 12px;
  align-items: center;
  margin: 14px 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  text-align: left;
}

.thank-you-order span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.thank-you-order b {
  color: var(--ink);
  font-size: 13px;
  text-align: right;
}

.thank-you-order strong {
  color: var(--red);
  font-size: 22px;
  line-height: 1;
  text-align: right;
}

.delivery-status {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 3px 9px;
  align-items: center;
  margin: 12px 0 15px;
  padding: 11px;
  border-radius: 9px;
  background: #fff4dc;
  color: #714014;
  text-align: left;
}

.delivery-status .status-dot {
  grid-row: 1 / 3;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e59b20;
  box-shadow: 0 0 0 4px rgba(229, 155, 32, 0.14);
}

.delivery-status b {
  font-size: 12px;
}

.delivery-status small {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.35;
}

.delivery-status.confirmed {
  background: #eaf7ee;
  color: #185235;
}

.delivery-status.confirmed .status-dot {
  background: #2d9660;
  box-shadow: 0 0 0 4px rgba(45, 150, 96, 0.14);
}

.delivery-status.retrying {
  background: #fff0ed;
  color: #8b180f;
}

.delivery-status.retrying .status-dot {
  background: #c43a2e;
  box-shadow: 0 0 0 4px rgba(196, 58, 46, 0.13);
}

.thank-you-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.thank-you-actions button,
.thank-you-actions a {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  cursor: pointer;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.thank-you-actions button {
  background: #f2e7dc;
  color: var(--ink);
}

.thank-you-actions a {
  background: linear-gradient(135deg, #f4c765, #b92118);
  color: #fff;
}

@media (max-width: 360px) {
  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 31px;
  }

  .hero-copy {
    inset: 13px 13px auto;
    gap: 7px;
  }

  .hero-copy p:not(.kicker) {
    font-size: 13px;
  }

  .hero-badges span {
    padding: 5px 7px;
    font-size: 10px;
  }

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

  .gift-offer {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 9px;
  }

  .gift-image img {
    min-height: 160px;
  }

  .gift-copy h2 {
    font-size: 16px;
  }

  .product img {
    height: 210px;
  }

  .summary {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .summary-image {
    width: 54px;
    height: 54px;
  }

  .summary-copy {
    grid-template-columns: 1fr;
  }

  .summary-copy span {
    grid-column: auto;
  }
}

/* Lightweight UI effects live in the page source, not in GTM. */
.hero::after {
  z-index: 0;
}

.hero-copy {
  z-index: 3;
}

/* Neutralize legacy visual-only layers that may still be injected by GTM. */
.page .hero > .dentho-incense-smoke-layer,
.page .hero.dentho-hero-ambient::before {
  content: none !important;
  display: none !important;
  animation: none !important;
}

.page .hero.dentho-hero-ambient::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
  background:
    radial-gradient(circle at 26% 18%, rgba(243, 184, 77, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(18, 9, 6, 0.84) 0%, rgba(18, 9, 6, 0.48) 32%, rgba(18, 9, 6, 0.08) 58%, rgba(18, 9, 6, 0.2) 100%) !important;
  filter: none !important;
  animation: none !important;
}

.hero > .incense-smoke {
  position: absolute !important;
  inset: 0 !important;
  z-index: 5 !important;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  contain: paint;
}

.incense-wisp {
  --drift: 14px;
  --duration: 14s;
  --delay: -6s;
  position: absolute;
  left: var(--x);
  bottom: 30%;
  display: block;
  width: 34px;
  height: 150px;
  border-left: 3px solid rgba(255, 252, 245, 0.76);
  border-radius: 50%;
  opacity: 0;
  filter: blur(2px) drop-shadow(0 0 6px rgba(255, 226, 178, 0.48));
  transform-origin: 50% 100%;
  animation: incenseSmokeRise var(--duration) ease-in-out var(--delay) infinite;
  will-change: transform, opacity;
}

.incense-wisp::before,
.incense-wisp::after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
}

.incense-wisp::before {
  left: 9px;
  top: 24px;
  width: 29px;
  height: 70px;
  border-right: 3px solid rgba(255, 250, 241, 0.8);
  transform: rotate(13deg);
}

.incense-wisp::after {
  left: -5px;
  top: 74px;
  width: 31px;
  height: 55px;
  border-left: 3px solid rgba(250, 237, 218, 0.66);
  transform: rotate(-11deg);
}

.incense-wisp.w1 {
  --x: 50%;
  --drift: 13px;
  --duration: 14s;
  --delay: -6s;
}

@keyframes incenseSmokeRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.72) rotate(-5deg);
  }
  14% {
    opacity: 0.36;
  }
  38% {
    opacity: 0.58;
  }
  67% {
    opacity: 0.42;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--drift), -132px, 0) scale(1.16) rotate(7deg);
  }
}

@keyframes altarWarmBreath {
  0%,
  100% {
    filter: saturate(1.08) contrast(1.04) brightness(1);
  }
  50% {
    filter: saturate(1.12) contrast(1.04) brightness(1.045);
  }
}

.hero > img {
  animation: altarWarmBreath 16s ease-in-out infinite;
}

@keyframes ctaGentleAttention {
  0%,
  72%,
  100% {
    transform: translateY(0) scale(1);
    filter: brightness(1);
  }
  80% {
    transform: translateY(-2px) scale(1.016);
    filter: brightness(1.05);
  }
  89% {
    transform: translateY(0) scale(1);
    filter: brightness(1);
  }
}

.sticky-actions a,
#submitOrderButton {
  transform-origin: center;
  animation: ctaGentleAttention 5.2s ease-in-out infinite;
}

.product img {
  transition: transform 0.65s ease;
}

.product:active img {
  transform: scale(1.035);
}

@media (prefers-reduced-motion: reduce) {
  .incense-wisp,
  .hero > img,
  .sticky-actions a,
  #submitOrderButton {
    animation: none !important;
  }
}
