/* ==========================================================================
   AntiChoc Protect® - Ultra-Premium E-Commerce Conversion CSS Design System
   ========================================================================== */

:root {
  /* Radiant High-Converting Gold & Emerald Color Palette */
  --gold: #FFD700;
  --gold-glow: #F59E0B;
  --gold-gradient: linear-gradient(135deg, #FFD700 0%, #D97706 100%);
  --gold-bg-glass: rgba(255, 215, 0, 0.08);
  
  --dark: #0B0F17;
  --dark2: #131A26;
  --dark3: #1E293B;
  --dark4: #334155;
  
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --gb: rgba(255, 255, 255, 0.1);
  --glass: rgba(255, 255, 255, 0.04);
  
  --terra: #EA580C;
  --terra2: #F97316;
  --success: #10B981;
  --success-glow: rgba(16, 185, 129, 0.4);
  --danger: #EF4444;
  --danger-glow: rgba(239, 68, 68, 0.4);
  
  --r: 16px;
  --tr: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --font-arabic: 'Tajawal', 'Almarai', 'IBM Plex Sans Arabic', 'Cairo', 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Backward Compatibility Mappings */
  --primary: var(--gold);
  --primary-dark: var(--terra);
  --secondary: var(--success);
  --accent: var(--gold);
  --bg-dark: var(--dark);
  --bg-card: var(--dark2);
  --bg-card-border: var(--gb);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, input, button, select, textarea {
  font-family: var(--font-arabic);
}

/* Ensure FontAwesome icons NEVER get overridden by body font */
i.fa-solid, i.fa-brands, i.fa-regular, i.fa, i.fas, i.fab, [class^="fa-"], [class*=" fa-"] {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", FontAwesome !important;
}

body {
  background-color: var(--dark);
  color: var(--text-main);
  direction: rtl;
  text-align: right;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 1rem;
}

.gold-text {
  color: var(--gold);
  font-weight: 800;
}

/* ── 🧭 LUXURY NAVBAR WITH AOV & CVR BOOSTERS ── */
.nav.luxury-navbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 15, 23, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(255, 215, 0, 0.35);
  padding: 0.4rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.nav-brand-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-shield {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
  transition: transform 0.3s ease;
}

.nav-logo-shield svg {
  width: 28px;
  height: 28px;
}

.nav-logo-shield:hover {
  transform: scale(1.08) rotate(-3deg);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.nav-title-main {
  font-size: 1.15rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.2px;
}

.nav-sub-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.15rem;
}

.green-dot {
  width: 7px;
  height: 7px;
  background-color: #10B981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #10B981;
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

/* AOV Boost Button in Navbar */
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-aov-btn {
  background: linear-gradient(135deg, #FFD700 0%, #D97706 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(255, 215, 0, 0.35);
  line-height: 1.1;
}

.nav-aov-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.55);
}

.aov-tag {
  font-size: 0.62rem;
  font-weight: 900;
  color: #0B0F17;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.35);
  padding: 0.1rem 0.45rem;
  border-radius: 50px;
  margin-bottom: 0.1rem;
}

.aov-text {
  font-size: 0.78rem;
  font-weight: 900;
  color: #0B0F17;
  white-space: nowrap;
}

/* ── 🚀 HERO SECTION ── */
.hero-section {
  padding: 0.85rem 0 0.5rem;
  text-align: center;
}

.warning-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.15);
  border: 1.5px solid var(--danger);
  color: #FF8A8A;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.25);
}

.pulse-danger {
  animation: pulseDanger 2s infinite;
}

@keyframes pulseDanger {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.pulse-btn {
  animation: pulseBtn 2.2s infinite;
}

@keyframes pulseBtn {
  0% { transform: scale(1); box-shadow: 0 8px 25px rgba(255, 215, 0, 0.35); }
  50% { transform: scale(1.02); box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6); }
  100% { transform: scale(1); box-shadow: 0 8px 25px rgba(255, 215, 0, 0.35); }
}

.hero-img {
  position: relative; width: 100%; border-radius: 20px;
  background: linear-gradient(160deg, var(--dark2), var(--dark3));
  border: 1.5px solid rgba(255, 215, 0, 0.3);
  overflow: hidden; margin-bottom: 0;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}
.hero-img img {
  width: 100%; max-height: 420px; object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-img:hover img { transform: scale(1.03); }

.img-badge {
  position: absolute; top: 12px; right: 12px;
  background: linear-gradient(135deg, #EF4444 0%, #B91C1C 100%);
  color: #FFF; padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 900;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.5);
  z-index: 2;
}

.thumb-gallery {
  display: flex; gap: 0.85rem; padding: 0 1rem 1rem 0;
  justify-content: flex-start;
  position: relative;
  z-index: 10;
  margin-top: 15px;
}
.thumb-img {
  width: 68px; height: 68px; border-radius: 12px; object-fit: cover;
  border: 1.5px solid rgba(255, 255, 255, 0.15); cursor: pointer;
  opacity: 0.45; transition: var(--tr); flex-shrink: 0;
  background: var(--dark2);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.thumb-img.active, .thumb-img:hover {
  border-color: var(--gold); opacity: 1;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
}

.prod-type {
  font-size: 0.82rem; font-weight: 800; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.3rem;
}

.prod-name {
  font-size: 1.55rem; font-weight: 900; line-height: 1.35;
  color: #FFF; margin-bottom: 0.85rem;
}

/* ⭐ RATING ROW */
.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
}
.rating-stars-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 1px;
}
.rating-score {
  font-weight: 900;
  font-size: 0.95rem;
  color: #FFF;
}
.rating-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}
.rating-cnt {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 700;
}
.rating-disc {
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.25), rgba(217, 119, 6, 0.2));
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: #FF8A3D;
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.emotional-box {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(234, 88, 12, 0.05));
  border: 1.5px solid rgba(255, 215, 0, 0.25);
  border-radius: 18px; padding: 1.2rem; margin-bottom: 1.5rem;
  text-align: right;
}
.emotional-text {
  font-size: 0.95rem; color: #E2E8F0; line-height: 1.8;
}

/* 💰 RESTORED PRICE BLOCK STYLING */
.price-block {
  background: var(--dark2);
  border: 1.5px solid rgba(255, 215, 0, 0.35);
  border-radius: 18px;
  padding: 1.1rem 1rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.price-header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 0.65rem;
}

.price-new-large {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.35);
}

.price-new-large small {
  font-size: 1.05rem;
  font-weight: 700;
  color: #F59E0B;
}

.price-old-sub {
  font-size: 1.2rem;
  color: #64748B;
  text-decoration: line-through;
  font-weight: 600;
}

.price-save-mini {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34D399;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.15rem 0.55rem;
  border-radius: 6px;
}

.price-save-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.16);
  border: 1.5px solid var(--success);
  color: #34D399;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.price-shipping-sub {
  font-size: 0.84rem;
  color: #CBD5E1;
  font-weight: 700;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  padding-top: 0.65rem;
  margin-top: 0.2rem;
}

/* 🎁 HERO COMPACT OFFER SELECTOR */
.hero-offers-wrapper {
  margin-bottom: 1.25rem;
  text-align: right;
  background: rgba(19, 26, 38, 0.6);
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-offers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}
.hero-offers-label {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.hero-offers-sub-badge {
  font-size: 0.72rem;
  color: #34D399;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 0.15rem 0.55rem;
  border-radius: 50px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.hero-offers-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.hero-offer-card {
  background: var(--dark2);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.hero-offer-card:hover {
  border-color: rgba(255, 215, 0, 0.45);
}
.hero-offer-card.selected {
  border: 1.5px solid var(--gold);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(234, 88, 12, 0.04) 100%);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15);
}
.hero-offer-badge {
  position: absolute;
  top: -9px;
  left: 12px;
  background: linear-gradient(135deg, #FFD700 0%, #F59E0B 100%);
  color: #0B0F17;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 0.12rem 0.6rem;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.hero-offer-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--tr);
}
.hero-offer-card.selected .hero-offer-radio {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: inset 0 0 0 3px var(--dark2);
}
.hero-offer-info {
  flex: 1;
}
.hero-offer-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #FFF;
  line-height: 1.2;
}
.hero-offer-sub {
  font-size: 0.76rem;
  color: #94A3B8;
  margin-top: 0.1rem;
  font-weight: 600;
}
.hero-offer-price-tag {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  flex-shrink: 0;
}
.hero-offer-price-tag .old-p {
  font-size: 0.78rem;
  color: #64748B;
  text-decoration: line-through;
  font-weight: 700;
}
.hero-offer-price-tag .new-p {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-offer-price-tag .new-p.highlight {
  color: #34D399;
}

/* 🛒 MAIN CTA BUTTON & REASSURANCE WRAPPER */
.cta-block-wrap {
  margin-top: 0.5rem;
  padding-bottom: 1rem;
}

/* 🚀 TOP MARQUEE BANNER */
.top-marquee-banner {
  background: linear-gradient(90deg, #D97706, #FFD700);
  color: #0B0F17;
  padding: 0.4rem 0;
  overflow: hidden;
  position: relative;
  font-weight: 900;
  font-size: 0.85rem;
  white-space: nowrap;
}
.marquee-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
}
.marquee-content span {
  padding: 0 20px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* 🧭 NAVBAR NEW LAYOUT */
.nav-back-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFF;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
}
.nav-back-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.nav-search-bar {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 0.2rem 0.2rem 0.2rem 0.8rem;
  width: 150px;
  transition: width 0.3s ease;
}
.nav-search-bar input {
  background: transparent;
  border: none;
  color: #FFF;
  font-size: 0.8rem;
  width: 100%;
  outline: none;
  padding: 0 0.5rem;
}
.nav-search-bar button {
  background: transparent;
  border: none;
  color: #94A3B8;
  cursor: pointer;
}

/* 🖼️ HERO IMAGE FULL BLEED */
.hero-image-fullbleed {
  position: relative;
  width: 100%;
  border-radius: 20px;
  background: #FFF;
  overflow: hidden;
  margin-bottom: 0;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}
.hero-image-fullbleed img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-badge-top-right {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #10B981;
  color: #FFF;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 900;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}
.hero-badge-bottom-left {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  color: #059669;
  padding: 0.15rem 0.55rem;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.hero-badge-bottom-right {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #27272A;
  color: #FFF;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* 🏷️ TITLE AREA */
.hero-dark-bar {
  background: #18181B;
  color: #FFD700;
  padding: 0.8rem 1rem;
  font-weight: 800;
  font-size: 0.95rem;
  border-bottom: 2px solid #27272A;
  margin-bottom: 1rem;
  text-align: center;
  border-radius: 0 0 20px 20px;
}
.hero-title-area {
  text-align: right;
  padding: 0 1rem;
  margin-bottom: 1.5rem;
}
.hero-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #10B981;
  font-weight: 900;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}
.prod-name-new {
  font-size: 1.8rem;
  font-weight: 900;
  color: #FFF;
  line-height: 1.2;
}

/* ✨ FLIP EFFECT FOR OFFERS */
.flip-effect {
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.flip-effect:hover {
  transform: rotateX(10deg) translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}
.offer-cta-main, .btn-primary-cta {
  width: 100%; border: none; border-radius: 50px;
  font-family: inherit; font-weight: 900; font-size: 1.2rem;
  padding: 1.15rem 1.5rem; cursor: pointer; transition: var(--tr);
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.45);
  letter-spacing: 0.2px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.offer-cta-main:hover, .btn-primary-cta:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 40px rgba(16, 185, 129, 0.65);
}
.cta-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: #94A3B8;
  font-weight: 700;
}
.cta-reassurance span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.cta-reassurance span i {
  color: var(--gold);
}
.cta-reassurance .dot {
  color: rgba(255, 255, 255, 0.2);
}

.offer-cta-sub {
  display: flex; align-items: center; justify-content: center; gap: 1.2rem;
  margin-top: 0.75rem; margin-bottom: 1.5rem; font-size: 0.78rem; color: var(--text-muted);
  font-weight: 600;
}

/* 🛡️ TRUST BADGES STRIP */
.trust-badges-strip {
  background: var(--dark3); padding: 14px 0;
  border-top: 1px solid var(--gb); border-bottom: 1px solid var(--gb);
  text-align: center; margin-bottom: 1rem;
}
.trust-strip-flex {
  display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
  font-size: 0.88rem; font-weight: 800; color: #E2E8F0;
}
.trust-strip-flex span { display: flex; align-items: center; gap: 0.4rem; }

/* 🌟 TRUST MARKETING SECTION */
.trust-marketing-section {
  padding: 0.65rem 0; background: var(--dark);
}
.trust-header { text-align: center; margin-bottom: 0.85rem; }
.trust-header h2 { font-size: 1.4rem; color: var(--gold); margin-bottom: 0.3rem; font-weight: 900; }
.trust-header p { font-size: 0.88rem; color: var(--text-muted); }

.trust-features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 0.85rem;
}
.trust-card {
  background: var(--dark2); border: 1.5px solid var(--gb);
  border-radius: 18px; padding: 1.1rem; text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: var(--tr);
}
.trust-card:hover {
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-3px);
}
.t-icon { font-size: 2.2rem; margin-bottom: 0.65rem; }
.success-icon { color: var(--success); }
.gold-icon { color: var(--gold); }
.terra-icon { color: var(--terra2); }
.green-icon { color: #34D399; }
.trust-card h3 { font-size: 1.1rem; color: #FFF; margin-bottom: 0.35rem; font-weight: 800; }
.trust-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* 🚨 EMOTIONAL PAIN SECTION */
.emotional-pain-section { padding: 0.65rem 0; }
.pain-container-box {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.1) 0%, var(--dark2) 100%);
  border: 1.5px solid rgba(239, 68, 68, 0.3);
  border-radius: 20px; padding: 1.2rem 1rem; text-align: center;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}
.pain-icon-wrapper { font-size: 2.5rem; color: var(--danger); margin-bottom: 0.65rem; }
.pain-container-box h2 { font-size: 1.35rem; color: #FFF; margin-bottom: 0.5rem; font-weight: 900; line-height: 1.35; }
.pain-sub-text { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; }
.pain-list-grid { display: flex; flex-direction: column; gap: 0.75rem; text-align: right; margin-bottom: 1rem; }
.pain-item {
  background: var(--dark3); padding: 0.85rem 1rem; border-radius: 14px;
  border-right: 4px solid var(--danger); display: flex; gap: 0.85rem; align-items: center;
}
.pain-item i { font-size: 1.35rem; width: 28px; text-align: center; flex-shrink: 0; }
.danger-color { color: var(--danger); }
.pain-item h4 { color: #FFF; font-size: 1rem; margin-bottom: 0.2rem; font-weight: 800; }
.pain-item p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.45; }
.pain-conclusion-box {
  background: rgba(239, 68, 68, 0.12); border-radius: 14px; padding: 0.95rem 1rem; border: 1px solid rgba(239, 68, 68, 0.25);
}
.pain-conclusion-box h3 { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.3rem; font-weight: 800; }
.pain-conclusion-box p { color: #FFF; font-size: 0.88rem; line-height: 1.5; }

/* 📊 COMPARISON TABLE */
.comparison-section { padding: 0.65rem 0; }
.section-heading { text-align: center; font-size: 1.35rem; font-weight: 900; color: #FFF; margin-bottom: 0.5rem; }
.section-subheading { text-align: center; font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.85rem; }

.comparison-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  align-items: stretch;
  position: relative;
  margin-top: 0.85rem;
}

.comp-col {
  background: var(--dark2);
  border-radius: 20px;
  padding: 1.6rem 1.4rem;
  border: 1.5px solid var(--gb);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.comp-col:hover {
  transform: translateY(-4px);
}

/* ❌ Danger Card */
.danger-col {
  border-color: rgba(239, 68, 68, 0.35);
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.08) 0%, rgba(15, 23, 42, 0.95) 100%);
  position: relative;
}

.danger-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #EF4444, #B91C1C);
  border-radius: 20px 20px 0 0;
}

/* ✅ Success Card - EYE CATCHING ATTENTION GRABBER */
.success-col {
  border: 2px solid #10B981;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.16) 0%, rgba(15, 23, 42, 0.98) 100%);
  box-shadow: 0 0 35px rgba(16, 185, 129, 0.3), 0 15px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  animation: successCardPulse 3s infinite ease-in-out;
}

@keyframes successCardPulse {
  0%, 100% {
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.25), 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: #10B981;
  }
  50% {
    box-shadow: 0 0 45px rgba(16, 185, 129, 0.55), 0 20px 45px rgba(0, 0, 0, 0.6);
    border-color: #34D399;
  }
}

.comp-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.55);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.2px;
  animation: compBadgePulse 2s infinite ease-in-out;
}

@keyframes compBadgePulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.04); }
}

.comp-header {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  text-align: center;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.danger-col .comp-header {
  color: #F87171;
  text-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

.success-col .comp-header {
  color: #34D399;
  text-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.comp-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.94rem;
  color: #E2E8F0;
  font-weight: 600;
}

.comp-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}

.danger-col ul li i {
  color: #EF4444;
  font-size: 1.15rem;
  margin-top: 2px;
  filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.4));
  flex-shrink: 0;
}

.success-col ul li i {
  color: #10B981;
  font-size: 1.15rem;
  margin-top: 2px;
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.6));
  flex-shrink: 0;
}

/* 🔬 TECH EXPLANATION */
.tech-explanation-section, .installation-section, .guarantee-section, .bonuses-section, .faq-section { padding: 0.65rem 0; }
.tech-grid { display: flex; flex-direction: column; gap: 0.75rem; }
.tech-card {
  background: var(--dark2); border: 1.5px solid var(--gb); padding: 1rem; border-radius: 16px; position: relative;
}
.tech-number {
  position: absolute; top: 12px; left: 12px; width: 30px; height: 30px;
  background: rgba(255, 215, 0, 0.15); color: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 0.9rem;
}
.tech-card h3 { font-size: 1.05rem; color: var(--gold); margin-bottom: 0.3rem; font-weight: 800; }
.tech-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* 🛠️ INSTALLATION STEPS */
.steps-wrapper { display: flex; flex-direction: column; gap: 0.75rem; }
.step-card {
  background: var(--dark2); border: 1.5px solid var(--gb); padding: 1.1rem; border-radius: 18px; text-align: center;
}
.step-badge {
  display: inline-block; background: var(--gold); color: #0B0F17; font-weight: 900;
  font-size: 0.8rem; padding: 0.3rem 1rem; border-radius: 50px; margin-bottom: 0.85rem;
}
.step-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.45));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.step-card:hover .step-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.7));
}
.step-card h3 { font-size: 1.15rem; color: #FFF; margin-bottom: 0.4rem; font-weight: 800; }
.step-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* 🛡️ GOLD GUARANTEE */
.gold-guarantee-box {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, var(--dark2) 100%);
  border: 2px dashed rgba(255, 215, 0, 0.5); border-radius: 20px; padding: 1rem 1.4rem 1.5rem; text-align: center; position: relative;
}
.guarantee-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #0B0F17; font-weight: 900; padding: 0.35rem 1.4rem;
  border-radius: 50px; font-size: 0.95rem; box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); white-space: nowrap;
}
.guarantee-icon { font-size: 3.5rem; color: var(--gold); margin-bottom: 0.75rem; margin-top: 0.5rem; }
.gold-guarantee-box h3 { font-size: 1.35rem; color: var(--gold); margin-bottom: 0.75rem; font-weight: 900; }
.gold-guarantee-box p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.2rem; }
.guarantee-footer-tag {
  display: inline-block; background: var(--dark3); padding: 0.6rem 1.2rem; border-radius: 12px;
  color: var(--success); font-weight: 800; font-size: 0.9rem; border: 1px solid var(--success);
}

/* 🎁 BONUSES */
.bonuses-list { display: flex; flex-direction: column; gap: 1rem; }
.bonus-card {
  background: var(--dark2); border: 1.5px solid var(--gb); padding: 1.1rem; border-radius: 16px;
  display: flex; align-items: center; gap: 1.1rem; border-right: 4px solid var(--gold);
}
.bonus-icon {
  background: rgba(255, 215, 0, 0.15); width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--gold); flex-shrink: 0;
}
.bonus-card h4 { color: #FFF; font-size: 1.05rem; margin-bottom: 0.25rem; font-weight: 800; }
.bonus-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }

/* 💎 ULTRA-PREMIUM REVIEWS SECTION */
.reviews-section {
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.03) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 24px;
  padding: 1rem 1.5rem !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 215, 0, 0.05);
  position: relative;
  overflow: hidden;
  margin: 0 1rem 2rem 1rem;
}
@media (min-width: 768px) {
  .reviews-section { margin: 0 auto 3.5rem auto; max-width: 700px; padding: 1rem 2rem !important; }
}
@media (max-width: 600px) {
  .reviews-section { padding: 1.5rem 1rem !important; margin: 0 0.5rem 2rem 0.5rem; border-radius: 16px; }
  .section-heading { font-size: 1.5rem; }
  .section-subheading { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .review-card { padding: 1rem; border-radius: 16px; }
  .reviewer-avatar { width: 40px; height: 40px; font-size: 1.5rem; }
  .review-text { font-size: 0.88rem; line-height: 1.5; padding-right: 0.5rem; }
  .reviews-section::before { font-size: 100px; top: -10px; right: 10px; }
}

.reviews-section::before {
  content: '"'; position: absolute; top: -20px; right: 20px; font-size: 150px;
  color: rgba(255, 215, 0, 0.05); font-family: serif; line-height: 1; z-index: 0;
}
.section-heading { position: relative; z-index: 1; text-align: center; font-size: 2rem; font-weight: 900; margin-bottom: 0.8rem; color: #FFF; line-height: 1.4; text-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.section-subheading { position: relative; z-index: 1; text-align: center; color: var(--gold); font-size: 1.15rem; margin-bottom: 1rem; font-weight: 700; }

.reviews-carousel-wrapper { position: relative; z-index: 1; }
.review-page { display: none; flex-direction: column; gap: 1.2rem; }
.review-page.active { display: flex; animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1); }

.review-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.4));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 4px solid var(--gold);
  border-radius: 20px; padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(255, 215, 0, 0.15); border-color: rgba(255, 215, 0, 0.3); }
.review-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.reviewer-avatar { font-size: 1.8rem; background: linear-gradient(135deg, rgba(255,215,0,0.2), rgba(217,119,6,0.2)); border: 1px solid rgba(255,215,0,0.3); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.reviewer-name { font-weight: 900; font-size: 1.05rem; color: #F8FAFC; margin-bottom: 0.2rem; }
.review-stars { font-size: 0.9rem; color: #FFD700; display: flex; align-items: center; gap: 0.5rem; text-shadow: 0 0 5px rgba(255,215,0,0.5); }
.verified-tag { background: rgba(16, 185, 129, 0.15); color: #10B981; font-size: 0.75rem; padding: 0.2rem 0.6rem; border-radius: 50px; font-weight: 900; border: 1px solid rgba(16,185,129,0.3); }
.review-text { font-size: 1rem; color: #E2E8F0; line-height: 1.8; font-style: italic; font-weight: 600; padding-right: 0.8rem; border-right: 2px solid rgba(255,255,255,0.1); }

.reviews-nav-bar { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; background: rgba(0,0,0,0.2); padding: 10px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.05); }
.rev-nav-btn {
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.15); color: #FFF; font-weight: 800;
  padding: 0.6rem 1.2rem; border-radius: 50px; font-size: 0.9rem; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.rev-nav-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); transform: scale(1.05); }
.rev-page-indicators { display: flex; gap: 0.6rem; }
.rev-dot {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.05); color: #94A3B8; border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 0.95rem; cursor: pointer; transition: all 0.3s;
}
.rev-dot.active, .rev-dot:hover { background: linear-gradient(135deg, #FFD700, #D97706); color: #0B0F17; border-color: #FFD700; box-shadow: 0 0 15px rgba(255, 215, 0, 0.6); transform: scale(1.1); }

/* ❓ FAQ ACCORDION */
.faq-accordion { display: flex; flex-direction: column; gap: 0.85rem; }
.faq-item { background: var(--dark2); border: 1.5px solid var(--gb); border-radius: 16px; overflow: hidden; }
.faq-question {
  width: 100%; background: none; border: none; padding: 1.1rem; color: #FFF; font-weight: 800;
  font-size: 0.95rem; text-align: right; display: flex; justify-content: space-between; align-items: center; cursor: pointer;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 1.1rem; color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 250px; padding: 0 1.1rem 1.1rem; border-top: 1px solid var(--gb); }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--gold); }

/* 🛍️ FINAL ORDER & PRICING SECTION */
.final-order-section { padding: 0.75rem 0; background: var(--dark); border-top: 1px solid var(--gb); }
.offer-container-box { max-width: 520px; margin: 0 auto; }
.offer-section-title { font-size: 1.05rem; font-weight: 800; color: var(--gold); margin-bottom: 0.75rem; text-align: right; }

.offers-container { display: flex; flex-direction: column; gap: 0.85rem; }
.offer-card {
  background: var(--dark2); border: 2px solid var(--gb); border-radius: 16px; padding: 1.1rem;
  display: flex; align-items: center; gap: 1rem; cursor: pointer; transition: var(--tr); position: relative;
}
.offer-card.selected {
  border-color: var(--gold); background: rgba(255, 215, 0, 0.08);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.25);
}
.offer-badge {
  position: absolute; top: -12px; left: 15px; background: var(--gold); color: #0B0F17;
  font-size: 0.72rem; font-weight: 900; padding: 0.2rem 0.75rem; border-radius: 50px;
}
.offer-radio {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--text-muted);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--tr);
}
.offer-card.selected .offer-radio {
  border-color: var(--gold); background: var(--gold);
  box-shadow: inset 0 0 0 4px var(--dark2);
}
.offer-details { flex: 1; }
.offer-title { font-size: 1rem; font-weight: 900; color: #FFF; margin-bottom: 0.2rem; }
.offer-subtitle { font-size: 0.82rem; color: var(--text-muted); }
.offer-price-col { text-align: left; }
.offer-old-price { font-size: 0.75rem; color: var(--text-muted); text-decoration: line-through; }
.offer-new-price { font-size: 1.3rem; font-weight: 900; color: var(--gold); }
.offer-new-price small { font-size: 0.72rem; }
.offer-save-tag { font-size: 0.7rem; color: var(--success); font-weight: 800; }

.final-trust-icons {
  display: flex; flex-direction: column; gap: 10px; align-items: center; font-size: 0.85rem; color: var(--text-muted); font-weight: 700;
}

/* 📱 STICKY BUY BAR */
.buy-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11, 15, 23, 0.96); backdrop-filter: blur(20px);
  border-top: 1px solid var(--gb); padding: 0.85rem 1.1rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.4);
}
.bar-price { display: flex; flex-direction: column; }
.bar-old { font-size: 0.72rem; color: var(--text-muted); text-decoration: line-through; }
.bar-new { font-size: 1.35rem; font-weight: 900; color: var(--gold); line-height: 1; }
.bar-new small { font-size: 0.7rem; }
.buy-btn {
  flex: 1; background: linear-gradient(135deg, #10B981 0%, #059669 100%); color: #FFFFFF; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 50px;
  font-family: inherit; font-weight: 900; font-size: 1.05rem; padding: 0.85rem; cursor: pointer; transition: var(--tr);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.buy-btn:hover { background: linear-gradient(135deg, #059669 0%, #047857 100%); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(16, 185, 129, 0.7); }

/* 📝 CHECKOUT BOTTOM SHEET */
.sheet-bg {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(10px);
  display: flex; align-items: flex-end;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
@media(min-width: 600px) { .sheet-bg { align-items: center; justify-content: center; } }
.sheet-bg.open { opacity: 1; pointer-events: all; }

.sheet {
  background: var(--dark2); border-top: 2px solid var(--gold);
  border-radius: 20px 20px 0 0; width: 100%;
  transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.32, 1, 0.56, 1);
  max-height: 86vh; overflow-y: auto; padding: 1rem 1.1rem 1.25rem;
}
@media(min-width: 600px) {
  .sheet {
    border-radius: 20px; max-width: 420px; border: 2px solid var(--gold);
    transform: scale(0.95) translateY(10px);
  }
}
.sheet-bg.open .sheet { transform: translateY(0); }
@media(min-width: 600px) { .sheet-bg.open .sheet { transform: scale(1) translateY(0); } }

.sheet-handle { width: 36px; height: 4px; background: var(--dark4); border-radius: 2px; margin: 0 auto 0.75rem; }
@media(min-width: 600px) { .sheet-handle { display: none; } }

.sheet-title { font-size: 1.15rem; font-weight: 900; color: #FFF; }
.sheet-sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.75rem; }

/* 🛍️ CHECKOUT INTERACTIVE OFFER SWITCHER & AOV BOOSTER */
.order-preview {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255, 215, 0, 0.05); border: 1px solid rgba(255, 215, 0, 0.25); border-radius: 12px;
  padding: 0.65rem 0.85rem; margin-bottom: 0.85rem;
}
.order-preview img { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; border: 1px solid var(--gold); flex-shrink: 0; }
.op-name { font-weight: 800; font-size: 0.9rem; color: #FFF; margin-bottom: 0.15rem; }
.op-price { color: var(--gold); font-weight: 900; font-size: 1.05rem; }

/* 🛍️ ULTRA-PROFESSIONAL CHECKOUT OFFER TRIGGER (HIGH VISIBILITY & AOV BOOSTER) */
.sheet-selected-offer-card {
  background: linear-gradient(135deg, #131B2A 0%, #0B111E 100%);
  border: 2px solid #F59E0B;
  border-radius: 16px;
  padding: 1.1rem 0.95rem 0.75rem;
  margin: 0.75rem 0 0.85rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.25), 0 8px 25px rgba(0, 0, 0, 0.5);
  animation: offerCardPulseGlow 3s infinite ease-in-out;
}

@keyframes offerCardPulseGlow {
  0%, 100% {
    border-color: #F59E0B;
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.25), 0 8px 20px rgba(0, 0, 0, 0.4);
  }
  50% {
    border-color: #10B981;
    box-shadow: 0 0 28px rgba(16, 185, 129, 0.4), 0 10px 30px rgba(0, 0, 0, 0.6);
  }
}

.sheet-selected-offer-card:hover {
  transform: translateY(-2px);
  border-color: #FFD700;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

/* Floating Live Badge to catch eyes */
.sheet-offer-live-badge {
  position: absolute;
  top: -12px;
  right: 14px;
  background: linear-gradient(135deg, #FFD700 0%, #D97706 100%);
  color: #0B0F17;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 3px 12px rgba(255, 215, 0, 0.5);
  letter-spacing: 0.2px;
  z-index: 2;
  animation: liveBadgePop 2s infinite ease-in-out;
}

@keyframes liveBadgePop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.sheet-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  display: inline-block;
  animation: liveDotPulse 1.2s infinite;
}

@keyframes liveDotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.sheet-offer-card-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.sheet-card-thumb {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.sheet-offer-card-info {
  flex: 1;
  min-width: 0;
}

.sheet-active-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  color: #FCD34D;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.35);
  padding: 1px 8px;
  border-radius: 6px;
  margin-bottom: 4px;
}

.sheet-active-title {
  font-weight: 900;
  font-size: 0.96rem;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}

.sheet-active-sub {
  font-size: 0.75rem;
  color: #94A3B8;
  margin-top: 3px;
}

.sheet-active-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

.sheet-active-price {
  color: #FFD700;
  font-weight: 900;
  font-size: 1.3rem;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.35);
}

.sheet-active-old {
  font-size: 0.8rem;
  color: #64748B;
  text-decoration: line-through;
  font-weight: 700;
}

/* HIGH-CONTRAST GREEN BUTTON ACTION BAR */
.sheet-change-cta-bar {
  margin-top: 0.75rem;
  padding: 0.55rem 0.85rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.22) 100%);
  border: 1.5px dashed rgba(16, 185, 129, 0.6);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.25s ease;
}

.sheet-selected-offer-card:hover .sheet-change-cta-bar {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25) 0%, rgba(5, 150, 105, 0.35) 100%);
  border-style: solid;
  border-color: #10B981;
}

.sheet-change-text {
  font-size: 0.82rem;
  font-weight: 800;
  color: #34D399;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.sheet-change-text i {
  color: #10B981;
  font-size: 0.95rem;
  filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.6));
}

.sheet-chevron-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFD700;
  font-size: 0.85rem;
  transition: transform 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}

.sheet-selected-offer-card.active .sheet-chevron-badge {
  transform: rotate(180deg);
  background: #FFD700;
  color: #0B0F17;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

/* Offers Drawer */
.sheet-offers-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, margin-bottom 0.25s ease;
  opacity: 0;
  margin-bottom: 0;
}

.sheet-offers-drawer.open {
  max-height: 500px;
  opacity: 1;
  margin-bottom: 0.85rem;
}

.sod-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  padding: 0 2px;
}

.sod-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #E2E8F0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sod-pill {
  font-size: 0.68rem;
  font-weight: 700;
  color: #34D399;
  background: rgba(16, 185, 129, 0.12);
  padding: 2px 7px;
  border-radius: 12px;
}

.sod-grid {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sod-card {
  background: #0B0F17;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.sod-card:hover {
  border-color: rgba(255, 215, 0, 0.5);
  background: rgba(19, 26, 38, 0.95);
}

.sod-card.selected {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.sod-badge {
  position: absolute;
  top: -8px;
  left: 10px;
  font-size: 0.64rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.sod-badge.gold {
  background: linear-gradient(135deg, #FFD700 0%, #D97706 100%);
  color: #0B0F17;
}

.sod-badge.green {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
}

.sod-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: transparent;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.sod-card.selected .sod-radio {
  border-color: var(--gold);
  background: var(--gold);
  color: #0B0F17;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.sod-body {
  flex: 1;
  min-width: 0;
}

.sod-title-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sod-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.sod-desc {
  font-size: 0.72rem;
  color: #94A3B8;
  margin-top: 2px;
  line-height: 1.3;
}

.sod-save-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  color: #FBBF24;
  margin-top: 3px;
}

.sod-save-tag.save-green {
  color: #34D399;
}

.sod-save-tag.save-gold {
  color: #FCD34D;
  font-weight: 900;
}

.sod-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

.sod-old {
  font-size: 0.72rem;
  color: #64748B;
  text-decoration: line-through;
  font-weight: 700;
}

.sod-new {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.sod-new.highlight {
  color: #34D399;
}

.sod-new.super-green {
  color: #10B981;
}

/* Dynamic Congratulation Strip */
.sheet-aov-congrats {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(245, 158, 11, 0.12) 100%);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 10px;
  padding: 0.45rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: #34D399;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  animation: fadeIn 0.3s ease;
}

.close-btn {
  background: var(--dark3); border: 1px solid var(--gb); color: var(--text-muted);
  font-size: 1.2rem; width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: var(--tr);
}
.close-btn:hover { color: #FFF; border-color: var(--gold); }

.form-inp {
  width: 100%; background: #0B0F17; border: 1.5px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px; color: #FFFFFF; font-family: inherit;
  font-size: 0.95rem; font-weight: 600; padding: 0.7rem 0.85rem; outline: none; transition: var(--tr);
  margin-bottom: 0.65rem;
}
.form-inp:focus { border-color: var(--gold); box-shadow: 0 0 14px rgba(255, 215, 0, 0.3); background: #131A26; }
.form-inp::placeholder { color: #64748B; font-weight: 400; font-size: 0.88rem; }

.total-box {
  display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(255, 215, 0, 0.3); border-radius: 12px;
  padding: 0.65rem 0.9rem; margin-bottom: 0.85rem;
}
.total-box span { font-size: 0.88rem; color: #FFF; font-weight: 700; }
.total-box strong { font-size: 1.3rem; font-weight: 900; color: var(--gold); }

.submit-btn {
  width: 100%; background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 50px;
  font-family: inherit; font-weight: 900; font-size: 1.1rem;
  padding: 0.85rem; cursor: pointer; transition: var(--tr);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.submit-btn:hover { background: linear-gradient(135deg, #059669 0%, #047857 100%); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(16, 185, 129, 0.7); }
.privacy { text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 0.6rem; font-weight: 600; }

/* 🎉 SUCCESS MODAL */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.88); backdrop-filter: blur(10px);
  z-index: 3000; display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }

.success-card {
  background: var(--dark2); border: 2px solid var(--success); border-radius: 24px;
  padding: 1rem 1.5rem; text-align: center; max-width: 480px; width: 100%;
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3); transform: scale(0.9); transition: transform 0.3s ease;
}
.modal-overlay.active .success-card { transform: scale(1); }

.success-icon { font-size: 3.8rem; color: var(--success); margin-bottom: 0.85rem; }
.success-card h2 { font-size: 1.45rem; color: #FFF; margin-bottom: 0.6rem; font-weight: 900; }
.success-card p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1.2rem; line-height: 1.6; }

.details-box {
  background: var(--dark3); border: 1.5px solid var(--gb); border-radius: 16px;
  padding: 1.1rem; text-align: right; font-size: 0.9rem; color: #E2E8F0; margin-bottom: 1.4rem;
  line-height: 1.8;
}

/* ==========================================================================
   🏆 LUXURY TRUST CADRE FRAME (توصيل مجاني + المعاينة قبل الدفع)
   ========================================================================== */

.trust-cadre-container {
  margin: 1.2rem 0 1.5rem;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 2px solid #F59E0B;
  border-radius: 20px;
  padding: 1.25rem 1rem 1.1rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45), 0 0 25px rgba(245, 158, 11, 0.15);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  text-align: center;
  transition: var(--tr);
}

.trust-cadre-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.18), transparent);
  transform: skewX(-25deg);
  animation: cadreShine 4s infinite ease-in-out;
  pointer-events: none;
}

@keyframes cadreShine {
  0% { left: -100%; }
  35%, 100% { left: 220%; }
}

.trust-cadre-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25) 0%, rgba(245, 158, 11, 0.2) 100%);
  border: 1.5px solid #3B82F6;
  color: #60A5FA;
  font-weight: 900;
  font-size: 0.86rem;
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
  backdrop-filter: blur(8px);
  letter-spacing: 0.2px;
}

.trust-cadre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

@media (max-width: 520px) {
  .trust-cadre-grid {
    grid-template-columns: 1fr;
  }
}

.trust-cadre-card {
  background: rgba(11, 15, 23, 0.8);
  border: 1.5px solid rgba(255, 215, 0, 0.3);
  border-radius: 16px;
  padding: 0.95rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-align: right;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.trust-cadre-card:hover {
  border-color: var(--gold);
  background: rgba(19, 26, 38, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.25);
}

.trust-cadre-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.trust-cadre-card:hover .trust-cadre-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.trust-cadre-icon-wrap.delivery {
  background: rgba(16, 185, 129, 0.18);
  border: 1.5px solid rgba(16, 185, 129, 0.45);
  color: #10B981;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.trust-cadre-icon-wrap.inspection {
  background: rgba(245, 158, 11, 0.18);
  border: 1.5px solid rgba(245, 158, 11, 0.45);
  color: #F59E0B;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.trust-cadre-content {
  flex: 1;
}

.trust-cadre-content h4 {
  font-size: 0.98rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-cadre-content p {
  font-size: 0.78rem;
  color: #CBD5E1;
  line-height: 1.4;
  font-weight: 500;
}

/* 🚚 🤝 MINI TRUST CADRE FOR FORM / SHEET */
.trust-cadre-mini {
  background: rgba(15, 23, 42, 0.8);
  border: 1.5px solid rgba(255, 215, 0, 0.35);
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
  margin: 0.85rem 0 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.tc-mini-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-align: right;
}

.tc-mini-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}

.tc-mini-text strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 800;
  color: #FFF;
  line-height: 1.2;
}

.tc-mini-text span {
  display: block;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
}

/* ==========================================================================
   💡 EXPANDED EMOTIONAL & SAFETY HIGHLIGHT BOX (Luxury Cadre Frame)
   ========================================================================== */

.emotional-box-enhanced {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.98) 100%);
  border: 2px solid #F59E0B;
  border-radius: 24px;
  padding: 1.6rem 1.25rem 1.4rem;
  margin: 1.6rem 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(245, 158, 11, 0.18);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  text-align: right;
  transition: var(--tr);
}

.emotional-box-enhanced::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.eb-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, #EF4444 0%, #B91C1C 100%);
  color: #FFFFFF;
  font-weight: 900;
  font-size: 0.85rem;
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 18px rgba(239, 68, 68, 0.45);
  letter-spacing: 0.2px;
}

.eb-main-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.45;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.eb-intro-card {
  background: rgba(239, 68, 68, 0.1);
  border-right: 4px solid #EF4444;
  border-top: 1px solid rgba(239, 68, 68, 0.25);
  border-bottom: 1px solid rgba(239, 68, 68, 0.25);
  border-left: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin-bottom: 1.3rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.eb-intro-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.eb-intro-text {
  font-size: 0.92rem;
  color: #F1F5F9;
  line-height: 1.7;
  font-weight: 500;
}

.eb-features-grid {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.eb-feat-card {
  background: rgba(11, 15, 23, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.eb-feat-card:hover {
  transform: translateY(-3px);
  background: rgba(19, 26, 38, 0.95);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.eb-feat-card.green-accent {
  border-color: rgba(16, 185, 129, 0.35);
}
.eb-feat-card.green-accent:hover {
  border-color: #10B981;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
}

.eb-feat-card.gold-accent {
  border-color: rgba(245, 158, 11, 0.35);
}
.eb-feat-card.gold-accent:hover {
  border-color: #F59E0B;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.25);
}

.eb-feat-card.terra-accent {
  border-color: rgba(234, 88, 12, 0.35);
}
.eb-feat-card.terra-accent:hover {
  border-color: #F97316;
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.25);
}

.eb-feat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.eb-feat-card:hover .eb-feat-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.eb-feat-icon-wrap.green {
  background: rgba(16, 185, 129, 0.18);
  color: #10B981;
  border: 1.5px solid rgba(16, 185, 129, 0.45);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.eb-feat-icon-wrap.gold {
  background: rgba(245, 158, 11, 0.18);
  color: #F59E0B;
  border: 1.5px solid rgba(245, 158, 11, 0.45);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.eb-feat-icon-wrap.terra {
  background: rgba(234, 88, 12, 0.18);
  color: #F97316;
  border: 1.5px solid rgba(234, 88, 12, 0.45);
  box-shadow: 0 0 15px rgba(234, 88, 12, 0.2);
}

.eb-feat-content {
  flex: 1;
}

.eb-feat-content h4 {
  font-size: 1rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.eb-feat-content p {
  font-size: 0.84rem;
  color: #CBD5E1;
  line-height: 1.55;
}


/* ==========================================================================
   🛡️ TRUST BADGES STRIP (4 CADRE CARDS GRID)
   ========================================================================== */

.trust-badges-strip {
  background: linear-gradient(180deg, #131A26 0%, #0B0F17 100%);
  padding: 1.5rem 0;
  border-top: 1.5px solid rgba(255, 215, 0, 0.3);
  border-bottom: 1.5px solid rgba(255, 215, 0, 0.3);
  margin-bottom: 1rem;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

@media (min-width: 640px) {
  .trust-badges-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-badge-card {
  background: rgba(30, 41, 59, 0.7);
  border: 1.5px solid rgba(255, 215, 0, 0.3);
  border-radius: 16px;
  padding: 0.9rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-align: right;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.trust-badge-card:hover {
  border-color: var(--gold);
  background: rgba(30, 41, 59, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.25);
}

.tb-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.tb-card-icon.green {
  background: rgba(16, 185, 129, 0.2);
  color: #10B981;
  border: 1.5px solid rgba(16, 185, 129, 0.45);
}

.tb-card-icon.blue {
  background: rgba(59, 130, 246, 0.2);
  color: #3B82F6;
  border: 1.5px solid rgba(59, 130, 246, 0.45);
}

.tb-card-icon.gold {
  background: rgba(245, 158, 11, 0.2);
  color: #F59E0B;
  border: 1.5px solid rgba(245, 158, 11, 0.45);
}

.tb-card-icon.purple {
  background: rgba(168, 85, 247, 0.2);
  color: #A855F7;
  border: 1.5px solid rgba(168, 85, 247, 0.45);
}

.tb-card-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.25;
}

.tb-card-info span {
  display: block;
  font-size: 0.74rem;
  color: #CBD5E1;
  margin-top: 0.15rem;
  font-weight: 500;
}

/* ==========================================================================
   📸 BEFORE / AFTER VISUAL COMPARISON SECTION
   ========================================================================== */

.visual-before-after-section {
  padding: 1.5rem 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
}

.vba-header {
  margin-bottom: 1.8rem;
  text-align: center;
}

.vba-badge {
  background: rgba(245, 158, 11, 0.18);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.vba-header h2 {
  font-size: 1.45rem;
  font-weight: 900;
  color: #FFF;
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.vba-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.vba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

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

.vba-card {
  background: var(--dark3);
  border-radius: 20px;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: var(--tr);
}

.vba-card:hover {
  transform: translateY(-4px);
}

.vba-card.danger-card {
  border: 2px solid rgba(239, 68, 68, 0.4);
}

.vba-card.success-card {
  border: 2px solid rgba(16, 185, 129, 0.45);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

.vba-card-badge {
  font-size: 0.88rem;
  font-weight: 900;
  padding: 0.35rem 0.95rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 0.9rem;
}

.vba-card-badge.danger {
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid var(--danger);
  color: #FF7B7B;
}

.vba-card-badge.success {
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid var(--success);
  color: #34D399;
}

.vba-img-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1.5px solid var(--gb);
  max-height: 240px;
}

.vba-img-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.vba-overlay-tag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  color: #FFF;
}

.vba-overlay-tag.danger {
  background: rgba(239, 68, 68, 0.9);
}

.vba-overlay-tag.success {
  background: rgba(16, 185, 129, 0.9);
}

.vba-card-content h4 {
  font-size: 1rem;
  font-weight: 900;
  color: #FFF;
  margin-bottom: 0.65rem;
}

.vba-card-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.vba-card-content li {
  font-size: 0.84rem;
  color: #E2E8F0;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.red-icon { color: var(--danger); font-size: 0.95rem; margin-top: 2px; }
.green-icon { color: var(--success); font-size: 0.95rem; margin-top: 2px; }

/* ==========================================================================
   🔍 MATERIALS & QUALITY VISUAL SHOWCASE
   ========================================================================== */

.materials-showcase-section {
  padding: 0.65rem 0;
}

.materials-card-frame {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 2px solid rgba(255, 215, 0, 0.35);
  border-radius: 24px;
  padding: 1.1rem 1rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

.materials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: center;
}

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

.materials-img-col {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 215, 0, 0.3);
}

.materials-img-col img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

.materials-img-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: #0B0F17;
  font-weight: 900;
  font-size: 0.78rem;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.materials-text-col {
  text-align: right;
}

.m-badge {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 0.4rem;
}

.materials-text-col h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: #FFF;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.materials-text-col p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.m-highlights-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.m-h-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(11, 15, 23, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
}

.m-h-item i {
  font-size: 1.25rem;
  margin-top: 3px;
}

.m-h-item strong {
  font-size: 0.9rem;
  font-weight: 800;
  color: #FFF;
  display: block;
}

.m-h-item p {
  font-size: 0.78rem;
  color: #94A3B8;
  margin: 0.1rem 0 0 0;
  line-height: 1.4;
}

/* ==========================================================================
   📸 3 PHOTO VISUAL DESCRIPTION SECTION (المحتوى المطابق للصور)
   ========================================================================== */

.product-visual-description-section {
  padding: 1.5rem 0;
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.pvd-header {
  margin-bottom: 1rem;
  text-align: center;
}

.pvd-badge {
  background: rgba(255, 215, 0, 0.15);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.pvd-header h2 {
  font-size: 1.45rem;
  font-weight: 900;
  color: #FFF;
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.pvd-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pvd-blocks-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pvd-block-card {
  background: rgba(30, 41, 59, 0.65);
  border: 1.5px solid rgba(255, 215, 0, 0.25);
  border-radius: 20px;
  padding: 1.1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  transition: var(--tr);
}

.pvd-block-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

@media (max-width: 640px) {
  .pvd-block-card {
    grid-template-columns: 1fr;
  }
}

.pvd-img-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.pvd-img-box img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pvd-img-box:hover img {
  transform: scale(1.04);
}

.pvd-img-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  color: #FFF;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.pvd-img-tag.danger { background: rgba(239, 68, 68, 0.9); }
.pvd-img-tag.gold { background: linear-gradient(135deg, #FFD700 0%, #D97706 100%); color: #0B0F17; }
.pvd-img-tag.green { background: rgba(16, 185, 129, 0.9); }

.pvd-content-box {
  text-align: right;
  position: relative;
}

.pvd-step-num {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #FFD700 0%, #D97706 100%);
  color: #0B0F17;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.pvd-content-box h3 {
  font-size: 1.15rem;
  font-weight: 900;
  color: #FFF;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.pvd-content-box p {
  font-size: 0.88rem;
  color: #CBD5E1;
  line-height: 1.65;
  margin-bottom: 0.9rem;
}

.pvd-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.pvd-feature-list li {
  font-size: 0.82rem;
  color: #E2E8F0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
}

.pvd-feature-list i.green {
  color: #10B981;
}

/* ⬆️ FLOATING SMALL & TRANSPARENT SCROLL TO TOP ARROW BUTTON */
.floating-top-btn, .floating-offers-btn {
  position: fixed;
  bottom: 85px;
  left: 14px;
  z-index: 99;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
}

.floating-top-btn.visible, .floating-offers-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-top-btn:hover, .floating-offers-btn:hover {
  background: rgba(15, 23, 42, 0.85);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
  .floating-top-btn, .floating-offers-btn {
    bottom: 30px;
    left: 25px;
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
}




/* ==========================================================================
   THANK YOU PAGE (DLV & AOV BOOSTER) STYLES
   ========================================================================== */

.ty-page {
  padding-top: 1rem;
}

.ty-hero {
  text-align: center;
  margin-bottom: 1.5rem;
}

.ty-hero h1 {
  font-size: 1.8rem;
  color: var(--success);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.ty-hero p {
  color: #94A3B8;
  font-size: 1rem;
}

/* Order Details Card */
.ty-order-card {
  background: rgba(19, 26, 38, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.ty-order-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10B981, #FFD700);
}

.ty-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
.ty-info-row:last-child {
  border-bottom: none;
}

.ty-info-label {
  color: #94A3B8;
  font-size: 0.9rem;
  font-weight: 700;
}

.ty-info-value {
  color: #FFF;
  font-size: 1.05rem;
  font-weight: 900;
  text-align: left;
}

/* Phone Number Verification */
.ty-phone-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.ty-phone-number {
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  direction: ltr;
}

.ty-verify-btn {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--danger);
  color: #FF8A8A;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  animation: pulseDanger 2s infinite;
}

.ty-verify-btn.verified {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--success);
  color: #34D399;
  animation: none;
}

/* Delivery Steps */
.ty-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 1rem;
  padding: 0 1rem;
}

.ty-steps::before {
  content: '';
  position: absolute;
  top: 15px;
  right: 15%;
  left: 15%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.ty-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  width: 30%;
}

.ty-step-icon {
  width: 32px;
  height: 32px;
  background: var(--dark3);
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.ty-step.active .ty-step-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.ty-step-text {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-muted);
}
.ty-step.active .ty-step-text {
  color: #FFF;
}

/* Upsell Box */
.ty-upsell-box {
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.1) 0%, var(--dark2) 100%);
  border: 2px dashed var(--terra2);
  border-radius: 18px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.ty-upsell-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terra2);
  color: #FFF;
  font-weight: 900;
  font-size: 0.8rem;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4);
  white-space: nowrap;
}

.ty-upsell-title {
  font-size: 1.2rem;
  color: #FFF;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.ty-upsell-timer {
  display: inline-block;
  background: rgba(0, 0, 0, 0.5);
  color: var(--gold);
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

