:root {
  --bg: #2b2a2a;
  --panel: #2f2d2c;
  --panel-2: #363230;
  --gold: #d6a31b;
  --gold-2: #f3c83d;
  --text: #f3f1ed;
  --muted: #bfb7a7;
  --price: #ff6f6f;
  --shadow: 0 0 18px rgba(214, 163, 27, 0.16), 0 0 40px rgba(214, 163, 27, 0.06);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Cairo", "Tajawal", "IBM Plex Sans Arabic", "Noto Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
}

body {
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(1200px 800px at 50% 0%, rgba(255, 180, 0, 0.05), transparent 55%),
    linear-gradient(180deg, #2a2a2a 0%, #2b2a2a 100%);
}

.topbar {
  position: relative;
  height: clamp(82px, 8vw, 96px);
  direction: ltr;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px clamp(12px, 2vw, 20px) 8px;
  background: #000;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar__left {
  justify-content: flex-start;
}

.topbar__right {
  justify-content: flex-end;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(180px, 22vw, 260px);
  height: clamp(62px, 7vw, 84px);
  padding: 0;
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.brand img {
  width: auto;
  max-width: 100%;
  max-height: 72px;
  height: auto;
  object-fit: contain;
}

.icon-btn {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 10px;
}

.icon-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-btn:active {
  transform: scale(0.94);
}

.nav-strip {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
  padding: 8px 18px 16px;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-strip::-webkit-scrollbar {
  display: none;
}

.nav-item {
  font-size: 14px;
  line-height: 1;
  color: #d4ad2b;
  display: inline-flex;
  align-items: center;
  opacity: 0.95;
}


.nav-item.is-active {
  color: #e8bc37;
}


.content {
  width: min(100%, 1220px);
  margin: 0 auto;
  padding: 0 clamp(12px, 2vw, 24px) clamp(32px, 4vw, 48px);
}

.promo-banner {
  width: min(100%, 1200px);
  margin: 10px auto 14px;
  overflow: hidden;
  border-radius: 14px;
  background: #211f1f;
  box-shadow: 0 0 0 1px rgba(255, 205, 90, 0.08), 0 14px 34px rgba(0, 0, 0, 0.28);
}

.promo-banner__track {
  display: flex;
  width: 100%;
}

.promo-banner__slide {
  flex: 0 0 100%;
}

.promo-banner__slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.section-title {
  width: fit-content;
  margin: 20px auto 18px;
  padding: 10px 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #353331 0%, #2a2827 100%);
  border: 1px solid rgba(212, 160, 23, 0.12);
  color: #d8aa23;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(212, 160, 23, 0.08),
    0 0 20px rgba(212, 160, 23, 0.12),
    0 10px 24px rgba(0, 0, 0, 0.22);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
  letter-spacing: 0;
}


.product-section {
  margin-top: 8px;
}

.card-grid {
  width: min(100%, 1220px);
  margin: 0 auto clamp(18px, 2vw, 24px);
  display: grid;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
}

.card-grid--three {
  width: min(100%, 960px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--five {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.card-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, #2f2d2c 0%, #262423 100%);
  border: 1px solid rgba(212, 160, 23, 0.28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 160, 23, 0.46);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32), 0 0 18px rgba(212, 160, 23, 0.12);
}

.product-card__media {
  position: relative;
  aspect-ratio: 1 / 0.98;
  overflow: hidden;
  background: #191717;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  min-width: 42px;
  padding: 4px 10px;
  border-radius: 6px;
  background: #ff2424;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 11px 12px 13px;
}

.product-card h3 {
  margin: 0;
  min-height: 2.5em;
  color: #f4f1ea;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price-row,
.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  min-height: 24px;
}

.price-row {
  justify-content: center;
  gap: 10px;
}

.price {
  color: var(--price);
  font-size: 16px;
  font-weight: 900;
}

.old-price {
  color: #d6a31b;
  font-size: 12px;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-color: currentColor;
  opacity: 0.9;
}

.count {
  color: #f2ebdc;
  font-size: 12px;
  font-weight: 700;
}

.stars {
  color: #d8aa23;
  font-size: 14px;
  letter-spacing: 1px;
}

.add-btn {
  width: 100%;
  height: 34px;
  margin-top: auto;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #d7a81b, #c79210);
  color: #111;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease, filter 0.3s ease;
  direction: ltr;
}

.add-btn:hover {
  background: linear-gradient(180deg, #e2b52d, #d29f16);
  transform: scale(1.02);
}

.add-btn:active,
.add-btn.is-pressed {
  transform: scale(0.98);
}

.add-btn__label {
  direction: rtl;
  unicode-bidi: plaintext;
}

.add-btn__icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
}

.add-btn__icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #111;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reviews-section {
  margin-top: 8px;
}

.reviews-marquee {
  overflow: hidden;
  margin: 0 auto 26px;
}

.reviews-marquee__track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: reviews-scroll 28s linear infinite;
  will-change: transform;
}

.reviews-marquee__group {
  display: flex;
  gap: 18px;
  flex: 0 0 auto;
}

.review-card {
  width: 250px;
  min-height: 160px;
  padding: 14px 14px 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, #2e2c2b 0%, #262423 100%);
  border: 1px solid rgba(212, 160, 23, 0.34);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  color: var(--text);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: right;
}

.review-card__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #e5b53b, #c79210);
  color: #111;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 0 18px rgba(212, 160, 23, 0.18);
}

.review-card h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #f4f1ea;
}

.review-card p {
  margin: 2px 0 0;
  font-size: 12px;
  color: #c9beab;
}

.review-card__stars {
  margin-top: 12px;
  color: #d8aa23;
  font-size: 14px;
  letter-spacing: 1px;
  text-shadow: 0 0 4px rgba(212, 160, 23, 0.2);
}

.review-card__text {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: #efe8d7;
}

@keyframes reviews-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.faq-section {
  margin-top: 8px;
}

.faq-list {
  width: min(100%, 920px);
  margin: 0 auto 10px;
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 18px;
  background: linear-gradient(180deg, #2e2c2b 0%, #262423 100%);
  border: 1px solid rgba(212, 160, 23, 0.26);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(212, 160, 23, 0.42);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary h3 {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 800;
  line-height: 1.35;
  color: #f4f1ea;
}

.faq-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #e6b63a, #c79210);
  color: #111;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 14px rgba(212, 160, 23, 0.16);
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0.92;
  transition: grid-template-rows 0.35s ease, opacity 0.35s ease;
}

.faq-answer__inner {
  overflow: hidden;
  padding: 0 20px 20px;
  color: #e8decc;
  line-height: 1.8;
  font-size: 14px;
}

.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(180deg, #ffd35e, #d29f16);
}

.faq-item summary:focus-visible {
  outline: 2px solid rgba(243, 200, 61, 0.75);
  outline-offset: -2px;
}

@media (prefers-reduced-motion: reduce) {
  .reviews-marquee__track,
  .faq-answer,
  .faq-icon,
  .faq-item {
    animation: none !important;
    transition: none !important;
  }
}

.back-to-top,
.whatsapp {
  position: fixed;
  bottom: 18px;
  width: 54px;
  height: 54px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.back-to-top {
  left: 16px;
  background: linear-gradient(180deg, #d7a81b, #c79210);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28), 0 0 16px rgba(214, 163, 27, 0.16);
  color: #111;
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp {
  right: 16px;
  background: transparent;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.back-to-top:hover,
.whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.05);
}
@media (max-width: 860px) {
  .content {
    width: min(100%, 1100px);
    padding: 0 18px 42px;
  }

  .card-grid {
    width: min(100%, 840px);
    gap: 24px;
  }

  .card-grid--three,
  .card-grid--five,
  .card-grid--single,
  .card-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card h3 {
    font-size: 14px;
  }

  .review-card {
    width: 250px;
  }

  .faq-list {
    width: min(100%, 840px);
  }
}

@media (max-width: 480px) {
  .topbar {
    height: 82px;
    padding: 8px 12px 6px;
  }

  .brand {
    min-width: 180px;
    height: 62px;
  }

  .brand img {
    max-height: 52px;
  }

  .nav-strip {
    gap: 14px;
    padding: 6px 12px 12px;
  }

  .content {
    width: min(100%, 100%);
    padding: 0 12px 32px;
  }

  .promo-banner {
    margin: 10px auto 14px;
    border-radius: 12px;
  }

  .section-title {
    margin: 18px auto 16px;
    padding: 10px 20px;
    font-size: 16px;
  }

  .card-grid {
    width: 100%;
    gap: 16px;
  }

  .card-grid--three,
  .card-grid--five,
  .card-grid--single,
  .card-grid--two {
    grid-template-columns: 1fr;
  }

  .product-card {
    border-radius: 14px;
  }

  .product-card__media {
    aspect-ratio: 1 / 1.04;
  }

  .product-card__body {
    padding: 10px 12px 12px;
  }

  .product-card h3 {
    font-size: 14px;
    min-height: 2.8em;
  }

  .price,
  .add-btn {
    font-size: 14px;
  }

  .add-btn {
    height: 34px;
  }

  .reviews-marquee {
    margin-bottom: 22px;
  }

  .review-card {
    width: min(82vw, 260px);
    min-height: 160px;
  }

  .faq-list {
    width: 100%;
    gap: 12px;
  }

  .faq-item summary {
    padding: 16px;
  }

  .faq-answer__inner {
    padding: 0 16px 16px;
    font-size: 14px;
  }
}




.site-footer {
  margin-top: 10px;
  padding: 22px 16px 34px;
  background: linear-gradient(180deg, #2d2b2a 0%, #232120 100%);
  border-top: 1px solid rgba(212, 160, 23, 0.18);
  box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.18);
}

.site-footer__inner {
  width: min(100%, 920px);
  margin: 0 auto;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.site-footer__brand {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer__logo img {
  width: auto;
  max-width: 160px;
  height: auto;
  object-fit: contain;
}

.site-footer__brand p,
.site-footer__meta p {
  margin: 0;
  color: #efe5d2;
  font-size: 14px;
  line-height: 1.8;
}

.site-footer__meta {
  display: grid;
  gap: 6px;
}

@media (max-width: 480px) {
  .site-footer {
    padding: 20px 14px 30px;
  }

  .site-footer__logo img {
    max-width: 140px;
  }

  .site-footer__brand p,
  .site-footer__meta p {
    font-size: 13px;
    line-height: 1.7;
  }
}


.page-content {
  display: grid;
  gap: 28px;
}

.page-hero {
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  padding: 10px 0 10px;
}

.page-hero__copy {
  width: min(100%, 960px);
  margin: 0 auto;
  display: grid;
  gap: 10px;
  align-content: center;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 800;
}

.page-hero h1 {
  margin: 0;
  color: #fff7e5;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: 0;
}

.page-hero p {
  margin: 0;
  max-width: 860px;
  margin-inline: auto;
  color: #e7dcc8;
  font-size: 17px;
  line-height: 1.9;
}

.page-hero__media {
  order: -1;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 205, 90, 0.08);
  background: #191716;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.page-hero__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.product-card__summary {
  margin: 0;
  min-height: 4.8em;
  color: #d9cfbd;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.ghost-btn {
  min-height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(214, 163, 27, 0.32);
  color: #f1c455;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.feature-band,
.contact-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-band article,
.contact-panel article,
.info-section,
.detail-main,
.purchase-box {
  border: 1px solid rgba(214, 163, 27, 0.2);
  background: linear-gradient(180deg, #2f2d2c 0%, #262423 100%);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.feature-band strong,
.contact-panel strong {
  display: block;
  margin-bottom: 8px;
  color: #f2c84b;
  font-size: 17px;
}

.feature-band span,
.contact-panel span,
.info-section p,
.detail-main p,
.check-list {
  color: #e7dcc8;
  line-height: 1.8;
}

.info-section h2,
.detail-main h2 {
  margin: 0 0 10px;
  color: #f2c84b;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
  align-items: start;
}

.purchase-box {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 12px;
  text-align: center;
}

.purchase-box strong {
  color: var(--price);
  font-size: 30px;
}

.purchase-box del {
  color: var(--gold);
}

.plan-label {
  color: #fff7e5;
  font-weight: 900;
}

.check-list {
  margin: 0;
  padding-inline-start: 22px;
}

@media (max-width: 860px) {
  .page-hero,
  .detail-layout,
  .feature-band,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .purchase-box {
    position: static;
  }
}

@media (max-width: 480px) {
  .page-hero {
    min-height: auto;
    gap: 18px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }
}


.nav-item,
.menu-app span,
.section-title,
.product-card h3,
.product-card__summary,
.price,
.old-price,
.count,
.add-btn,
.ghost-btn,
.page-hero h1,
.page-hero p,
.eyebrow,
.plan-label,
.purchase-box strong,
.purchase-box del {
  unicode-bidi: plaintext;
}

.product-card h3,
.product-card__summary,
.section-title,
.page-hero__copy,
.card-actions,
.purchase-box {
  direction: rtl;
}

.price-row,
.rating-row {
  direction: rtl;
}

.price,
.old-price {
  direction: rtl;
  unicode-bidi: isolate;
}

.add-btn,
.ghost-btn {
  white-space: normal;
  text-align: center;
}


.offers-bar {
  width: 100%;
  height: 34px;
  overflow: hidden;
  background: #050505;
  border-block: 1px solid rgba(214, 163, 27, 0.2);
  color: #fff7e5;
  display: flex;
  align-items: center;
  direction: ltr;
}

.offers-bar__track {
  display: flex;
  width: max-content;
  min-width: 200%;
  align-items: center;
  gap: 80px;
  animation: offers-scroll-ltr 24s linear infinite;
  will-change: transform;
}

.offers-bar__track span {
  flex: 0 0 auto;
  min-width: 100vw;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  direction: rtl;
  unicode-bidi: plaintext;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}

@keyframes offers-scroll-ltr {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .offers-bar__track {
    animation: none;
    transform: none;
  }
}

@media (max-width: 480px) {
  .offers-bar {
    height: 32px;
  }

  .offers-bar__track span {
    font-size: 12px;
  }
}

.seo-section {
  width: min(1120px, calc(100% - 32px));
  margin: 34px auto 0;
  padding: 24px;
  border: 1px solid rgba(214, 163, 27, 0.18);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(214, 163, 27, 0.08), rgba(255, 255, 255, 0.025));
  color: #f8edd7;
  text-align: right;
}

.seo-section h2 {
  margin: 0 0 10px;
  color: #f2c34c;
  font-size: clamp(22px, 3vw, 34px);
}

.seo-section p {
  margin: 0;
  color: #dcc7a2;
  font-size: 15px;
  line-height: 1.9;
}
.banner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.banner-tags__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid rgba(214, 163, 27, 0.26);
  border-radius: 999px;
  background: rgba(12, 10, 8, 0.72);
  color: #f4d27a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.promo-banner + .banner-tags {
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 0;
}

.page-hero__media .banner-tags {
  padding: 0 14px 14px;
}

@media (max-width: 640px) {
  .banner-tags {
    gap: 8px;
  }

  .banner-tags__chip {
    font-size: 12px;
    min-height: 30px;
    padding: 7px 12px;
  }
}
.promo-offer-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 4, 6, 0.72);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.promo-offer-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.promo-offer-modal {
  position: relative;
  width: min(100%, 640px);
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.16), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(212, 175, 55, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(22, 19, 16, 0.98), rgba(12, 11, 10, 0.98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5), 0 0 34px rgba(212, 175, 55, 0.16);
  transform: translateY(18px) scale(.96);
  transition: transform .4s ease, box-shadow .3s ease;
}

.promo-offer-overlay.is-visible .promo-offer-modal {
  transform: translateY(0) scale(1);
}

.promo-offer-modal::before,
.promo-offer-modal::after {
  content: '';
  position: absolute;
  inset: auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22), transparent 68%);
  pointer-events: none;
}

.promo-offer-modal::before {
  top: -58px;
  left: -46px;
}

.promo-offer-modal::after {
  right: -56px;
  bottom: -76px;
}

.promo-offer-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.promo-offer-particles span {
  position: absolute;
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 226, 151, 0.95), rgba(212, 175, 55, 0));
  opacity: .55;
  animation: promo-offer-float 8s linear infinite;
}

.promo-offer-particles span:nth-child(1) { top: 16%; right: 12%; animation-delay: 0s; }
.promo-offer-particles span:nth-child(2) { top: 30%; right: 24%; width: 5px; height: 5px; animation-delay: 1.5s; }
.promo-offer-particles span:nth-child(3) { top: 68%; left: 16%; animation-delay: 3s; }
.promo-offer-particles span:nth-child(4) { bottom: 20%; left: 32%; width: 4px; height: 4px; animation-delay: 4.2s; }
.promo-offer-particles span:nth-child(5) { bottom: 28%; right: 18%; width: 6px; height: 6px; animation-delay: 2.3s; }

.promo-offer-inner {
  position: relative;
  z-index: 1;
  padding: 32px 32px 28px;
  display: grid;
  gap: 18px;
  text-align: right;
}

.promo-offer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #f6d272;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}

.promo-offer-close:hover {
  transform: rotate(90deg) scale(1.04);
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.42);
}

.promo-offer-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.promo-offer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-inline-end: 44px;
}

.promo-offer-headline {
  margin: 0;
  color: #ffd874;
  font-size: 17px;
  font-weight: 800;
}

.promo-offer-badge,
.promo-offer-gift {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0.1));
  color: #fff2be;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.12);
}

.promo-offer-badge {
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 900;
}

.promo-offer-gift {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  font-size: 24px;
}

.promo-offer-title {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.28;
  color: #fff8e7;
}

.promo-offer-copy {
  margin: 0;
  max-width: 52ch;
  color: #dac8a8;
  font-size: 16px;
  line-height: 1.95;
}

.promo-offer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.promo-offer-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.16);
  color: #f2e3bf;
  font-size: 13px;
  font-weight: 700;
}

.promo-offer-meta span::before {
  content: '•';
  color: #ffd976;
  font-size: 16px;
}

.promo-offer-countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,55,.18);
  color: #fff4c8;
  font-weight: 800;
}

.promo-offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.promo-offer-btn {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
}

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

.promo-offer-btn--primary {
  color: #24190a;
  background: linear-gradient(135deg, #f8d86d 0%, #d4af37 52%, #b48717 100%);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3), 0 0 18px rgba(212, 175, 55, 0.22);
}

.promo-offer-btn--primary:hover {
  box-shadow: 0 16px 36px rgba(212, 175, 55, 0.35), 0 0 24px rgba(212, 175, 55, 0.28);
}

.promo-offer-btn--secondary {
  color: #f6df9d;
  border-color: rgba(212, 175, 55, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.promo-offer-btn--secondary:hover {
  border-color: rgba(212, 175, 55, 0.38);
  background: rgba(212, 175, 55, 0.08);
}

@keyframes promo-offer-float {
  0% { transform: translate3d(0, 0, 0) scale(.9); opacity: 0; }
  15% { opacity: .65; }
  50% { transform: translate3d(-8px, -16px, 0) scale(1.05); }
  100% { transform: translate3d(10px, -34px, 0) scale(.85); opacity: 0; }
}

@media (max-width: 720px) {
  .promo-offer-overlay {
    padding: 14px;
  }

  .promo-offer-inner {
    padding: 26px 18px 22px;
  }

  .promo-offer-topline {
    align-items: flex-start;
    flex-direction: column;
    padding-inline-end: 44px;
  }

  .promo-offer-actions {
    flex-direction: column;
  }

  .promo-offer-btn {
    width: 100%;
  }

  .promo-offer-countdown {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-offer-overlay,
  .promo-offer-modal,
  .promo-offer-close,
  .promo-offer-btn,
  .promo-offer-particles span {
    transition: none;
    animation: none;
  }
}