/* ── Units grid — 3 columns desktop, 1 mobile ──────────────────── */
.units__grid {
  grid-template-columns: repeat(3, 1fr);
}

.unit-card__zone-badge {
  display: inline-block;
  background: var(--tiffany);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.unit-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.unit-card__actions .btn {
  font-size: 10px;
  padding: 10px 16px;
  flex: 1 1 auto;
  text-align: center;
  white-space: nowrap;
}

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

@media (max-width: 768px) {
  .units__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Hero CTA WhatsApp button ──────────────────────────────────── */
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.btn--wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: background 0.25s ease;
}

.btn--wa:hover {
  background: #1ebe5d;
}

/* ── Hot Offers stories row centering ─────────────────────────── */
.hot-offers-section .stories-row {
  justify-content: center;
}

.hot-offers-section {
  overflow: hidden;
}

/* ── Reels Section ─────────────────────────────────────────────── */
.reels-section {
  background: var(--black);
  padding: 40px 0;
  isolation: isolate;
}

.reels-section .eyebrow {
  color: var(--gold);
}

.reels-section .section__title {
  color: #fff;
  margin-bottom: 32px;
}

.reels-track-wrapper {
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.reels-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 0 40px 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.reels-track::-webkit-scrollbar {
  display: none;
}

/* ── Reel Card ─────────────────────────────────────────────────── */
.reel-card {
  flex: 0 0 200px;
  width: 200px;
  height: 356px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reel-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
}

.reel-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.reel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reel-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  padding-left: 3px;
  flex-shrink: 0;
}

.reel-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  width: 100%;
}

/* ── Reel Modal ────────────────────────────────────────────────── */
.reel-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reel-modal-close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10000;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.reel-modal-video {
  max-width: 360px;
  width: 90vw;
  max-height: 640px;
  border-radius: 12px;
  display: block;
}

.reel-modal-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
  text-align: center;
}

/* ── Desktop ───────────────────────────────────────────────────── */
@media (min-width: 768px) {
  .reels-section {
    padding: 60px 0;
  }
}

@media (min-width: 1024px) {
  .reels-section {
    padding: 100px 0;
  }
}
