/* Air Mancur shared site styles
 * Tokens + layout shared across all pages.
 * Page-specific CSS stays in separate files (produk-detail, faq, etc.).
 */
/* ── Design tokens & base ── */
:root {
  --green: #6B9245;
  --deep-green: #3E5E28;
  --brown: #9E7A68;
  --terra: #C65D3B;
  --gold: #D8B511;
  --red: #C83A0C;
  --cream: #F4EFDA;
  --offwhite: #F8F5ED;
  --dark: #2B2B2B;
  --divider: #E8E3D6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Inter',sans-serif;
  background: var(--offwhite);
  color: var(--dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: 'Fraunces',Georgia,serif;
}

.am-navbar {
  background: rgba(250,250,247,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
  padding: .75rem 0;
}

.am-navbar .navbar-brand span {
  font-family: 'Fraunces',Georgia,serif;
  font-weight: 800;
  color: var(--green);
  font-size: 1.35rem;
}

.am-navbar .nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: #555;
  transition: color .2s;
  padding: .5rem .75rem;
}

.am-navbar .nav-link:hover,
.am-navbar .nav-link.active {
}

/* Mobile menu: satu tombol Menu di bawah */
.am-mobile-menu {
  display: none;
}

@media (max-width: 991.98px) {
  .am-mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1040;
    pointer-events: none;
  }

  .am-mobile-menu.is-open {
    pointer-events: auto;
  }

  .am-mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(43, 43, 43, 0.45);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    cursor: pointer;
  }

  .am-mobile-menu.is-open .am-mobile-menu__backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .am-mobile-menu__sheet {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
    background: #fff;
    border-radius: 16px 16px 0 0;
    border-top: 1px solid var(--divider);
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.12);
    padding: 0.5rem 0.75rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.2s ease;
    pointer-events: none;
  }

  .am-mobile-menu.is-open .am-mobile-menu__sheet {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .am-mobile-menu__link {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.15s, color 0.15s;
  }

  .am-mobile-menu__link:hover,
  .am-mobile-menu__link.active {
    background: rgba(200, 58, 12, 0.08);
    color: var(--red);
  }

  .am-mobile-menu__lang {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.35rem;
    padding: 0.85rem 1rem;
    border-top: 1px solid var(--divider);
  }

  .am-mobile-menu__lang-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
  }

  .am-bottom-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: stretch;
    align-items: center;
    background: rgba(250, 250, 247, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--divider);
    padding: 0.55rem 1rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
    pointer-events: auto;
  }

  .am-bottom-nav__menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    min-height: 48px;
    padding: 0.7rem 1.25rem;
    border: none;
    border-radius: 12px;
    background: var(--red);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(200, 58, 12, 0.28);
    transition: background 0.2s, box-shadow 0.2s;
  }

  .am-bottom-nav__menu-btn i {
    font-size: 1.25rem;
    line-height: 1;
  }

  .am-bottom-nav__menu-btn:hover,
  .am-mobile-menu.is-open .am-bottom-nav__menu-btn {
    background: #9e2d08;
    box-shadow: 0 4px 18px rgba(158, 45, 8, 0.35);
  }

  body {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
  }

  .mobile-cta {
    display: none !important;
  }
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces',Georgia,serif;
  font-weight: 800;
  font-size: 1rem;
}

.btn-buy-now {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: .875rem;
  padding: .5rem 1.25rem;
  transition: background .2s,transform .15s;
}

.btn-buy-now:hover {
  background: #9e2d08;
  color: #fff;
  transform: translateY(-1px);
}

.lang-switcher {
  display: flex;
  gap: 4px;
}

.lang-btn {
  border: 1px solid var(--divider);
  background: transparent;
  color: #777;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  min-width: 44px;
  min-height: 44px;
  padding: .45rem .9rem;
  cursor: pointer;
  transition: .2s;
}

.lang-btn.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.page-header {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 4.5rem;
  background: var(--deep-green);
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(47,79,58,.96) 0%,rgba(47,79,58,.7) 100%);
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header .section-label {
  color: rgba(255,255,255,.65);
}

.page-header h1 {
  font-family: 'Fraunces',Georgia,serif;
  font-weight: 800;
  font-size: clamp(2rem,5vw,3.5rem);
  color: #fff;
  margin-bottom: .75rem;
  line-height: 1.1;
}

.page-header p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.65;
}

.breadcrumb-am .breadcrumb-item {
  font-size: .82rem;
  font-weight: 500;
}

.breadcrumb-am .breadcrumb-item a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
}

.breadcrumb-am .breadcrumb-item.active {
  color: rgba(255,255,255,.9);
}

.breadcrumb-am .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255,255,255,.4);
}

#heroCarousel {
  position: relative;
}

.hero-slide {
  height: 92svh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-layer-back {
  position: absolute;
  will-change: transform;
  transition: transform .22s cubic-bezier(.25,.46,.45,.94);
  pointer-events: none;
  z-index: 1;
}

.hero-layer-main {
  position: absolute;
  will-change: transform;
  transition: transform .14s cubic-bezier(.25,.46,.45,.94);
  pointer-events: none;
  z-index: 2;
}

.hero-float {
  position: absolute;
  will-change: transform;
  transition: transform .09s cubic-bezier(.25,.46,.45,.94);
  pointer-events: none;
  z-index: 3;
  object-fit: cover;
  filter: drop-shadow(0 20px 44px rgba(0,0,0,.55));
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 0 5vw;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: 'Fraunces',Georgia,serif;
  font-size: clamp(2.4rem,6vw,4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.15);
}

.hero-title .accent {
  color: #7FD4A0;
}

.hero-title .accent-brown {
  color: #D8B511;
}

.hero-title .accent-terra {
  color: #D8B511;
}

.hero-desc {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 620px;
  text-shadow: 0 1px 4px rgba(0,0,0,.12);
}

.btn-hero-primary {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  padding: .9rem 2rem;
  transition: all .2s;
  box-shadow: 0 6px 24px rgba(200,58,12,.35);
}

.btn-hero-primary:hover {
  background: #9e2d08;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200,58,12,.4);
}

.btn-hero-secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  padding: .9rem 2rem;
  backdrop-filter: blur(6px);
  transition: all .2s;
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,.22);
  color: #fff;
}

.carousel-control-prev,
.carousel-control-next {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: background .2s;
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control-prev {
  left: 1.5rem;
}

.carousel-control-next {
  right: 1.5rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255,255,255,.32);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

.carousel-indicators {
  bottom: 2rem;
}

.carousel-indicators [data-bs-target] {
  width: 14px;
  height: 14px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none;
  margin: 0 4px;
  transition: .3s;
  background-clip: content-box;
  padding: 15px;
}

.carousel-indicators .active {
  background: #fff;
  width: 30px;
  border-radius: 999px;
}

.slide-counter {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  color: rgba(255,255,255,.6);
  font-size: .82rem;
  font-weight: 600;
  font-family: 'Fraunces',Georgia,serif;
  letter-spacing: .04em;
}

.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  z-index: 10;
  animation: slideProgress 6s linear infinite;
  width: 0%;
}

@keyframes slideProgress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

.marquee-wrap {
  background: var(--green);
  color: #fff;
  padding: 1.4rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee-rtl 30s linear infinite;
}

.marquee-track span {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 0 2.5rem;
}

@keyframes marquee-rtl {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .6rem;
}

.section-title {
  font-family: 'Fraunces',Georgia,serif;
  font-weight: 800;
  color: var(--dark);
}

.stats-strip {
  background: var(--deep-green);
  padding: 3rem 0;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: 'Fraunces',Georgia,serif;
  font-weight: 900;
  font-size: clamp(2rem,4vw,3rem);
  color: #fff;
  line-height: 1;
  margin-bottom: .35rem;
}

.stat-num span {
  color: #7FD4A0;
}

.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  line-height: 1.35;
}

.stat-divider {
  border-left: 1px solid rgba(255,255,255,.15);
}

.cat-card {
  border: 1px solid var(--divider);
  border-radius: 20px;
  padding: 1.75rem;
  background: #fff;
  transition: all .25s;
  cursor: pointer;
  height: 100%;
}

.cat-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(79,122,90,.12);
  transform: translateY(-3px);
}

.cat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: transform .2s;
}

.cat-card:hover .cat-icon {
  transform: scale(1.1);
}

.cat-card h5 {
  font-family: 'Fraunces',Georgia,serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .4rem;
}

.cat-card p {
  font-size: .85rem;
  color: #777;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.cat-link {
  font-size: .82rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .25rem;
}

.cat-link i {
  transition: transform .2s;
}

.cat-card:hover .cat-link i {
  transform: translateX(4px);
}

.trust-section {
  background: var(--cream);
}

.trust-img-wrap {
  position: relative;
}

.trust-img-wrap img {
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.14);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4/3;
}

.trust-badge-years {
  position: absolute;
  bottom: -20px;
  right: -16px;
  background: #fff;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

.trust-badge-years .num {
  font-family: 'Fraunces',Georgia,serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.trust-badge-years .label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  max-width: 120px;
}

.trust-badge-cert {
  position: absolute;
  top: -14px;
  left: -14px;
  background: var(--green);
  color: #fff;
  border-radius: 12px;
  padding: .6rem 1rem;
  box-shadow: 0 4px 16px rgba(47,79,58,.25);
}

.trust-badge-cert .cert-sub {
  font-size: .7rem;
  font-weight: 600;
  opacity: .8;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.trust-badge-cert .cert-main {
  font-size: .88rem;
  font-weight: 700;
}

.trust-point {
  border-radius: 18px;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: box-shadow .2s;
}

.trust-point:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.07);
}

.trust-point .tp-num {
  position: absolute;
  top: 6px;
  right: 12px;
  font-family: 'Fraunces',Georgia,serif;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  opacity: .15;
  user-select: none;
}

.trust-point .tp-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: .85rem;
}

.trust-point h3,
.trust-point h6 {
  font-family: 'Fraunces',Georgia,serif;
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: .35rem;
  padding-right: 2rem;
  line-height: 1.3;
}

.trust-point p {
  font-size: .8rem;
  color: #777;
  line-height: 1.55;
  margin: 0;
}

.tp-1 {
  background: rgba(79,122,90,.08);
  border-color: rgba(79,122,90,.18);
}

.tp-1 .tp-num {
  color: var(--green);
}

.tp-1 .tp-icon {
  background: rgba(79,122,90,.12);
  color: var(--green);
}

.tp-2 {
  background: rgba(37,99,235,.06);
  border-color: rgba(37,99,235,.15);
}

.tp-2 .tp-num {
  color: #2563eb;
}

.tp-2 .tp-icon {
  background: rgba(37,99,235,.1);
  color: #2563eb;
}

.tp-3 {
  background: rgba(234,88,12,.06);
  border-color: rgba(234,88,12,.15);
}

.tp-3 .tp-num {
  color: #ea580c;
}

.tp-3 .tp-icon {
  background: rgba(234,88,12,.1);
  color: #ea580c;
}

.tp-4 {
  background: rgba(245,183,34,.08);
  border-color: rgba(245,183,34,.18);
}

.tp-4 .tp-num {
  color: var(--gold);
}

.tp-4 .tp-icon {
  background: rgba(245,183,34,.1);
  color: var(--gold);
}

.product-card {
  border: 1px solid var(--divider);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  transition: all .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: rgba(79,122,90,.35);
  box-shadow: 0 12px 40px rgba(79,122,90,.12);
  transform: translateY(-4px);
}

.product-img-wrap {
  background: #fff;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

.product-img-wrap img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform .4s;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

.product-cat-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--cream);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 700;
  border-radius: 999px;
  padding: .2rem .7rem;
}

.product-body {
  padding: 1.1rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-benefit {
  font-size: .72rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .35rem;
}

.product-name {
  font-family: 'Fraunces',Georgia,serif;
  font-weight: 700;
  font-size: .97rem;
  margin-bottom: .4rem;
  color: var(--dark);
}

.product-desc {
  font-size: .8rem;
  color: #888;
  line-height: 1.5;
  flex: 1;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  border-top: 1px solid var(--divider);
  padding-top: .85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: 'Fraunces',Georgia,serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
}

.btn-product-detail {
  border: none;
  background: transparent;
  color: var(--red);
  font-size: .8rem;
  font-weight: 700;
  border-radius: 999px;
  padding: .3rem .85rem;
  transition: .2s;
}

.btn-product-detail:hover {
  background: var(--red);
  color: #fff;
}

.filter-tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.filter-tab {
  border: 1.5px solid var(--divider);
  background: #fff;
  color: #666;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  padding: .4rem 1.1rem;
  cursor: pointer;
  transition: .2s;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.article-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--divider);
  transition: all .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(79,122,90,.1);
  border-color: rgba(79,122,90,.3);
}

.article-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.article-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.article-card:hover .article-img img {
  transform: scale(1.06);
}

.article-cat {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: rgba(0,0,0,.5);
  color: #fff;
  backdrop-filter: blur(6px);
  font-size: .7rem;
  font-weight: 700;
  border-radius: 999px;
  padding: .2rem .7rem;
  letter-spacing: .04em;
}

.article-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-title {
  font-family: 'Fraunces',Georgia,serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
  margin-bottom: .5rem;
  line-height: 1.4;
}

.article-excerpt {
  font-size: .82rem;
  color: #888;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .75rem;
  color: #aaa;
}

.article-meta i {
  font-size: .82rem;
}

.article-read-more {
  color: var(--red);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-top: .75rem;
}

.article-read-more i {
  transition: transform .2s;
}

.article-card:hover .article-read-more i {
  transform: translateX(4px);
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: .625rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--divider);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2rem;
  top: .2rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--green);
}

.timeline-dot.active {
  background: var(--gold);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-year {
  font-size: .75rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .06em;
  margin-bottom: .2rem;
  text-transform: uppercase;
}

.timeline-title {
  font-family: 'Fraunces',Georgia,serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
  margin-bottom: .3rem;
}

.timeline-desc {
  font-size: .82rem;
  color: #888;
  line-height: 1.55;
  margin: 0;
}

.store-card {
  border: 1px solid var(--divider);
  border-radius: 20px;
  background: #fff;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
}

.store-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(79,122,90,.1);
  transform: translateY(-3px);
}

.store-icon {
  font-size: 2.5rem;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.store-name {
  font-family: 'Fraunces',Georgia,serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}

.store-tag {
  font-size: .75rem;
  color: #aaa;
}

.store-btn {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  padding: .4rem 1.1rem;
  text-decoration: none;
  transition: .2s;
  display: inline-block;
}

.store-btn:hover {
  background: #9e2d08;
  color: #fff;
}

.retail-partner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--divider);
  transition: .2s;
}

.retail-partner:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(79,122,90,.08);
}

.retail-partner-icon {
  font-size: 1.8rem;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.retail-partner-name {
  font-family: 'Fraunces',Georgia,serif;
  font-weight: 700;
  font-size: .95rem;
}

.retail-partner-tag {
  font-size: .78rem;
  color: #aaa;
}

.contact-info-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--divider);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: .2s;
}

.contact-info-card:hover {
  border-color: var(--green);
  box-shadow: 0 6px 24px rgba(79,122,90,.08);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
  margin-bottom: .2rem;
}

.contact-value {
  font-family: 'Fraunces',Georgia,serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
  line-height: 1.35;
}

.contact-sub {
  font-size: .8rem;
  color: #aaa;
  margin-top: .15rem;
}

.quiz-section {
  background: var(--offwhite);
}

.quiz-card {
  background: var(--deep-green);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(47,79,58,.22);
}

.quiz-card-body {
  padding: 3rem 3rem;
  color: #fff;
}

.quiz-card-body h2 {
  font-family: 'Fraunces',Georgia,serif;
  font-weight: 800;
  color: #fff;
  font-size: clamp(1.5rem,3vw,2.2rem);
  margin-bottom: 1rem;
}

.quiz-card-body p {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.btn-quiz {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 2rem;
  transition: .2s;
  box-shadow: 0 4px 16px rgba(200,58,12,.3);
}

.btn-quiz:hover {
  background: #9e2d08;
  color: #fff;
  transform: translateY(-2px);
}

.quiz-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.am-footer {
  background: var(--deep-green,#2f4f3a);
  color: rgba(255,255,255,.78);
  padding: 0;
}

.am-footer .footer-top {
  padding: 3.5rem 0 2.5rem;
}

.am-footer p,
.am-footer .footer-desc {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
  margin: 0;
}

.am-footer a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: .92rem;
  transition: color .2s,opacity .2s;
}

.am-footer a:hover {
  color: #fff;
  opacity: .85;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .4rem 1.75rem;
}

.footer-nav li a {
  font-weight: 600;
  font-size: .95rem;
}

.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .4rem 1.5rem;
}

.footer-legal li a {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
}

.footer-strip {
  background: rgba(0,0,0,.18);
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}

.footer-social {
  font-size: 1.1rem;
}

.footer-social a {
  color: rgba(255,255,255,.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: all .2s;
}

.footer-social a:hover {
  color: #fff;
  background: rgba(255,255,255,.12);
}

@media (max-width:991.98px) {
  .footer-nav,
  .footer-legal {
    justify-content: flex-start;
  }

  .am-footer .footer-top {
    padding: 3rem 0 2rem;
  }
}

.footer-divider {
  border-top: 1px solid rgba(255,255,255,.1);
  margin: 2rem 0 1rem;
}

.footer-bottom {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}

.btn-green {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  padding: .7rem 1.75rem;
  transition: all .2s;
}

.btn-green:hover {
  background: #9e2d08;
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-green {
  border: 1.5px solid var(--red);
  color: var(--red);
  background: transparent;
  border-radius: 999px;
  font-weight: 600;
  padding: .65rem 1.6rem;
  transition: .2s;
}

.btn-outline-green:hover {
  background: var(--red);
  color: #fff;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease,transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 {
  transition-delay: .1s;
}

.fade-up-delay-2 {
  transition-delay: .2s;
}

.fade-up-delay-3 {
  transition-delay: .3s;
}

/* Mobile sticky CTA — diganti am-bottom-nav */
.mobile-cta {
  display: none !important;
}

.ts-wrapper {
  width: 100%;
}

.ts-wrapper.single .ts-control {
  min-height: calc(1.5em+1rem+2px);
  border-color: var(--divider) !important;
  border-radius: .5rem !important;
  font-size: 1rem;
  font-family: 'Inter',sans-serif;
  padding: .6rem 1rem;
  align-items: center;
  gap: .5rem;
}

.ts-wrapper.single.focus .ts-control {
  border-color: var(--green) !important;
  box-shadow: 0 0 0 .2rem rgba(79,122,90,.15) !important;
}

.ts-dropdown {
  border-color: var(--divider) !important;
  border-radius: .5rem !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  font-family: 'Inter',sans-serif;
  font-size: .95rem;
}

.ts-dropdown .ts-dropdown-content {
  max-height: 280px;
}

.ts-dropdown .option {
  padding: .55rem 1rem;
}

.ts-dropdown .option.active {
  background: var(--green) !important;
  color: #fff !important;
}

.ts-dropdown .option:hover {
  background: rgba(79,122,90,.08);
}

.ts-dropdown [data-group-header] {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--green);
  text-transform: uppercase;
  padding: .5rem 1rem .2rem;
  background: var(--offwhite);
}

.ts-wrapper .ts-control input {
  font-family: 'Inter',sans-serif;
}

.ts-wrapper .plugin-dropdown_input .dropdown-input-wrap {
  padding: .5rem;
  border-bottom: 1px solid var(--divider);
}

.ts-wrapper .plugin-dropdown_input .dropdown-input {
  border: 1px solid var(--divider) !important;
  border-radius: .4rem !important;
  padding: .4rem .75rem;
  width: 100%;
  font-size: .9rem;
  outline: none;
}

.ts-wrapper .plugin-dropdown_input .dropdown-input:focus {
  border-color: var(--green) !important;
  box-shadow: 0 0 0 .15rem rgba(79,122,90,.15);
}

.mkt-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1px solid var(--divider);
  transition: all .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mkt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(79,122,90,.1);
  border-color: rgba(79,122,90,.25);
}

.mkt-icon {
  width: 52px;
  height: 52px;
  background: rgba(79,122,90,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.mkt-name {
  font-family: 'Fraunces',Georgia,serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green);
  margin-bottom: .5rem;
}

.mkt-desc {
  font-size: .875rem;
  color: #666;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}

.mkt-visit {
  font-size: .875rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  transition: color .2s;
}

.mkt-visit:hover {
  color: var(--deep-green);
}

.store-locator-section {
  min-height: 520px;
}

.store-locator-left {
  padding: 3.5rem 2.5rem 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  overflow-y: auto;
}

.store-locator-map-col {
  position: relative;
  min-height: 400px;
}

#storeMap {
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.store-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.25rem;
  border: 1px solid var(--divider);
}

.store-item-icon {
  font-size: 1.1rem;
  color: var(--green);
  flex-shrink: 0;
  margin-top: .1rem;
}

.store-item-info {
  flex: 1;
  min-width: 0;
}

.store-item-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--dark);
  margin-bottom: .15rem;
}

.store-item-addr {
  font-size: .8rem;
  color: #888;
}

.store-buka-map {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  flex-shrink: 0;
  padding: .45rem .75rem;
  border: 1px solid var(--divider);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  letter-spacing: .03em;
  transition: background .2s,border-color .2s,color .2s;
}

.store-buka-map:hover {
  color: var(--deep-green);
  border-color: var(--green);
  background: rgba(79,122,90,0.06);
}

.map-pin-badge {
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  cursor: pointer;
  transition: transform .15s;
}

.map-pin-badge:hover {
  transform: scale(1.15);
}

.map-pin-badge.active-pin {
  background: var(--red);
  transform: scale(1.2);
}

@media (max-width:991px) {
  .store-locator-left {
    padding: 2.5rem 1.5rem;
    min-height: auto;
  }

  #storeMap {
    min-height: 380px;
  }
}

@media (max-width:576px) {
  .hero-slide {
    min-height: 520px;
  }

  .page-header {
    padding: 5rem 0 3rem;
  }
}

/* ── Site overrides & utilities (formerly appended) ── */
.fw800 {
  font-weight: 800;
}

.fw500 {
  font-weight: 500;
}

.mkt-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,.08);
  border-radius: 999px;
  padding: 10px 14px 10px 10px;
  text-decoration: none;
  transition: transform .18s,box-shadow .18s,border-color .18s;
  min-width: 190px;
}

.mkt-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  border-color: rgba(0,0,0,.14);
  text-decoration: none;
}

.mkt-pill-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mkt-pill-name {
  text-align: center;
  font-weight: 600;
  color: #1a1a1a;
  font-size: .95rem;
  flex: 1;
  white-space: nowrap;
}

.mkt-pill-arrow {
  width: 28px;
  height: 28px;
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  color: #444;
  flex-shrink: 0;
}

:root {
  --jamu-green: #235541;
}

.jamu-footer-banner {
  background: var(--jamu-green);
  padding: 5.125rem 0 2.8rem;
  overflow: hidden;
  position: relative;
}

.jamu-footer-banner::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: 320px;
  height: 320px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}

.jamu-hashtag {
  font-family: 'Fraunces',Georgia,serif;
  font-weight: 900;
  font-size: clamp(2.1rem,6.25vw,8rem);
  color: #fff;
  text-align: center;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: 2.8rem;
}

.jamu-footer-grid {
  display: grid;
  grid-template-columns: minmax(280px,1.6fr) minmax(140px,.65fr) minmax(140px,.65fr);
  gap: 2rem 5.3rem;
  padding-top: 2.7rem;
  border-top: 1px solid rgba(255,255,255,.12);
  max-width: 1026px;
}

@media(max-width:991px) {
  .jamu-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:768px) {
  .jamu-footer-grid {
    grid-template-columns: 1fr;
  }
}

.jamu-footer-logo {
  margin-bottom: 1rem;
  display: block;
}

.jamu-footer-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.95);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 524px;
}

.jamu-footer-social {
  display: flex;
  gap: 1.8rem;
}

.jamu-footer-social a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 1.2rem;
  transition: color .2s;
}

.jamu-footer-social a:hover {
  color: #fff;
}

.jamu-footer-col-title {
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: #eda641;
  margin-bottom: 1.15rem;
  text-transform: none;
}

.jamu-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.jamu-footer-links a {
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
  transition: color .2s;
  line-height: 1.4;
}

.jamu-footer-links a:hover {
  color: #fff;
}

.jamu-footer-strip {
  background: transparent;
  padding: 2.65rem 0 0;
  margin-top: 2.5rem;
}

.jamu-footer-copy {
  font-size: 1.15rem;
  color: #fff;
  margin: 0;
}

.gold-arch {
  position: absolute;
  right: -4%;
  bottom: 0;
  width: 40%;
  max-width: 760px;
  min-width: 300px;
  opacity: 1;
  pointer-events: none;
}

.gram-footer {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 22vw;
}

.am-navbar .nav-link:hover {
  color: var(--red);
}

.benefit-icon img {
  width: 200px;
}

/* ── Homepage / shared extras (from am-main.css) ── */
.am-navbar .nav-link.active {
}

@keyframes am-bob {
  0%,
  100% {
    translate: 0 0px;
  }

  50% {
    translate: 0 -28px;
  }
}

@keyframes am-spin {
  0% {
    rotate: 0deg;
  }

  50% {
    rotate: 14deg;
  }

  100% {
    rotate: 0deg;
  }
}

@keyframes am-bob-alt {
  0%,
  100% {
    translate: 0 0px;
  }

  50% {
    translate: 0 -36px;
  }
}

@keyframes am-spin-alt {
  0% {
    rotate: 0deg;
  }

  50% {
    rotate: -16deg;
  }

  100% {
    rotate: 0deg;
  }
}

@keyframes am-bob-product {
  0%,
  100% {
    translate: 0 0px;
  }

  50% {
    translate: 0 -22px;
  }
}

@keyframes am-spin-product {
  0% {
    rotate: 0deg;
  }

  50% {
    rotate: 4deg;
  }

  100% {
    rotate: 0deg;
  }
}

.hero-orbit-stage {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.orbit-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
}

.orbit-ring-deco {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

.orbit-ring-deco.r1 {
  width: 540px;
  height: 540px;
}

.orbit-ring-deco.r2 {
  width: 420px;
  height: 420px;
}

.orbit-ring-deco.r3 {
  width: 300px;
  height: 300px;
}

.orbit-product {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 62%;
  max-width: 380px;
  transform: translate(-50%, -50%);
  object-fit: contain;
  filter: drop-shadow(0 30px 64px rgba(0, 0, 0, 0.55));
  animation: am-bob-product 8s ease-in-out infinite, am-spin-product 14s ease-in-out infinite;
  z-index: 3;
}

.orbit-product.heritage {
  width: 78%;
  max-width: 430px;
  height: 78%;
  object-fit: cover;
  object-position: center top;
  border-radius: 2rem 2rem 0 2rem;
}

.orbit-item {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--size, 140px);
  height: var(--size, 140px);
  margin-left: calc(var(--size, 140px) / -2);
  margin-top: calc(var(--size, 140px) / -2);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
  transform-origin: center center;
  z-index: 4;
}

@keyframes orbit-1 {
  from {
    transform: rotate(0deg) translateX(270px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(270px) rotate(-360deg);
  }
}

@keyframes orbit-2 {
  from {
    transform: rotate(135deg) translateX(210px) rotate(-135deg);
  }

  to {
    transform: rotate(495deg) translateX(210px) rotate(-495deg);
  }
}

@keyframes orbit-3 {
  from {
    transform: rotate(245deg) translateX(150px) rotate(-245deg);
  }

  to {
    transform: rotate(605deg) translateX(150px) rotate(-605deg);
  }
}

.orbit-1 {
  animation: orbit-1 26s linear infinite;
}

.orbit-2 {
  animation: orbit-2 32s linear infinite reverse;
}

.orbit-3 {
  animation: orbit-3 18s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .orbit-1,
  .orbit-2,
  .orbit-3,
  .orbit-product {
    animation: none !important;
  }
}

.product-hover-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 0;
}

.product-card:hover .product-hover-photo {
  opacity: 1;
}

.product-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.18) 100%);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.product-card:hover .product-hover-overlay {
  opacity: 1;
}

.am-footer .brand-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  color: #fff;
  font-size: 1.25rem;
}

.am-footer p {
  font-size: 0.85rem;
  line-height: 1.65;
}

.am-footer h6 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.home-cat-card {
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  height: 280px;
  text-decoration: none;
  border: none;
  box-shadow: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.home-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
}

.home-cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .45s ease;
}

.home-cat-card:hover img {
  transform: scale(1.08);
}

.home-cat-card .home-cat-title {
  position: absolute;
  top: 20px;
  left: 22px;
  z-index: 2;
  font-family: 'Fraunces',Georgia,serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
  color: #235541;
  width: 130px;
  transition: color .2s ease;
}

.home-cat-card:hover .home-cat-title {
  color: #235541;
}

.new-hero-top {
  background: var(--cream);
}

.new-hero-top .carousel-inner {
  max-height: min(85vh, 720px);
}

.new-hero-top__img {
  width: 100%;
  height: min(85vh, 720px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.promo-pop-modal-dialog {
  max-width: min(92vw, 560px);
  margin-left: auto;
  margin-right: auto;
}

.promo-pop-modal-content {
  border: none;
  border-radius: 16px;
  overflow: visible;
  box-shadow: none;
  background: transparent !important;
}

.promo-pop-modal-content .modal-header {
  background: transparent;
  border: none;
}

.promo-pop-modal-content .modal-body {
  background: transparent;
}

.promo-pop-img {
  display: block;
  width: 100%;
  max-height: min(85vh, 720px);
  object-fit: contain;
  background: transparent;
}
