/* ======================================================
   SEVACAM - SINGLE V3
====================================================== */

/* ======================================================
   1. RESET / APP SHELL
====================================================== */
.single-v3-page {
  background: #f4f5f7;
  min-height: 100vh;
  color: #162033;
  padding-bottom: 104px;
}

body.single-listing header,
body.single-listing footer,
body.single-listing .site-header,
body.single-listing .site-footer,
body.single-listing .ast-builder-grid-row-container,
body.single-listing .ast-builder-footer-grid-columns,
body.single-listing .ast-primary-header-bar {
  display: none !important;
}

/* ======================================================
   2. HERO / SLIDER
====================================================== */
.single-v3-hero {
  position: relative;
}

.single-v3-slider {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.single-v3-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(15, 23, 42, 0.88) 0%,
      rgba(15, 23, 42, 0.38) 38%,
      rgba(15, 23, 42, 0.06) 100%
    );
  pointer-events: none;
}

.single-v3-topbar {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.single-v3-back {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #111827;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
}

.single-v3-top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.single-v3-promo-badge {
  background: linear-gradient(135deg, #4aa8ff, #2878ff);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  border-radius: 18px;
  padding: 10px 14px;
  box-shadow: 0 10px 20px rgba(40, 120, 255, 0.22);
}

.single-slider-counter {
  position: absolute;
  right: 14px;
  bottom: 16px;
  z-index: 4;
  background: rgba(17, 24, 39, 0.78);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

/* CONTENU DANS L'IMAGE */
.single-v3-hero-content {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 26px;
  z-index: 3;
}

.single-v3-hero-title {
  margin: 0;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single-v3-hero-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.single-stars {
  display: flex;
  gap: 4px;
  align-items: center;
  flex: 0 0 auto;
}

.star {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef1f4;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.06);
  flex: 0 0 auto;
}

.star svg {
  width: 13px;
  height: 13px;
  display: block;
}

.star.empty svg {
  fill: #cfd5dc;
}

.star.full {
  background: #ff5a5f;
}

.star.full svg,
.star.half svg {
  fill: #fff;
}

.star.half {
  background: linear-gradient(90deg, #ff5a5f 50%, #eef1f4 50%);
}

/* VERSION HERO */
.single-stars-hero .star {
  box-shadow: none;
  backdrop-filter: blur(4px);
}

.single-stars-hero .star.full {
  background: #ff5a36;
}

.single-stars-hero .star.half {
  background: linear-gradient(90deg, #ff7a18 50%, rgba(255, 255, 255, 0.18) 50%);
}

.single-stars-hero .star.empty {
  background: rgba(255, 255, 255, 0.18);
}

.single-stars-hero .star.full svg,
.single-stars-hero .star.half svg {
  fill: #fff;
}

.single-stars-hero .star.empty svg {
  fill: rgba(255, 255, 255, 0.55);
}

.single-v3-hero-rating-value {
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.single-v3-hero-rating-count {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* ======================================================
   3. SHELL / CARDS
====================================================== */
.single-v3-shell {
  position: relative;
  z-index: 4;
  margin-top: -8px;
  padding: 0 14px 30px;
}

.single-v3-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  padding: 16px;
  margin-bottom: 14px;
}

/* ======================================================
   4. HEADER INFO CARD
====================================================== */
.single-v3-head-card {
  margin-top: 0;
}

.single-v3-head-info-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* ======================================================
   5. META / CHIPS
====================================================== */
.single-v3-info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  row-gap: 10px;
  flex-wrap: wrap;
  font-size: 15px;
  color: #4b5563;
  font-weight: 700;
  flex: 1;
}

.single-v3-info-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  line-height: 1;
}

.single-v3-info-distance {
  background: #20b7c9;
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(32, 183, 201, 0.18);
}

.single-v3-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.single-v3-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.chip-cashback {
  background: #f2f5f8;
  color: #5b6472;
}

.single-v3-benefits-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.single-v3-benefit-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f3f6fa;
  color: #445065;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

/* ======================================================
   6. FAVORI
====================================================== */
.single-fav-btn {
  position: relative;
  flex: 0 0 auto;
  width: 52px;
  min-width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid #eceff3;
  background: rgba(255, 255, 255, 0.96);
  color: #ff5a72;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(8px);
}

.single-fav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.10);
}

.single-fav-btn:active {
  transform: scale(0.97);
}

.single-fav-btn.active {
  background: linear-gradient(180deg, #ff5a72, #ff4f72);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(255, 79, 114, 0.22);
}

.single-fav-icon {
  font-size: 20px;
  line-height: 1;
}

.single-fav-count {
  display: none;
}

.single-fav-btn.animate {
  animation: fav-bounce 0.35s ease;
}

@keyframes fav-bounce {
  0% { transform: scale(1); }
  30% { transform: scale(1.2); }
  60% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.single-fav-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 90, 95, 0.2);
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
}

.single-fav-btn.pulse::after {
  animation: fav-pulse 0.5s ease;
}

@keyframes fav-pulse {
  0% {
    opacity: 0.65;
    transform: scale(0.7);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

.fav-burst {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 3;
}

.fav-burst-heart {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
  line-height: 1;
  color: #ff5a5f;
  opacity: 0;
  pointer-events: none;
  animation: heart-burst 0.8s ease forwards;
  transform: rotate(calc(var(--i) * 60deg)) translateY(-24px);
  transform-origin: center;
}

@keyframes heart-burst {
  0% {
    opacity: 0;
    transform: rotate(calc(var(--i) * 60deg)) translateY(0) scale(0.6);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(calc(var(--i) * 60deg)) translateY(-32px) scale(1.2);
  }
}

/* ======================================================
   7. MAIN OFFER CARD
====================================================== */
.single-v3-offer-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e6edf5;
}

.single-v3-offer-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.single-v3-offer-left {
  display: flex;
  gap: 12px;
  flex: 1;
}

.single-v3-offer-discount {
  flex: 0 0 auto;
  min-width: 82px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #37b8ff, #1f67ff);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(31, 103, 255, 0.2);
}

.single-v3-offer-copy h2 {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
  color: #162033;
}

.single-v3-offer-copy p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: #596377;
}

.single-v3-offer-code {
  flex: 0 0 auto;
  align-self: center;
  background: #fff;
  border: 2px dashed #d6dbe4;
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 800;
  color: #162033;
}

.single-v3-offer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.single-v3-cta {
  min-height: 50px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  border: none;
}

.single-v3-cta-blue {
  background: linear-gradient(90deg, #39b7ff, #1d68ff);
  color: #fff;
  box-shadow: 0 10px 22px rgba(29, 104, 255, 0.2);
}

.single-v3-cta-gold {
  background: linear-gradient(90deg, #ffd44e, #ffb300);
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 179, 0, 0.2);
}

.single-v3-cta-info {
  background: linear-gradient(90deg, #dfe6ee, #cfd8e3);
  color: #5f6b7a;
  box-shadow: none;
  cursor: not-allowed;
}

.single-v3-offer-footer {
  margin-top: 12px;
  min-height: 38px;
  border-radius: 12px;
  background: linear-gradient(90deg, #f3f7fb, #eef4f7);
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: #586172;
  font-size: 14px;
  font-weight: 600;
}

/* ======================================================
   8. ACTIONS
====================================================== */
.single-actions-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.single-action-btn {
  min-height: 54px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  text-decoration: none;
  font-size: 14px;
  border: none;
}

.single-action-btn.primary {
  background: linear-gradient(90deg, #ff3860, #ff5f83);
  color: #fff;
}

.single-action-btn.secondary {
  background: linear-gradient(90deg, #29c073, #39a84e);
  color: #fff;
}

.single-action-btn.dark {
  background: #2f3033;
  color: #fff;
}

.single-action-btn.tertiary {
  background: #162033;
  color: #fff;
}

/* ======================================================
   9. PANELS HORIZONTAUX PREMIUM V2
====================================================== */
.single-v3-panels-card {
  padding: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

.single-v3-panels-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.single-v3-panels-tabs::-webkit-scrollbar {
  display: none;
}

.single-v3-panel-tab {
  flex: 0 0 auto;
  min-height: 64px;
  padding: 10px 14px;
  border: 1px solid #e8edf3;
  border-radius: 18px;
  background: #f8fafc;
  color: #64748b;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.single-v3-panel-tab.active {
  background: linear-gradient(135deg, #2878ff, #39b7ff);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 20px rgba(40, 120, 255, 0.18);
}

.single-v3-panel-tab-title {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.single-v3-panel-tab-subtitle {
  font-size: 12px;
  line-height: 1.35;
  opacity: 0.9;
}

.single-v3-panel-tab-subtitle.is-open {
  color: #16a34a;
}

.single-v3-panel-tab-subtitle.is-closed {
  color: #ef4444;
}

.single-v3-panel-tab.active .single-v3-panel-tab-subtitle,
.single-v3-panel-tab.active .single-v3-panel-tab-subtitle.is-open,
.single-v3-panel-tab.active .single-v3-panel-tab-subtitle.is-closed {
  color: rgba(255, 255, 255, 0.92);
}

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 6px;
  background: currentColor;
}

.single-v3-panels-content {
  margin-top: 12px;
}

.single-v3-panel {
  display: none;
}

.single-v3-panel.open {
  display: block;
}

.single-v3-panel-inner {
  background: #fff;
  border: 1px solid #eef2f5;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

/* ======================================================
   10. OFFERS
====================================================== */
.single-offer-row {
  padding: 14px 14px 14px 16px;
  border-radius: 18px;
  background: #fff;
  margin-bottom: 12px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
  border-left-width: 5px;
  border-left-style: solid;
}

.single-offer-row:last-child {
  margin-bottom: 0;
}

.single-offer-head {
  font-weight: 800;
  font-size: 15px;
  color: #162033;
  margin-bottom: 6px;
}

.single-offer-body {
  font-size: 14px;
  line-height: 1.5;
  color: #5a6474;
}

.single-offer-cashback {
  border-left-color: #1db954;
  background: linear-gradient(180deg, #ffffff 0%, #f3fff7 100%);
}

.single-offer-loyalty {
  border-left-color: #ff9800;
  background: linear-gradient(180deg, #ffffff 0%, #fff8ef 100%);
}

.single-offer-promo {
  border-left-color: #ff385c;
  background: linear-gradient(180deg, #ffffff 0%, #fff1f4 100%);
}

.single-offer-flash {
  border-left-color: #ff6f00;
  background: linear-gradient(180deg, #ffffff 0%, #fff5ea 100%);
}

/* ======================================================
   11. LOYALTY
====================================================== */
.single-loyalty-grid {
  display: flex;
  gap: 4px;
  margin-top: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.single-loyalty-grid::-webkit-scrollbar {
  display: none;
}

.single-loyalty-box {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #eef0f3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  flex: 0 0 auto;
}

.single-loyalty-box.active {
  background: linear-gradient(90deg, #ff7a18, #ff3d5a);
  color: #fff;
}

/* ======================================================
   12. HOURS
====================================================== */
.single-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  color: #374151;
  border-bottom: 1px solid #f1f3f5;
}

.single-hours-row:last-child {
  border-bottom: none;
}

.single-hours-row.is-today {
  background: linear-gradient(90deg, #fff4e8, #fff8ef);
  border-radius: 12px;
  padding: 12px;
  margin: 6px 0;
  color: #b45309;
  font-weight: 800;
  border: 1px solid #fde7c7;
}

/* ======================================================
   13. GAMIFICATION
====================================================== */
.single-gamification-intro {
  font-size: 14px;
  line-height: 1.6;
  color: #5a6474;
  margin-bottom: 14px;
}

.single-gamification-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.single-gamification-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
  border: 1px solid #edf2f7;
}

.single-gamification-points {
  flex: 0 0 auto;
  min-width: 72px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff7a18, #ff3d5a);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.single-gamification-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.single-gamification-copy strong {
  font-size: 15px;
  color: #162033;
}

.single-gamification-copy span {
  font-size: 13px;
  line-height: 1.5;
  color: #64748b;
}

.single-gamification-note {
  margin-top: 14px;
  font-size: 12px;
  color: #94a3b8;
}

/* ======================================================
   14. DESCRIPTION
====================================================== */
.single-description {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

/* ======================================================
   15. PANELS FULL WIDTH MOBILE
====================================================== */
@media (max-width: 768px) {
  .single-v3-panels-card {
    margin-left: -14px;
    margin-right: -14px;
    border-radius: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  .single-v3-panels-content {
    margin-top: 10px;
  }

  .single-v3-panel-inner {
    border-radius: 18px;
  }
}

/* ======================================================
   16. MAP
====================================================== */
.single-map-box iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 18px;
}

/* ======================================================
   17. BOTTOM NAV APP - FULL WIDTH
====================================================== */
.seva-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  height: 78px;
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.06);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  transform: translateY(0);
  transition: transform 0.28s ease;
}

.seva-bottom-nav.is-hidden {
  transform: translateY(100%);
}

.seva-bottom-link {
  position: relative;
  height: 100%;
  text-decoration: none;
  color: #64748b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
}

.seva-bottom-link:hover,
.seva-bottom-link.is-active {
  color: #1d4ed8;
}

.seva-bottom-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.seva-bottom-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.seva-bottom-label {
  line-height: 1;
}

/* ======================================================
   18. CENTRAL CTA NAV
====================================================== */
.seva-bottom-link-center {
  transform: translateY(-18px);
}

.seva-bottom-icon-center {
  position: relative;
  width: 66px;
  height: 66px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a18, #ff3d5a);
  box-shadow: 0 12px 28px rgba(255, 122, 24, 0.28);
}

.seva-bottom-icon-center svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.seva-bottom-link-center .seva-bottom-label {
  margin-top: -2px;
  color: #0f172a;
  font-weight: 800;
}

.seva-bottom-icon-center::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.35), transparent 70%);
  z-index: -1;
}

.seva-bottom-icon-center::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.22);
  z-index: -2;
  animation: seva-central-pulse 2.2s ease-out infinite;
}

@keyframes seva-central-pulse {
  0% {
    transform: scale(0.92);
    opacity: 0.55;
  }
  55% {
    transform: scale(1.22);
    opacity: 0;
  }
  100% {
    transform: scale(1.22);
    opacity: 0;
  }
}

.seva-bottom-link-center .seva-bottom-icon-center {
  animation: seva-central-breathe 3s ease-in-out infinite;
}

@keyframes seva-central-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

/* ======================================================
   19. REDUCED MOTION
====================================================== */
@media (prefers-reduced-motion: reduce) {
  .seva-bottom-icon-center::before,
  .seva-bottom-link-center .seva-bottom-icon-center,
  .single-fav-btn.animate,
  .single-fav-btn.pulse::after,
  .fav-burst-heart {
    animation: none !important;
  }
}

/* ======================================================
   20. RESPONSIVE
====================================================== */
@media (max-width: 480px) {
  .slide img {
    height: 270px;
  }

  .single-v3-hero-title {
    font-size: 26px;
  }

  .single-v3-hero-rating-value {
    font-size: 18px;
  }

  .single-v3-hero-rating-count {
    font-size: 14px;
  }

  .single-v3-head-info-top {
    align-items: center;
  }

  .single-v3-info-row {
    gap: 10px 12px;
    font-size: 14px;
  }

  .single-v3-info-distance {
    padding: 9px 12px;
  }

  .single-fav-btn {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 14px;
    padding: 0;
  }

  .single-v3-benefits-row {
    gap: 7px;
  }

  .single-v3-benefit-chip {
    min-height: 32px;
    padding: 0 11px;
    font-size: 12px;
  }

  .single-v3-offer-head {
    flex-direction: column;
  }

  .single-v3-offer-left {
    width: 100%;
  }

  .single-v3-offer-code {
    align-self: flex-start;
  }
}

@media (min-width: 768px) {
  .single-v3-page {
    max-width: 860px;
    margin: 0 auto;
  }

  .slide img {
    height: 380px;
  }

  .seva-bottom-nav {
    max-width: 560px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    border-radius: 22px 22px 0 0;
  }

  .seva-bottom-nav.is-hidden {
    transform: translateX(-50%) translateY(100%);
  }
}

/* ======================================================
   21. ACTIVATION MODAL
====================================================== */
.seva-activation-modal[hidden] {
  display: none !important;
}

.seva-activation-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
}

.seva-activation-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(6px);
}

.seva-activation-modal__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% - 28px);
  max-width: 420px;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 24px;
  padding: 22px 18px 18px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24);
  text-align: center;
}

.seva-activation-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: #f3f6fa;
  color: #445065;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.seva-activation-modal__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffd44e, #ffb300);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 14px 28px rgba(255, 179, 0, 0.24);
}

.seva-activation-modal__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
  color: #162033;
}

.seva-activation-modal__text {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: #5b6472;
}

.seva-activation-modal__code-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.seva-activation-modal__code {
  flex: 1;
  min-height: 56px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px dashed #d9e2ec;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #162033;
}

.seva-activation-modal__copy {
  flex: 0 0 auto;
  min-width: 86px;
  min-height: 56px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(90deg, #39b7ff, #1d68ff);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(29, 104, 255, 0.2);
}

.seva-activation-modal__expires {
  margin-top: 14px;
  font-size: 13px;
  color: #6b7280;
  font-weight: 700;
}

.seva-activation-modal__footer {
  margin-top: 18px;
}

.seva-activation-modal__btn {
  width: 100%;
  min-height: 50px;
  border: none;
  border-radius: 16px;
  background: #162033;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 480px) {
  .seva-activation-modal__dialog {
    padding: 20px 14px 14px;
    border-radius: 22px;
  }

  .seva-activation-modal__title {
    font-size: 20px;
  }

  .seva-activation-modal__code {
    font-size: 18px;
    letter-spacing: 0.05em;
  }

  .seva-activation-modal__copy {
    min-width: 74px;
    font-size: 13px;
  }
}

.single-v3-cta.is-activated {
  background: linear-gradient(90deg, #1db954, #17a34a);
  color: #fff;
  box-shadow: 0 10px 22px rgba(29, 185, 84, 0.22);
  cursor: default;
}

.seva-activation-modal__timer {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #ff7a18;
}
