/* ============================================================
   ELYON DUBAI, OF01 Offer Page  (pixel-match rebuild)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
p { margin: 0; line-height: 1.6; }
h1,h2,h3,h4 { margin: 0; font-family: 'EB Garamond', Georgia, serif; font-weight: 700; line-height: 1.1; }

/* ── HEADER (white, sticky) ── */
.site-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid #eceae6;
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 40px;
  border-bottom: 1px solid #f0ede8;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.nav-logo-sub {
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #2a2a2a;
}
/* Handmade sub-bar (minimal, monospace) */
.handmade-bar {
  background: #fafaf7;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: 'SF Mono', ui-monospace, Menlo, Monaco, Consolas, 'Liberation Mono', monospace;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a8a8a8;
}

/* ── SOVEREIGN COLLECTION BANNER ── */
.sovereign-banner {
  background: #0d0d0d;
  color: #ffffff;
  padding: 22px 22px;
  margin-bottom: 16px;
  border-radius: 6px;
  display: flex;
  align-items: stretch;
  gap: 0;
  text-align: left;
  overflow: hidden;
  min-height: 190px;
}
.sovereign-banner-text {
  flex: 1 1 auto;
  min-width: 0;
  align-self: center;
}
.sovereign-banner-img {
  flex: 0 0 52%;
  max-width: 52%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: -22px -22px -22px 0;
  align-self: stretch;
  padding-right: 0;
}
.sovereign-banner-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center right;
}
.sovereign-banner-title {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.sovereign-banner-sub {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  margin: 0;
  line-height: 1.45;
}
@media (max-width: 880px) {
  /* Edge-to-edge full-width block on mobile (negate .hero-panel padding) */
  .sovereign-banner {
    margin: 0 -20px 18px;
    border-radius: 0;
    padding: 18px 18px;
    gap: 8px;
    min-height: 150px;
  }
  .sovereign-banner-img { margin: -18px -18px -18px 0; }
  .sovereign-banner-title {
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    margin-bottom: 5px;
  }
  .sovereign-banner-sub {
    font-size: 0.75rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.66);
  }
}
@media (max-width: 480px) {
  .sovereign-banner { padding: 16px 16px; gap: 8px; min-height: 130px; }
  .sovereign-banner-img { margin: -16px -16px -16px 0; }
  .sovereign-banner-title { font-size: 0.74rem; }
  .sovereign-banner-sub { font-size: 0.68rem; }
}

/* ── HERO LAYOUT ── */
.hero-wrap {
  display: grid;
  grid-template-columns: 55fr 45fr;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

/* ── LEFT: GALLERY ── */
.hero-gallery {
  position: sticky;
  top: 90px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
  border-right: 1px solid #f0f0f0;
}
.gallery-main-area {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 100%;
}
.gallery-main-area .swiper.is-main {
  width: 100%;
  height: 100%;
}
.swiper.is-main .swiper-slide {
  background: #0f0f0f;
  overflow: hidden;
}
.swiper.is-main .swiper-slide img,
.swiper.is-main .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Arrows */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 180ms;
  color: #333;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}
.gallery-nav:hover { box-shadow: 0 3px 12px rgba(0,0,0,0.15); }
.gallery-nav-prev { left: 12px; }
.gallery-nav-next { right: 12px; }
.gallery-nav svg { width: 13px; height: 13px; }

/* Thumbnail strip */
.gallery-thumbs-area {
  flex-shrink: 0;
  padding: 8px 10px 9px;
  background: #fff;
  border-top: 1px solid #efefef;
  display: flex;
  align-items: center;
  gap: 6px;
}
.swiper-thumbs-inner { flex: 1; overflow: hidden; }
.swiper.is-thumbs .swiper-slide {
  aspect-ratio: 1 / 1;
  border: 2px solid transparent;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.48;
  transition: opacity 180ms, border-color 180ms;
  background: #e8e8e8;
}
.swiper.is-thumbs .swiper-slide-thumb-active {
  border-color: #1a1a1a;
  opacity: 1;
}
.swiper.is-thumbs .swiper-slide:hover { opacity: 0.82; }
.swiper.is-thumbs .swiper-slide img,
.swiper.is-thumbs .swiper-slide video {
  width: 100%; height: 100%;
  object-fit: cover; display: block; pointer-events: none;
}

/* Slide video */
.slide-video-wrap { position: relative; width: 100%; height: 100%; }
.slide-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.18);
  cursor: pointer; transition: background 200ms;
}
.slide-play-btn:hover { background: rgba(0,0,0,0.3); }
.slide-play-btn svg { width: 50px; height: 50px; fill: #fff; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
.slide-sound-btn {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,0.52); backdrop-filter: blur(8px);
  color: #fff; border: none; padding: 6px 13px; border-radius: 20px;
  font-size: 0.7rem; font-weight: 600; cursor: pointer;
  display: none; align-items: center; gap: 5px;
}

/* ── RIGHT: PRODUCT PANEL ── */
.hero-panel {
  padding: 24px 32px 80px;
}

/* Sale bar, GOLD */
.panel-sale-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #c9a84c 0%, #a87d2a 100%);
  border-radius: 8px;
  padding: 14px 0 14px 16px;
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
  min-height: 62px;
}
.panel-sale-text strong {
  display: block;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.18);
  font-family: 'Inter', sans-serif;
}
.panel-sale-text span {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 0.68rem;
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.panel-sale-img {
  width: 72px;
  flex-shrink: 0;
  align-self: stretch;
  overflow: hidden;
}
.panel-sale-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Social proof */
.panel-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.proof-avatar {
  position: relative;
  width: 44px; height: 44px;
  flex-shrink: 0;
  flex-shrink: 0;
  position: relative;
}
.proof-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  display: block;
}
.proof-check {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 14px;
  height: 14px;
  display: block;
  z-index: 2;
  filter: drop-shadow(0 0 1px #fff);
}
.proof-text { font-size: 0.78rem; color: #444; line-height: 1.35; }
.proof-text strong { color: #1a1a1a; font-weight: 700; }
.proof-line { display: block; }

/* Title */
.panel-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

/* Rating, Trustpilot */
.panel-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.panel-rating-stars {
  width: auto;
  height: 20px;
  display: block;
}
.rating-reviews {
  font-size: 0.76rem;
  color: #444;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 3px;
}
.rating-caret { font-size: 0.58rem; color: #888; }

/* Tagline */
.panel-tagline {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ebebeb;
  line-height: 1.65;
}

/* ── TABS ── */
.panel-tabs { margin-bottom: 18px; }
.tabs-nav {
  display: flex;
  gap: 0;
  margin-bottom: 14px;
}
.tab-btn {
  flex: 1;
  height: 36px;
  background: transparent;
  border: none;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #999;
  cursor: pointer;
  transition: background 160ms, color 160ms;
  padding: 0 6px;
}
.tab-btn.active { background: #1a1a1a; color: #fff; }
.tab-btn:hover:not(.active) { color: #555; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* Benefits list */
.benefits-list { list-style: none; margin: 0 0 14px; padding: 0; }
.benefits-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  font-size: 0.82rem;
  color: #1a1a1a;
  font-weight: 500;
  border-bottom: 1px solid #f5f5f5;
}
.benefits-list li:last-child { border-bottom: none; }
.check-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

/* Composition cards (What's Inside tab) */
.composition-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.composition-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fafaf7;
  border: 1px solid #ece8df;
  border-radius: 12px;
  padding: 14px 18px;
  transition: border-color 200ms;
}
.composition-card:hover,
.composition-card.is-spotlight {
  border-color: #c9a84c;
  box-shadow: 0 0 0 1px #c9a84c, 0 6px 18px rgba(201, 168, 76, 0.22);
  background: #fffaf0;
}
.composition-card {
  transition: border-color 320ms ease, box-shadow 320ms ease, background 320ms ease;
}
.composition-avatar {
  width: 64px;
  height: 64px;
  color: #1a1a1a;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.composition-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.composition-avatar--unreleased {
  border-radius: 50%;
  background: #c9a84c;
  color: #ffffff;
}
.composition-body {
  flex: 1;
  min-width: 0;
}
.composition-name {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 3px;
}
.composition-notes {
  font-size: 0.78rem;
  color: #6a6a6a;
  line-height: 1.4;
}
.composition-size {
  font-size: 0.78rem;
  font-weight: 600;
  color: #c9a84c;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .composition-card { padding: 12px 14px; gap: 11px; }
  .composition-avatar { width: 54px; height: 54px; font-size: 1.5rem; }
  .composition-name { font-size: 1.02rem; }
  .composition-notes { font-size: 0.72rem; }
  .composition-size { font-size: 0.72rem; }
}

/* Tab testimonial */
.tab-testimonial {
  display: flex;
  gap: 10px;
  background: #f9f9f7;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 12px;
}
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: 0.72rem; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; }
.testi-quote { font-size: 0.78rem; color: #555; line-height: 1.6; font-style: italic; }

/* Tab video */
.tab-video-wrap { display: flex; justify-content: center; padding: 0 0 12px; }
.tab-video-inner {
  position: relative; width: 100%; max-width: 230px;
  border-radius: 10px; overflow: hidden; background: #000;
  aspect-ratio: 9 / 16;
}
.tab-video-inner video { width: 100%; height: 100%; object-fit: cover; display: block; }
.tab-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.22);
  transition: transform 200ms;
}
.tab-play-btn:hover { transform: translate(-50%,-50%) scale(1.06); }
.tab-play-btn svg { width: 18px; height: 18px; margin-left: 3px; }
.tab-unmute-btn {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
  color: #fff; border: none; padding: 6px 14px; border-radius: 20px;
  font-size: 0.7rem; font-weight: 600; cursor: pointer;
  display: none; align-items: center; gap: 5px; white-space: nowrap;
}
.tab-unmute-btn.visible { display: flex; }
.tab-pane p { font-size: 0.83rem; color: #555; line-height: 1.8; margin-bottom: 10px; }

/* ── INSTALLMENTS (left-aligned, below price) ── */
.panel-installments {
  font-size: 0.75rem;
  color: #555;
  margin: 4px 0 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  flex-wrap: wrap;
  text-align: left;
}
.afterpay-badge {
  display: inline-flex;
  align-items: center;
  background: #b2fce4;
  color: #000;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 3px 10px;
  border-radius: 20px;
  line-height: 1;
}

/* ── PRICE ── */
.panel-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.price-compare {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.2rem;
  color: #aaa;
  text-decoration: line-through;
  font-weight: 500;
}
.price-sale {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}
.price-currency {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #888;
  align-self: flex-end;
  padding-bottom: 4px;
}

/* Trust row below CTA */
.panel-trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 4px 0 18px;
}
.panel-trust-row--single { justify-content: flex-start; }
.panel-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.2;
}
.panel-trust-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #1a1a1a;
}
@media (max-width: 480px) {
  .panel-trust-row { gap: 12px; }
  .panel-trust-item { font-size: 0.72rem; }
  .panel-trust-icon { width: 14px; height: 14px; }
}
.price-save-badge {
  background: #fff3e0;
  color: #b35a00;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  border: 1px solid #f5c07a;
  align-self: center;
  white-space: nowrap;
}

/* ── CTA ── */
.panel-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 54px;
  background: #1a1a1a;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms;
  margin-bottom: 12px;
  position: relative;
}
.panel-cta:hover { background: #2d2d2d; }
.panel-cta:active { transform: scale(0.99); }
.cta-lock {
  position: absolute;
  right: 16px;
  display: flex;
  align-items: center;
  opacity: 0.8;
}

/* ── PAYMENT ICONS ── */
.panel-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 11px;
}
.pay-icon {
  height: 24px; width: auto;
  object-fit: contain;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 3px 6px;
  background: #fff;
}

/* ── SHIPS BY ── */
.panel-ships {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.76rem;
  color: #555;
  font-weight: 500;
  margin-bottom: 16px;
}
.ships-truck { width: 18px; height: 18px; flex-shrink: 0; color: #555; }
.ships-date { font-weight: 700; color: #1a1a1a; }

/* ── GUARANTEE ── */
.panel-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 15px;
  background: #f9f9f7;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  margin-bottom: 24px;
}
.guarantee-icon-wrap {
  width: 32px; height: 32px; flex-shrink: 0;
  border: 1.5px solid #bbb;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #555;
}
.guarantee-icon-wrap svg { width: 15px; height: 15px; }
.guarantee-text strong { display: block; font-size: 0.77rem; font-weight: 700; color: #1a1a1a; margin-bottom: 3px; }
.guarantee-text span { font-size: 0.72rem; color: #666; line-height: 1.55; }

/* ── FAQ ── */
.faq-title {
  font-size: 0; /* hidden, FAQ items speak for themselves */
  height: 0;
}
.faq-wrap { border-top: 1px solid #e8e8e8; }
.faq-item { border-bottom: 1px solid #e8e8e8; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  background: none; border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #1a1a1a;
  text-align: left;
  cursor: pointer;
  gap: 16px;
}
.faq-q:hover { color: #555; }
.faq-q-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
  line-height: 1.25;
}
.faq-q-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #1a1a1a;
}
.faq-icon { width: 18px; height: 18px; position: relative; flex-shrink: 0; color: #888; }
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 220ms, opacity 220ms;
}
.faq-icon::before { width: 1.5px; height: 11px; top: 3.5px; left: 8.25px; }
.faq-icon::after  { width: 11px; height: 1.5px; top: 8.25px; left: 3.5px; }
.faq-q[aria-expanded="true"] .faq-icon::before { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 320ms ease; }
.faq-a.open { max-height: 600px; }
.faq-a-inner { font-size: 0.8rem; color: #666; line-height: 1.9; padding: 0 0 14px; }

/* ── TRUST MARQUEE (GOLD gradient background, dark text) ── */
.trust-marquee {
  overflow: hidden;
  background: linear-gradient(135deg, #e0c378 0%, #c9a84c 35%, #b08938 70%, #8b6720 100%);
  padding: 10px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-slide 60s linear infinite;
  align-items: center;
}
.marquee-item {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2a1f06;
  white-space: nowrap;
  padding: 0 16px;
}
.marquee-sep { color: rgba(0,0,0,0.22); font-size: 0.4rem; padding: 0 2px; }
@keyframes marquee-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── FEATURES ── */
.features-section { padding: 70px 0 80px; background: #f7f4ef; }
.features-container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.features-head { text-align: center; margin-bottom: 44px; }
.features-eyebrow {
  display: inline-block;
  font-size: 0.56rem; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: #c9a84c; margin-bottom: 10px;
}
.features-head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: #1a1a1a; margin-bottom: 7px; }
.features-head p { font-size: 0.85rem; color: #888; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: #fff; border: 1px solid #e8e8e8; border-radius: 12px;
  overflow: hidden; transition: box-shadow 250ms, transform 250ms;
}
.feature-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,0.08); transform: translateY(-3px); }
.feature-video-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #111; }
.feature-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-num {
  position: absolute; top: 10px; left: 10px;
  width: 24px; height: 24px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.64rem; font-weight: 800;
}
.feature-body { padding: 18px 18px 20px; }
.feature-body h3 { font-size: 1.3rem; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; }
.feature-body p { font-size: 0.79rem; color: #666; line-height: 1.7; }

/* ── FOOTER ── */
.site-footer {
  background: #111; color: rgba(255,255,255,0.35);
  text-align: center; padding: 20px 24px; font-size: 0.68rem;
}
.site-footer a { color: rgba(255,255,255,0.5); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-gallery { position: relative; top: 0; }
  .gallery-main-area { aspect-ratio: 1 / 0.85; }
  .hero-panel { padding: 20px 20px 60px; }
  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .features-container { padding: 0 20px; }
  .panel-sale-img { display: none; }
  .header-main { padding: 5px 20px; max-width: 100%; }
  .header-spacer, .header-badge { width: auto; }
}
@media (max-width: 480px) {
  .gallery-main-area { aspect-ratio: 1 / 0.95; }
  .panel-title { font-size: 2rem; }
  .price-sale { font-size: 1.8rem; }
}


/* ── GALLERY BADGES (top-left/top-right corner pills) ── */
.gallery-badge {
  position: absolute;
  top: 14px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 6px 12px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  pointer-events: none;
  backdrop-filter: blur(8px);
}
.gallery-badge-left  { left: 14px; }
.gallery-badge-right { right: 14px; }
@media (max-width: 480px) {
  .gallery-badge { font-size: 0.7rem; padding: 5px 10px; top: 10px; }
  .gallery-badge-left  { left: 10px; }
  .gallery-badge-right { right: 10px; }
}

/* ── STICKY MOBILE CTA (shows when main CTA off-screen) ── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid #e5e5e5;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}
.sticky-cta.is-visible {
  transform: translateY(0);
}
.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  background: #111;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border-radius: 6px;
}
@media (max-width: 900px) {
  .sticky-cta { display: block; }
  body.has-sticky-cta { padding-bottom: 76px; }
}

