/* ============================================================
   Arkan — Product Detail Page (Jumeriah). Spec: _build/specs/product.md
   Section paddings, colors, radii mirror the prototype exactly.
   ============================================================ */

.arkan-pdp {
  background: var(--cream);
}

/* Shared recipes ------------------------------------------------ */
.arkan-pdp-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  color: var(--burgundy);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.arkan-pdp-imgpanel {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--well);
  box-shadow: 0 16px 50px rgba(45, 10, 18, 0.08);
}

.arkan-pdp-imgpanel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Section head (centered) */
.arkan-pdp-sechead {
  text-align: center;
  margin-bottom: 56px;
}

.arkan-pdp-sechead .arkan-pdp-eyebrow {
  margin-bottom: 14px;
}

.arkan-pdp-sechead__title {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 12px;
}

.arkan-pdp-sechead__sub {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--body-2);
}

/* Solid pill CTA (Add to Cart) */
.arkan-pdp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 30px;
  cursor: pointer;
  height: 52px;
  padding: 0 28px;
  border: none;
}

.arkan-pdp-btn--cart {
  background: var(--burgundy);
  color: #fff;
  transition: background 0.25s, transform 0.15s;
}

.arkan-pdp-btn--cart:hover {
  background: var(--burgundy-dark);
  color: #fff;
}

.arkan-pdp-btn--cart:active {
  transform: scale(0.98);
}

.arkan-pdp-btn--buy {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  transition: background 0.25s, color 0.25s;
}

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

/* Maroon outline CTA */
.arkan-pdp-pillout {
  display: inline-block;
  background: transparent;
  border: 1.5px solid var(--burgundy);
  color: var(--burgundy);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 38px;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.arkan-pdp-pillout:hover {
  background: var(--burgundy);
  color: #fff;
  border-color: var(--burgundy);
}

.arkan-pdp-pillout--block {
  display: block;
  width: 100%;
  padding: 15px;
}

/* Reveal animation */
.reveal {
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body.anim .reveal:not(.in) {
  opacity: 0;
  transform: translateY(26px);
}

.reveal.in {
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================================
   Breadcrumb (§3.0)
   ============================================================ */
.arkan-pdp-crumbs {
  width: 100%;
  background: var(--cream);
  padding: 22px 48px 0;
}

.arkan-pdp-crumbs__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--body-2);
}

.arkan-pdp-crumbs__link {
  color: var(--body-2);
  transition: color 0.2s;
}

.arkan-pdp-crumbs__link:hover {
  color: var(--burgundy);
}

.arkan-pdp-crumbs__sep {
  opacity: 0.5;
}

.arkan-pdp-crumbs__current {
  color: var(--burgundy);
  font-weight: 400;
}

/* ============================================================
   01 HERO (§3.1)
   ============================================================ */
.arkan-pdp-hero {
  width: 100%;
  background: var(--cream);
  padding: 36px 48px 84px;
}

.arkan-pdp-hero__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Gallery
   The thumb rail is absolutely positioned so the gallery's height is driven by
   the MAIN image alone. A plain `grid-template-columns: 88px 1fr` let a rail of
   7 thumbs (905px) out-grow the main image (672px) and stretched the whole hero
   into a tall, lopsided column. The rail now always matches the main image. */
.arkan-pdp-gallery {
  position: sticky;
  top: 96px;
  padding-inline-start: 106px; /* 88px rail + 18px gutter */
}

.arkan-pdp-gallery__thumbs {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 88px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.arkan-pdp-gallery__thumbs::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.arkan-pdp-gallery__thumb {
  /* Shrink to share the rail height; only scroll once they'd get too small. */
  flex: 0 1 auto;
  min-height: 64px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  background: var(--well);
  border: 1.5px solid rgba(26, 22, 20, 0.1);
  padding: 0;
  transition: border-color 0.25s, opacity 0.25s;
}

.arkan-pdp-gallery__thumb.is-active {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 1px var(--burgundy);
}

/* Hover-only so a tap doesn't leave a thumb stuck at 80% on touch devices. */
@media (hover: hover) {
  .arkan-pdp-gallery__thumb:hover {
    opacity: 0.8;
  }
}

.arkan-pdp-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.arkan-pdp-gallery__main {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--well);
  box-shadow: 0 16px 50px rgba(45, 10, 18, 0.08);
}

.arkan-pdp-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media (hover: hover) {
  .arkan-pdp-gallery__main:hover .arkan-pdp-gallery__main-img {
    transform: scale(1.06);
  }
}

/* Info column */
.arkan-pdp-info {
  padding-top: 8px;
}

.arkan-pdp-info__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  color: var(--burgundy);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.arkan-pdp-info__title {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.arkan-pdp-info__lede {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--body-2);
  line-height: 1.75;
  max-width: 440px;
}

.arkan-pdp-info__rule {
  height: 1px;
  background: rgba(26, 22, 20, 0.1);
  margin: 30px 0;
}

.arkan-pdp-info__rule--tight {
  margin: 0 0 22px;
}

/* Price block */
.arkan-pdp-price {
  margin-bottom: 26px;
}

.arkan-pdp-price__row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}

.arkan-pdp-price__val {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  color: var(--burgundy);
}

.arkan-pdp-price__edp {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--body-2);
}

.arkan-pdp-bnpl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cream-2);
  border: 1px solid rgba(107, 29, 44, 0.16);
  border-radius: 30px;
  padding: 7px 8px 7px 16px;
}

.arkan-pdp-bnpl__text {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 300;
  color: var(--body-2);
}

.arkan-pdp-bnpl__amt {
  font-weight: 600;
  color: var(--ink);
}

.arkan-pdp-bnpl__badge {
  color: #fff;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: 20px;
}

.arkan-pdp-bnpl__badge--tabby {
  background: var(--burgundy);
}

.arkan-pdp-bnpl__badge--tamara {
  background: var(--ink);
}

/* Size label + pills */
.arkan-pdp-info__label {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 13px;
}

.arkan-pdp-sizes {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.arkan-pdp-size {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid rgba(26, 22, 20, 0.18);
  border-radius: 8px;
  padding: 13px 26px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.arkan-pdp-size:hover {
  border-color: var(--burgundy);
}

.arkan-pdp-size.is-active {
  font-weight: 500;
  color: #fff;
  background: var(--burgundy);
  border-color: var(--burgundy);
}

/* Size Guide text-button */
.arkan-pdp-sizeguide-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--burgundy);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: -6px 0 20px 2px;
  padding: 0;
}

/* Sample toggle */
.arkan-pdp-sample {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid rgba(26, 22, 20, 0.16);
  border-radius: 12px;
  padding: 14px 18px;
  cursor: pointer;
  margin-bottom: 26px;
  transition: border-color 0.2s, background 0.2s;
}

.arkan-pdp-sample__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.arkan-pdp-sample__box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid rgba(26, 22, 20, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.arkan-pdp-sample__box svg {
  opacity: 0;
  transition: opacity 0.2s;
}

.arkan-pdp-sample.is-on {
  border-color: var(--burgundy);
  background: #fbf5f1;
}

.arkan-pdp-sample.is-on .arkan-pdp-sample__box {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.arkan-pdp-sample.is-on .arkan-pdp-sample__box svg {
  opacity: 1;
}

.arkan-pdp-sample__text {
  flex: 1;
}

.arkan-pdp-sample__title {
  display: block;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
}

.arkan-pdp-sample__sub {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--body-2);
  margin-top: 2px;
}

.arkan-pdp-sample__price {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--burgundy);
  white-space: nowrap;
}

/* Availability */
.arkan-pdp-avail {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.arkan-pdp-avail__item {
  display: flex;
  align-items: center;
  gap: 9px;
}

.arkan-pdp-avail__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2f8f5b;
  box-shadow: 0 0 0 3px rgba(47, 143, 91, 0.16);
}

.arkan-pdp-avail__stock {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--ink);
}

.arkan-pdp-avail__ship {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--body-2);
}

/* CTA row */
.arkan-pdp-cta {
  display: flex;
  gap: 14px;
  align-items: stretch;
  margin-bottom: 18px;
}

.arkan-pdp-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(26, 22, 20, 0.18);
  border-radius: 30px;
  overflow: hidden;
}

.arkan-pdp-qty__btn {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 52px;
  font-size: 18px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.arkan-pdp-qty__btn:hover {
  background: var(--well);
}

.arkan-pdp-qty__val {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  width: 30px;
  text-align: center;
}

.arkan-pdp-cta .arkan-pdp-btn--cart,
.arkan-pdp-cta .arkan-pdp-btn--buy {
  flex: 1;
}

/* Wishlist (TI plugin re-skin) */
.arkan-pdp-wish {
  margin-bottom: 30px;
}

/* Perk strip */
.arkan-pdp-perks {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.arkan-pdp-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.arkan-pdp-perk--center {
  justify-content: center;
}

.arkan-pdp-perk--end {
  justify-content: flex-end;
}

.arkan-pdp-perk span {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 400;
  color: var(--body-2);
}

.arkan-pdp-perks__div {
  width: 1px;
  height: 22px;
  background: rgba(26, 22, 20, 0.12);
}

/* ============================================================
   02 FRAGRANCE NOTES (§3.2)
   ============================================================ */
.arkan-pdp-notes {
  width: 100%;
  background: #fff;
  padding: 96px 48px;
}

.arkan-pdp-notes__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  /* minmax(0, …) — a bare 1fr is minmax(auto, 1fr) and refuses to shrink below
     the max-content of the note cards, clipping them on narrow screens. */
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.arkan-pdp-notes__title {
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.04;
  margin-bottom: 14px;
}

.arkan-pdp-notes__sub {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--body-2);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.arkan-pdp-notecards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.arkan-pdp-notecard {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--cream);
  border: 1px solid rgba(45, 10, 18, 0.08);
  border-radius: 16px;
  padding: 24px 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.arkan-pdp-notecard:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(45, 10, 18, 0.1);
}

.arkan-pdp-notecard__num {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(107, 29, 44, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 500;
  color: var(--burgundy);
}

.arkan-pdp-notecard__num--i,
.arkan-pdp-notecard__num--ii {
  font-size: 22px;
}

.arkan-pdp-notecard__num--iii {
  font-size: 20px;
}

.arkan-pdp-notecard__body {
  flex: 1;
  /* Flex items default to min-width:auto; without this the note text cannot
     shrink and pushes the card past the viewport. */
  min-width: 0;
}

.arkan-pdp-notecard__label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--burgundy);
  text-transform: uppercase;
  margin-bottom: 6px;
  overflow-wrap: break-word;
}

.arkan-pdp-notecard__val {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  /* Long note lists must wrap rather than widen the card. */
  overflow-wrap: break-word;
}

/* Meter cards */
.arkan-pdp-meters {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.arkan-pdp-meter {
  background: var(--cream);
  border: 1px solid rgba(45, 10, 18, 0.08);
  border-radius: 16px;
  padding: 22px 24px;
}

.arkan-pdp-meter__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  /* Keeps the label and value from touching once the card narrows. */
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.arkan-pdp-meter__label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
}

.arkan-pdp-meter__val {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--burgundy);
}

.arkan-pdp-meter__track {
  height: 6px;
  border-radius: 6px;
  background: #e6ddd2;
  overflow: hidden;
}

.arkan-pdp-meter__fill {
  height: 100%;
  border-radius: 6px;
  background: var(--burgundy);
}

/* ============================================================
   03 ABOUT (§3.3)
   ============================================================ */
.arkan-pdp-about {
  width: 100%;
  background: var(--cream);
  padding: 96px 48px;
}

.arkan-pdp-about__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.arkan-pdp-about__accent {
  width: 40px;
  height: 1.5px;
  background: var(--burgundy);
  margin-bottom: 26px;
}

.arkan-pdp-about__title {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.06;
  margin-bottom: 26px;
}

.arkan-pdp-about__copy {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--body-2);
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 40px;
}

.arkan-pdp-feats {
  display: flex;
  gap: 0;
  margin-bottom: 42px;
}

.arkan-pdp-feat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 0 12px;
}

.arkan-pdp-feat__ic {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(107, 29, 44, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}

.arkan-pdp-feat:hover .arkan-pdp-feat__ic {
  transform: translateY(-4px);
}

.arkan-pdp-feat__label {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1.5;
}

.arkan-pdp-feat__div {
  width: 1px;
  background: rgba(26, 22, 20, 0.12);
}

/* ============================================================
   04 RITUAL BANNER (§3.4)
   ============================================================ */
.arkan-pdp-ritual {
  width: 100%;
  min-height: 560px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}

.arkan-pdp-ritual__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20, 6, 10, 0.7) 0%, rgba(20, 6, 10, 0.4) 60%, rgba(20, 6, 10, 0.55) 100%);
}

.arkan-pdp-ritual__content {
  position: relative;
  text-align: center;
  padding: 0 24px;
  max-width: 760px;
}

.arkan-pdp-ritual__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-bottom: 26px;
}

.arkan-pdp-ritual__quote {
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.3;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.arkan-pdp-ritual__rule {
  width: 44px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.55);
  margin: 30px auto 0;
}

/* ============================================================
   05 DETAILS & CARE (§3.5)
   ============================================================ */
.arkan-pdp-details {
  width: 100%;
  background: var(--cream-2);
  padding: 96px 48px;
}

.arkan-pdp-details__inner {
  max-width: 1320px;
  margin: 0 auto;
}

.arkan-pdp-details__split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 56px;
}

.arkan-pdp-details__img {
  position: sticky;
  top: 96px;
}

.arkan-pdp-acc {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(45, 10, 18, 0.05);
}

.arkan-pdp-acc__item + .arkan-pdp-acc__item {
  border-top: 1px solid rgba(26, 22, 20, 0.08);
}

.arkan-pdp-acc__head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 24px 28px;
  text-align: left;
  transition: background 0.2s;
}

.arkan-pdp-acc__head:hover {
  background: #f7f1ea;
}

.arkan-pdp-acc__ic {
  display: inline-flex;
  flex-shrink: 0;
}

.arkan-pdp-acc__title {
  flex: 1;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-transform: uppercase;
}

.arkan-pdp-acc__sign {
  font-size: 22px;
  color: #8a8078;
  font-family: var(--sans);
  line-height: 1;
}

.arkan-pdp-acc__item.is-open .arkan-pdp-acc__sign {
  color: var(--burgundy);
}

.arkan-pdp-acc__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.arkan-pdp-acc__copy {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--body-2);
  line-height: 1.85;
  padding: 0 28px 26px 64px;
}

/* Trust strip */
.arkan-pdp-trust {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(45, 10, 18, 0.05);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 8px;
}

.arkan-pdp-trust__cell {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 28px;
  /* Logical: mirrors itself in RTL, no dir-specific override needed. */
  border-inline-end: 1px solid rgba(26, 22, 20, 0.08);
}

.arkan-pdp-trust__cell:last-child {
  border-inline-end: none;
}

.arkan-pdp-trust__cell svg {
  flex-shrink: 0;
}

.arkan-pdp-trust__title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.arkan-pdp-trust__sub {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 300;
  color: var(--body-2);
  line-height: 1.6;
}

/* ============================================================
   05b REVIEWS (§3.6)
   ============================================================ */
.arkan-pdp-reviews {
  width: 100%;
  background: var(--cream);
  padding: 96px 48px;
}

.arkan-pdp-reviews__inner {
  max-width: 1320px;
  margin: 0 auto;
}

.arkan-pdp-reviews__split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.arkan-pdp-rating {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(45, 10, 18, 0.05);
  padding: 40px 36px;
  text-align: center;
  position: sticky;
  top: 96px;
}

.arkan-pdp-rating__score {
  font-family: var(--serif);
  font-size: 68px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}

.arkan-pdp-rating__stars {
  color: #d4a017;
  font-size: 18px;
  letter-spacing: 3px;
  margin: 10px 0 8px;
}

.arkan-pdp-rating__caption {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 300;
  color: var(--body-2);
  margin-bottom: 28px;
}

.arkan-pdp-rating__dist {
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: left;
  margin-bottom: 30px;
}

.arkan-pdp-rating__row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.arkan-pdp-rating__lbl {
  font-family: var(--sans);
  font-size: 10.5px;
  color: var(--body-2);
  width: 26px;
}

.arkan-pdp-rating__track {
  flex: 1;
  height: 6px;
  border-radius: 6px;
  background: var(--well);
  overflow: hidden;
}

.arkan-pdp-rating__fill {
  height: 100%;
  background: var(--burgundy);
}

/* Review cards */
.arkan-pdp-reviews__cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.arkan-pdp-review {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 36px rgba(45, 10, 18, 0.05);
  padding: 30px 32px;
}

.arkan-pdp-review__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.arkan-pdp-review__who {
  display: flex;
  align-items: center;
  gap: 14px;
}

.arkan-pdp-review__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  flex-shrink: 0;
}

.arkan-pdp-review__name {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
}

.arkan-pdp-review__meta {
  font-family: var(--sans);
  font-size: 10px;
  color: #a89e96;
}

.arkan-pdp-review__stars {
  color: #d4a017;
  font-size: 13px;
  letter-spacing: 2px;
  flex-shrink: 0;
}

.arkan-pdp-review__quote {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  font-style: italic;
  color: #2c2420;
  line-height: 1.5;
}

.arkan-pdp-reviewform {
  margin-top: 40px;
}

/* ============================================================
   06 GIFT EXPERIENCE (§3.7)
   ============================================================ */
.arkan-pdp-gift {
  width: 100%;
  background: #fff;
}

.arkan-pdp-gift__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.arkan-pdp-gift__img {
  overflow: hidden;
  background: var(--well);
}

.arkan-pdp-gift__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.arkan-pdp-gift__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px;
}

.arkan-pdp-gift__title {
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 18px;
}

.arkan-pdp-gift__copy {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--body-2);
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 44px;
}

.arkan-pdp-gift__feats {
  display: flex;
  gap: 0;
}

.arkan-pdp-gift__feat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 0 16px;
  /* Without this the three cells cannot shrink below their longest word and
     the row runs off the right edge at phone widths. */
  min-width: 0;
}

.arkan-pdp-gift__ic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f7f1ea;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}

.arkan-pdp-gift__feat:hover .arkan-pdp-gift__ic {
  transform: translateY(-4px);
}

.arkan-pdp-gift__label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1.5;
  overflow-wrap: break-word;
}

/* ============================================================
   06b COMPLETE THE RITUAL (§3.8)
   ============================================================ */
.arkan-pdp-bundle-sec {
  width: 100%;
  background: var(--cream-2);
  padding: 84px 48px;
}

.arkan-pdp-bundle {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 50px rgba(45, 10, 18, 0.06);
  padding: 44px 48px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.arkan-pdp-bundle__lead {
  flex-shrink: 0;
}

.arkan-pdp-bundle__kicker {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--burgundy);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.arkan-pdp-bundle__title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  max-width: 230px;
}

.arkan-pdp-bundle__items {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.arkan-pdp-bundle__item {
  text-align: center;
}

.arkan-pdp-bundle__thumb {
  width: 92px;
  height: 112px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--well);
  margin-bottom: 8px;
}

.arkan-pdp-bundle__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.arkan-pdp-bundle__name {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
}

.arkan-pdp-bundle__price {
  font-family: var(--sans);
  font-size: 10.5px;
  color: var(--burgundy);
}

.arkan-pdp-bundle__plus {
  font-family: var(--serif);
  font-size: 26px;
  color: #b0a69e;
}

.arkan-pdp-bundle__totals {
  flex-shrink: 0;
  text-align: center;
  border-left: 1px solid rgba(26, 22, 20, 0.1);
  padding-left: 36px;
}

.arkan-pdp-bundle__totlabel {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 300;
  color: var(--body-2);
  margin-bottom: 4px;
}

.arkan-pdp-bundle__totrow {
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: center;
  margin-bottom: 4px;
}

.arkan-pdp-bundle__tot {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--burgundy);
}

.arkan-pdp-bundle__save {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  color: #2f8f5b;
  margin-bottom: 18px;
}

.arkan-pdp-bundle__btn {
  height: auto;
  padding: 14px 30px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

/* ============================================================
   07 MORE FROM ARKAN (§3.9)
   ============================================================ */
.arkan-pdp-related {
  width: 100%;
  background: var(--cream);
  padding: 96px 48px;
}

.arkan-pdp-related__inner {
  max-width: 1320px;
  margin: 0 auto;
}

.arkan-pdp-relgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.arkan-pdp-relcard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(45, 10, 18, 0.05);
}

.arkan-pdp-relcard__frame {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--well);
}

.arkan-pdp-relcard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.arkan-pdp-relcard:hover .arkan-pdp-relcard__img {
  transform: scale(1.06);
}

.arkan-pdp-relcard__body {
  padding: 24px 22px 26px;
  text-align: center;
}

.arkan-pdp-relcard__name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}

.arkan-pdp-relcard__tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--body-2);
  margin-bottom: 16px;
}

.arkan-pdp-relcard__price {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--burgundy);
  margin-bottom: 20px;
}

.arkan-pdp-relcard__btn {
  display: block;
  background: var(--burgundy);
  color: #fff;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px;
  border-radius: 26px;
  transition: background 0.25s;
}

.arkan-pdp-relcard__btn:hover {
  background: var(--burgundy-dark);
  color: #fff;
}

/* ============================================================
   08 SERVICE STRIP (§3.10)
   ============================================================ */
.arkan-pdp-service {
  width: 100%;
  background: var(--cream-2);
  padding: 44px 48px;
  border-top: 1px solid rgba(26, 22, 20, 0.07);
}

.arkan-pdp-service__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.arkan-pdp-service__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.arkan-pdp-service__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-transform: uppercase;
}

/* ============================================================
   STICKY ADD-TO-CART BAR (§3.11)
   ============================================================ */
.arkan-pdp-stickybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  background: #fff;
  border-top: 1px solid rgba(26, 22, 20, 0.1);
  box-shadow: 0 -6px 30px rgba(45, 10, 18, 0.08);
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.arkan-pdp-stickybar.is-visible {
  transform: translateY(0);
}

.arkan-pdp-stickybar__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 48px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.arkan-pdp-stickybar__thumb {
  width: 48px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--well);
  flex-shrink: 0;
}

.arkan-pdp-stickybar__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.arkan-pdp-stickybar__meta {
  flex: 1;
  min-width: 0;
}

.arkan-pdp-stickybar__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}

.arkan-pdp-stickybar__size {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--body-2);
  margin-top: 3px;
}

.arkan-pdp-stickybar__price {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--burgundy);
}

.arkan-pdp-stickybar__btn {
  height: 50px;
  padding: 0 40px;
}

/* Scroll-top sits above the sticky bar on this page (§3.12). */
.arkan-pdp .arkan-scroll-top,
body.single-product .arkan-scroll-top {
  bottom: 86px;
}

/* ============================================================
   SIZE GUIDE MODAL (§5.4)
   ============================================================ */
.arkan-pdp-sizeguide {
  position: fixed;
  inset: 0;
  z-index: 3200;
}

.arkan-pdp-sizeguide__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 10, 14, 0.55);
  animation: arkan-pdp-fade 0.25s ease;
}

@keyframes arkan-pdp-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.arkan-pdp-sizeguide__panel {
  position: relative;
  max-width: 560px;
  margin: 12vh auto 0;
  background: var(--cream);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  padding: 32px 34px 34px;
  animation: arkan-pdp-fade 0.25s ease;
}

.arkan-pdp-sizeguide__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.arkan-pdp-sizeguide__title {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  color: var(--ink);
}

.arkan-pdp-sizeguide__close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--ink);
  display: inline-flex;
  padding: 4px;
}

.arkan-pdp-sizeguide__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(26, 22, 20, 0.08);
  font-family: var(--sans);
  font-size: 13px;
  color: var(--body-2);
  align-items: baseline;
}

.arkan-pdp-sizeguide__row--head span:not(:first-child) {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--burgundy);
}

.arkan-pdp-sizeguide__k {
  font-weight: 500;
  color: var(--ink);
}

.arkan-pdp-sizeguide__note {
  font-family: var(--sans);
  font-size: 11.5px;
  color: #8a8078;
  line-height: 1.7;
  margin-top: 16px;
}

/* ============================================================
   RIGHT-EDGE DOT NAV (§5.5, injected by JS)
   ============================================================ */
.arkan-pdp-dots {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1080;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.arkan-pdp-dots.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.arkan-pdp-dots__dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(107, 29, 44, 0.28);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}

.arkan-pdp-dots__dot.is-active {
  background: var(--burgundy);
  transform: scale(1.35);
}

.arkan-pdp-dots__label {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: var(--cream);
  border-radius: 20px;
  padding: 5px 12px;
  box-shadow: 0 4px 14px rgba(45, 10, 18, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.arkan-pdp-dots__dot:hover .arkan-pdp-dots__label {
  opacity: 1;
}

/* ============================================================
   TI WISHLIST BUTTON RE-SKIN (design "Add to Wishlist" line)
   ============================================================ */
.arkan-pdp-wish .tinv-wishlist {
  margin: 0;
  padding: 0;
}

.arkan-pdp-wish .tinv-wishlist .tinvwl_add_to_wishlist_button,
.arkan-pdp-wish .tinv-wishlist a.tinvwl_add_to_wishlist-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 8px 0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: none;
  line-height: 1;
  transition: color 0.2s;
}

.arkan-pdp-wish .tinv-wishlist .tinvwl_add_to_wishlist_button:hover,
.arkan-pdp-wish .tinv-wishlist a.tinvwl_add_to_wishlist-button:hover {
  color: var(--burgundy);
  background: transparent;
}

/* Heart glyph from the plugin -> stroke burgundy, sized to design */
.arkan-pdp-wish .tinvwl_add_to_wishlist_button::before,
.arkan-pdp-wish .tinvwl-icon-heart::before {
  font-size: 17px;
  color: currentColor;
}

.arkan-pdp-wish .tinvwl_add_to_wishlist_button.tinvwl-product-in-list {
  color: var(--burgundy);
}

/* Hide any inline plugin loader/messages inside the button area */
.arkan-pdp-wish .tinvwl-tooltip {
  display: none;
}

/* ============================================================
   RESPONSIVE (spec §Responsive rules)
   ============================================================ */
@media (max-width: 1000px) {
  .arkan-pdp-hero__inner {
    /* minmax(0, 1fr), not 1fr — a `1fr` track floors at the item's min-content
       width, which the horizontal thumb strip below would blow out to 522px. */
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  /* Single-column gallery: main image on top, thumbs in a scrollable strip
     below it — so the main image is always in view while you tap through. */
  .arkan-pdp-gallery {
    position: static;
    padding-inline-start: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
  }
  .arkan-pdp-gallery__main {
    order: -1;
  }
  .arkan-pdp-gallery__thumbs {
    position: static;
    width: auto;
    min-width: 0;
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
  }
  .arkan-pdp-gallery__thumb {
    flex: 0 0 auto;
    width: 66px;
    min-height: 0;
  }
  /* Sticky side-image is meaningless in a single-column layout — it detaches
     and rides the scroll over the accordion. Pin it back into the flow. */
  .arkan-pdp-details__img {
    position: static;
    top: auto;
  }
  .arkan-pdp-notes__inner,
  .arkan-pdp-about__inner,
  .arkan-pdp-details__split,
  .arkan-pdp-reviews__split,
  .arkan-pdp-gift__inner {
    /* minmax(0, 1fr), not 1fr — see .arkan-pdp-notes__inner above. */
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  /* Meter cards stack; side by side they clip below ~430px. */
  .arkan-pdp-meters {
    grid-template-columns: minmax(0, 1fr);
  }
  .arkan-pdp-gift__body {
    padding: 48px 34px;
  }
  .arkan-pdp-ritual {
    background-attachment: scroll;
  }
  /* 2x2 — keep dividers on the grid lines, not on the outer edges. */
  .arkan-pdp-trust {
    grid-template-columns: repeat(2, 1fr);
  }
  .arkan-pdp-trust__cell {
    border-inline-end: none;
    border-bottom: 1px solid rgba(26, 22, 20, 0.08);
  }
  .arkan-pdp-trust__cell:nth-child(odd) {
    border-inline-end: 1px solid rgba(26, 22, 20, 0.08);
  }
  .arkan-pdp-trust__cell:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .arkan-pdp-relgrid,
  .arkan-pdp-service__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .arkan-pdp-bundle {
    flex-direction: column;
    align-items: stretch;
    gap: 26px;
    text-align: center;
  }
  .arkan-pdp-bundle__totals {
    border-left: none;
    border-top: 1px solid rgba(26, 22, 20, 0.1);
    padding-left: 0;
    padding-top: 26px;
  }
}

@media (max-width: 900px) {
  .arkan-pdp-crumbs,
  .arkan-pdp-hero,
  .arkan-pdp-notes,
  .arkan-pdp-about,
  .arkan-pdp-details,
  .arkan-pdp-reviews,
  .arkan-pdp-bundle-sec,
  .arkan-pdp-related,
  .arkan-pdp-service {
    padding-left: 20px;
    padding-right: 20px;
  }
  .arkan-pdp-stickybar__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 600px) {
  .arkan-pdp-info__title {
    font-size: 44px;
  }
  .arkan-pdp-cta {
    flex-wrap: wrap;
  }
  .arkan-pdp-cta .arkan-pdp-btn--cart,
  .arkan-pdp-cta .arkan-pdp-btn--buy {
    flex: 1 1 100%;
  }
  .arkan-pdp-relgrid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  /* One column: dividers become horizontal rules between rows. */
  .arkan-pdp-trust,
  .arkan-pdp-service__inner {
    grid-template-columns: 1fr;
  }
  .arkan-pdp-trust__cell,
  .arkan-pdp-trust__cell:nth-child(odd) {
    border-inline-end: none;
    border-bottom: 1px solid rgba(26, 22, 20, 0.08);
    padding: 18px 20px;
  }
  .arkan-pdp-trust__cell:last-child {
    border-bottom: none;
  }
  /* Perk strip: three icon-over-label columns. At 390 the horizontal form
     needed 424px and wrapped, orphaning "Secure payment" onto its own
     full-width line. Equal, non-wrapping columns instead. */
  .arkan-pdp-perks {
    flex-wrap: nowrap;
    gap: 4px;
    /* Top-aligned: at ~320px "Secure payment" takes two lines, and centering
       would push that column's icon off the row's axis. */
    align-items: flex-start;
  }
  .arkan-pdp-perk,
  .arkan-pdp-perk--center,
  .arkan-pdp-perk--end {
    flex: 1 1 0;
    min-width: 0;
    flex-direction: column;
    justify-content: flex-start;
    gap: 7px;
    text-align: center;
  }
  .arkan-pdp-perk span {
    font-size: 11px;
    line-height: 1.3;
  }
  .arkan-pdp-perks__div {
    height: 42px;
    align-self: center;
  }
  .arkan-pdp-service__inner {
    gap: 16px;
  }
  .arkan-pdp-stickybar__price {
    display: none;
  }
  .arkan-pdp-gift__body {
    padding: 40px 22px;
  }
  /* Reclaim the side padding so the three gift features still fit at 320px. */
  .arkan-pdp-gift__feat {
    padding: 0 6px;
  }
  .arkan-pdp-sec {
    padding-bottom: 60px;
  }
}

/* Section pad-y drops apply to the .pr-sec-pb equivalents at ≤900px too */
@media (max-width: 900px) {
  .arkan-pdp-notes,
  .arkan-pdp-about,
  .arkan-pdp-details,
  .arkan-pdp-reviews,
  .arkan-pdp-related {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .arkan-pdp-bundle-sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* ============================================================
   RTL — mirror directional geometry (§Gotcha 8)
   ============================================================ */
html[dir='rtl'] .arkan-pdp-sizeguide-link {
  margin: -6px 2px 20px 0;
}

/* Right-edge dot nav sits on the left in Arabic. */
html[dir='rtl'] .arkan-pdp-dots {
  right: auto;
  left: 22px;
}

html[dir='rtl'] .arkan-pdp-dots__label {
  right: auto;
  left: 20px;
}

/* Accordion body indent flips to the icon side. */
html[dir='rtl'] .arkan-pdp-acc__copy {
  padding: 0 64px 26px 28px;
}

/* Trust cell dividers use border-inline-end and mirror themselves — no
   dir-specific override (one here used to fight the responsive rules). */

/* Bundle divider flips to the right edge. */
html[dir='rtl'] .arkan-pdp-bundle__totals {
  border-left: none;
  border-right: 1px solid rgba(26, 22, 20, 0.1);
  padding-left: 0;
  padding-right: 36px;
}

@media (max-width: 1000px) {
  html[dir='rtl'] .arkan-pdp-bundle__totals {
    border-right: none;
    border-top: 1px solid rgba(26, 22, 20, 0.1);
    padding-right: 0;
    padding-top: 26px;
  }
}

/* Sticky scroll-top mirrors to the left in RTL (keeps clearing the bar). */
html[dir='rtl'] .arkan-pdp .arkan-scroll-top,
html[dir='rtl'] body.single-product .arkan-scroll-top {
  bottom: 86px;
}
