/* --- LUXURY & SHARP EDGE DESIGN SYSTEM (PARSA COFFEE) --- */
:root {
  --bg-main: #fcfaf7;
  --bg-card: #ffffff;
  --bg-card-subtle: #f8f4ee;
  --bg-input: #ffffff;
  --border-light: rgba(180, 140, 100, 0.22);
  --border-medium: rgba(180, 140, 100, 0.4);
  
  --gold-primary: #a67c52;
  --gold-light: #cbb29c;
  --gold-dark: #6e4e37;
  --gold-gradient: linear-gradient(135deg, #bd8b5c 0%, #8e5e34 100%);
  
  --text-primary: #2c221a;
  --text-secondary: #584639;
  --text-muted: #826e60;
  
  --accent-badge: #d97706;
  --accent-badge-bg: #fef3c7;
  --success-green: #15803d;
  --success-bg: rgba(21, 128, 61, 0.08);
  
  --font-arabic: 'Tajawal', 'Cairo', system-ui, sans-serif;
  --font-number: 'Outfit', 'Tajawal', system-ui, sans-serif;
  
  --shadow-subtle: 0 4px 16px rgba(110, 78, 55, 0.06);
  --shadow-medium: 0 10px 25px rgba(110, 78, 55, 0.09);
  --shadow-elevated: 0 16px 36px rgba(110, 78, 55, 0.13);
  
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 75px;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  text-align: right;
  direction: rtl;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

*:not(i):not(.fa):not(.fas):not(.far):not(.fab) {
  font-family: var(--font-arabic) !important;
}

i, .fa, .fas, .far, .fab {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

.container {
  max-width: 1050px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

/* --- 1. TICKER BAR --- */
.announcement-bar {
  background: #1a1614;
  color: #f3efe9;
  height: 38px;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.announcement-slider {
  height: 38px;
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.announcement-item {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
  padding: 0 8px;
  text-align: center;
  white-space: nowrap;
}

.announcement-item.active {
  opacity: 1;
  transform: translateY(0);
}

.announcement-item.exit {
  opacity: 0;
  transform: translateY(-100%);
}

.announcement-item i {
  color: #fbbf24;
  font-size: 0.85rem;
}

/* --- 2. HEADER --- */
header {
  background: rgba(252, 250, 247, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.5rem 0;
  position: sticky;
  top: 38px;
  z-index: 1000;
  width: 100%;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 0px;
  border: 1.5px solid var(--gold-primary);
  object-fit: cover;
}

.logo-brand-text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
}

.logo-brand-text span {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
}

.header-cta-pill {
  background: var(--gold-gradient);
  color: #ffffff;
  padding: 0.4rem 0.9rem;
  border-radius: 0px;
  font-weight: 800;
  font-size: 0.82rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 4px 12px rgba(166, 124, 82, 0.25);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.header-cta-pill:hover {
  transform: translateY(-1px);
}

/* --- 3. HERO SECTION --- */
.hero-section {
  padding: 1.5rem 0 2.2rem 0;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  width: 100%;
}

/* Product Showcase (Right) */
.product-showcase {
  width: 100%;
  min-width: 0;
  position: relative;
}

.product-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--success-bg);
  border: 1px solid rgba(21, 128, 61, 0.25);
  color: var(--success-green);
  padding: 0.3rem 0.75rem;
  border-radius: 0px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  white-space: nowrap;
}

.image-card-main {
  background: #ffffff;
  border-radius: 0px;
  padding: 0.6rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-medium);
  width: 100%;
  box-sizing: border-box;
}

.slider-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  width: 100%;
  background: #ffffff;
}

.main-offer-img {
  width: 100%;
  height: auto;
  border-radius: 0px;
  display: block;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-medium);
  border-radius: 0px;
  color: var(--text-primary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: var(--transition);
  z-index: 10;
}

.slider-arrow:hover {
  background: #ffffff;
  color: var(--gold-dark);
}

.slider-arrow.prev-arrow { right: 0.5rem; }
.slider-arrow.next-arrow { left: 0.5rem; }

.slider-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  margin-top: 0.6rem;
  width: 100%;
}

.thumb-card {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: 0px;
  padding: 0.2rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  width: 100%;
}

.thumb-card img {
  width: 100%;
  height: 46px;
  object-fit: cover;
  border-radius: 0px;
  display: block;
}

.thumb-card.active {
  border-color: var(--gold-primary);
  box-shadow: 0 2px 8px rgba(166, 124, 82, 0.25);
}

/* Hero Content (Left) */
.hero-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  min-width: 0;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--accent-badge-bg);
  color: var(--accent-badge);
  border: 1px solid rgba(217, 119, 6, 0.3);
  padding: 0.3rem 0.75rem;
  border-radius: 0px;
  font-size: 0.8rem;
  font-weight: 800;
  width: fit-content;
  white-space: nowrap;
}

.hero-title {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-primary);
  word-wrap: break-word;
}

.hero-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: #ffffff;
  padding: 0.6rem 0.8rem;
  border-radius: 0px;
  border: 1px solid var(--border-light);
  width: 100%;
  box-sizing: border-box;
}

.benefits-list li span {
  flex: 1;
  min-width: 0;
  word-break: break-word;
  white-space: normal;
  line-height: 1.4;
}

.benefits-list li i {
  color: var(--gold-primary);
  font-size: 0.85rem;
  background: rgba(166, 124, 82, 0.12);
  width: 22px;
  height: 22px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Compact Price & Timer Box */
.price-timer-combined {
  background: #ffffff;
  border: 1.5px solid var(--gold-primary);
  border-radius: 0px;
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  box-sizing: border-box;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-shrink: 0;
}

.price-current {
  font-family: var(--font-number);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1;
}

.price-currency {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
}

.price-old {
  font-family: var(--font-number);
  font-size: 1.05rem;
  color: #a0938a;
  text-decoration: line-through;
  margin-right: 0.3rem;
}

.shipping-pill {
  background: var(--success-bg);
  border: 1px solid rgba(21, 128, 61, 0.25);
  color: var(--success-green);
  padding: 0.3rem 0.65rem;
  border-radius: 0px;
  font-weight: 800;
  font-size: 0.76rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.timer-row-compact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  background: #1f1a17;
  color: #ffffff;
  padding: 0.55rem 0.8rem;
  border-radius: 0px;
  width: 100%;
  box-sizing: border-box;
}

.timer-row-compact .label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fde047;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.timer-digits-mini {
  display: flex;
  gap: 0.3rem;
  direction: ltr;
}

.timer-digits-mini .unit {
  background: rgba(255, 255, 255, 0.12);
  padding: 0.2rem 0.4rem;
  border-radius: 0px;
  font-family: var(--font-number);
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
}

/* CTA BUTTON (SHARP & SINGLE LINE) */
.cta-btn-primary {
  background: var(--gold-gradient);
  color: #ffffff;
  border: none;
  padding: 0.9rem 1rem;
  border-radius: 0px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 8px 22px rgba(166, 124, 82, 0.35);
  transition: var(--transition);
  text-decoration: none;
  width: 100%;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(166, 124, 82, 0.45);
}

.cta-btn-primary::after, .sticky-bar-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: goldenShimmer 3.5s infinite ease-in-out;
  pointer-events: none;
}

@keyframes goldenShimmer {
  0% { left: -150%; }
  24% { left: 150%; }
  100% { left: 150%; }
}

.hero-quick-trust {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-muted);
  width: 100%;
  box-sizing: border-box;
}

.hero-quick-trust span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hero-quick-trust i {
  color: var(--success-green);
}

/* --- 4. TRUST 4-GRID STRIP --- */
.features-section {
  padding: 1.4rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: #f7f3ed;
  width: 100%;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  width: 100%;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #ffffff;
  padding: 0.75rem 0.85rem;
  border-radius: 0px;
  border: 1px solid var(--border-light);
}

.trust-item i {
  font-size: 1.2rem;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.trust-item-text h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.trust-item-text p {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* --- 5. COMPACT INGREDIENTS SECTION --- */
.ingredients-section {
  padding: 2.2rem 0;
  width: 100%;
}

.section-head {
  text-align: center;
  margin-bottom: 1.5rem;
  width: 100%;
}

.section-head h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.section-head p {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.ingredients-grid-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  width: 100%;
}

.ingredient-box {
  background: #ffffff;
  border-radius: 0px;
  padding: 1.1rem 0.85rem;
  border: 1px solid var(--border-light);
  text-align: center;
  transition: var(--transition);
}

.ingredient-box:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-subtle);
  transform: translateY(-2px);
}

.ingredient-box i {
  font-size: 1.4rem;
  color: var(--gold-primary);
  background: rgba(166, 124, 82, 0.1);
  width: 42px;
  height: 42px;
  border-radius: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.ingredient-box h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.ingredient-box p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* --- 6. CHECKOUT FORM SECTION --- */
.checkout-section {
  padding: 1.8rem 0 3rem 0;
  scroll-margin-top: 70px;
  width: 100%;
}

.checkout-card-main {
  background: #ffffff;
  border-radius: 0px;
  box-shadow: var(--shadow-medium);
  border: 1.5px solid var(--gold-primary);
  padding: 1.6rem 1.3rem;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.checkout-header {
  text-align: center;
  margin-bottom: 1.3rem;
}

.checkout-header h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
}

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

/* VARIANT CARDS */
.variant-grid-clean {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  width: 100%;
}

.variant-card-clean {
  background: var(--bg-card-subtle);
  border: 1.5px solid var(--border-light);
  border-radius: 0px;
  padding: 0.7rem 0.55rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  user-select: none;
}

.variant-card-clean * {
  pointer-events: none;
}

.variant-card-clean:hover {
  border-color: var(--gold-primary);
}

.variant-card-clean.active {
  border-color: var(--gold-primary);
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(166, 124, 82, 0.2);
}

.variant-card-clean .tag {
  position: absolute;
  top: -9px;
  right: 50%;
  transform: translateX(50%);
  background: #dc2626;
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 900;
  padding: 0.15rem 0.45rem;
  border-radius: 0px;
  white-space: nowrap;
}

.variant-card-clean .title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-primary);
}

.variant-card-clean .price {
  font-family: var(--font-number);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.variant-card-clean .subtag {
  font-size: 0.62rem;
  color: var(--success-green);
  font-weight: 700;
}

/* FORM FIELDS */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  width: 100%;
}

.form-group {
  margin-bottom: 0.85rem;
  width: 100%;
}

.form-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.form-input, .form-select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--border-medium);
  border-radius: 0px;
  font-size: 0.9rem;
  color: var(--text-primary);
  background: #ffffff;
  transition: var(--transition);
  box-sizing: border-box;
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(166, 124, 82, 0.15);
}

.order-summary-box {
  background: var(--bg-card-subtle);
  border: 1px dashed var(--gold-primary);
  border-radius: 0px;
  padding: 0.85rem 1rem;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
  box-sizing: border-box;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
}

.summary-line.total {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-dark);
  border-top: 1px solid rgba(166, 124, 82, 0.2);
  padding-top: 0.35rem;
  margin-top: 0.1rem;
}

/* --- 7. FAQ ACCORDION --- */
.faq-section {
  padding: 2.2rem 0;
  background: #f7f3ed;
  width: 100%;
}

.faq-accordion-wrap {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 0px;
  overflow: hidden;
  width: 100%;
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 0.85rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: right;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-primary);
  cursor: pointer;
}

.faq-trigger i {
  color: var(--gold-primary);
  font-size: 0.82rem;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-trigger i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fcfaf7;
}

.faq-answer p {
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- 8. FOOTER --- */
footer {
  background: #1a1614;
  color: #9c8e82;
  padding: 1.6rem 0;
  text-align: center;
  font-size: 0.8rem;
  width: 100%;
}

footer p {
  margin-top: 0.3rem;
}

/* --- 9. STICKY MOBILE BAR & FLOATING WA --- */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-medium);
  padding: 0.4rem 0.75rem;
  z-index: 99;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  display: none;
  width: 100%;
  box-sizing: border-box;
}

.sticky-bar-inner {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.sticky-bar-product-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.sticky-bar-thumb {
  width: 40px;
  height: 40px;
  border-radius: 0px;
  object-fit: cover;
  border: 1px solid var(--border-medium);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  background: #ffffff;
}

.sticky-bar-price {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.sticky-bar-price .label {
  font-size: 0.6rem;
  color: var(--text-muted);
  font-weight: 700;
  white-space: nowrap;
}

.sticky-bar-price .val {
  font-family: var(--font-number);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold-dark);
  white-space: nowrap;
}

.sticky-bar-btn {
  background: var(--gold-gradient);
  color: #ffffff;
  padding: 0.6rem 1rem;
  border-radius: 0px;
  font-weight: 800;
  font-size: 0.86rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
}

.floating-wa-container {
  position: fixed;
  bottom: 60px;
  left: 12px;
  right: auto;
  z-index: 999;
  display: none;
  direction: ltr;
}

.floating-wa-btn {
  width: 42px;
  height: 42px;
  border-radius: 0px;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.floating-wa-btn i {
  font-size: 1.35rem;
  color: #ffffff !important;
}

/* --- 10. SUCCESS MODAL --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.success-modal {
  background: #ffffff;
  border-radius: 0px;
  padding: 1.6rem 1.2rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  border: 1.5px solid var(--gold-primary);
  box-sizing: border-box;
}

.success-icon-wrapper {
  width: 56px;
  height: 56px;
  background: var(--success-bg);
  color: var(--success-green);
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 0.75rem auto;
}

.success-order-id-badge {
  display: inline-block;
  background: #f4f8f3;
  color: var(--success-green);
  padding: 4px 14px;
  border-radius: 0px;
  font-weight: 800;
  font-size: 0.88rem;
  margin: 6px 0 10px 0;
  border: 1px dashed var(--success-green);
}

.success-modal-details {
  background: var(--bg-card-subtle);
  border-radius: 0px;
  padding: 10px 12px;
  text-align: right;
  margin-bottom: 12px;
  font-size: 0.82rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.success-modal-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 3px;
}

.modal-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0px;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  white-space: nowrap;
}

.modal-btn-wa {
  background: #25d366;
  color: #ffffff;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ingredients-grid-compact {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .sticky-bottom-bar {
    display: block;
  }
  .floating-wa-container {
    display: flex;
  }
  body {
    padding-bottom: 58px;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
  .shipping-pill {
    font-size: 0.74rem;
    padding: 0.2rem 0.5rem;
  }
  .price-current {
    font-size: 1.9rem;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .variant-grid-clean {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
  .variant-card-clean {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0.85rem;
  }
  .variant-card-clean .tag {
    right: 10px;
    transform: none;
    top: -7px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  #submit-order-btn, .cta-btn-primary {
    font-size: 0.88rem;
    padding: 0.85rem 0.4rem;
    white-space: nowrap;
  }
  .hero-quick-trust {
    font-size: 0.7rem;
  }
}
