:root {
  --bg: #fff8ef;
  --surface: #ffffff;
  --ink: #241512;
  --muted: #74645a;
  --primary: #aa0f14;
  --primary-dark: #7f080d;
  --accent: #d8a842;
  --accent-bright: #f2cd68;
  --accent-soft: #fff1cc;
  --border: #ecdcc9;
  --danger: #c83232;
  --shadow: 0 18px 45px rgba(96, 20, 16, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(170, 15, 20, 0.07), rgba(255, 248, 239, 0) 360px),
    var(--bg);
  color: var(--ink);
  line-height: 1.7;
  text-align: right;
}

button,
input,
textarea {
  font: inherit;
}

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

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

.announcement {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 10px 14px;
  background: linear-gradient(90deg, #7f080d, #b51219);
  color: #fff;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 8px 20px rgba(127, 8, 13, 0.28);
}

.section-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.brand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0 6px;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-star {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff0a8, #d39b27 54%, #8d5c0b);
  color: #fff9d8;
  font-size: 1.55rem;
  text-shadow: 0 2px 5px rgba(91, 48, 0, 0.45);
  box-shadow: 0 10px 22px rgba(158, 89, 13, 0.25);
  flex-shrink: 0;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 16px 4px;
  border-radius: 8px;
  background: linear-gradient(180deg, #c11820, var(--primary));
  color: #fff;
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: 2px;
  box-shadow: 0 6px 18px rgba(170, 15, 20, 0.3);
  line-height: 1;
}

.brand-tagline {
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 0.95rem;
}

.brand-mini-cta {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #2b1605;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(158, 89, 13, 0.18);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-whatsapp-btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: var(--radius);
  background: #25d366;
  color: #fff;
  font-weight: 900;
  font-size: 0.92rem;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand-whatsapp-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.28);
}

.brand-whatsapp-btn svg {
  width: 20px;
  height: 20px;
}

.hero {
  display: grid;
  gap: 24px;
  padding: 24px 0 34px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #3a1511;
  box-shadow: var(--shadow);
  min-height: 350px;
  border: 1px solid rgba(216, 168, 66, 0.52);
  cursor: grab;
  user-select: none;
}

.hero-media:active {
  cursor: grabbing;
}

.hero-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  pointer-events: none;
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--accent-bright), var(--accent));
  color: #2b2106;
  font-weight: 900;
  font-size: 0.86rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.gallery-thumbs {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
}

.thumb {
  flex: 1;
  min-height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 180ms ease;
}

.thumb.is-active {
  background: var(--accent-bright);
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--primary);
  font-weight: 900;
  font-size: 0.86rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 8vw, 3.9rem);
  line-height: 1.16;
  font-weight: 900;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  line-height: 1.25;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.06rem;
}

.hero-description,
.form-copy p,
.video-description {
  color: var(--muted);
  font-weight: 600;
}

.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.benefits li {
  position: relative;
  padding: 10px 38px 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.benefits li::before {
  content: "✓";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #2b1605;
  font-size: 0.8rem;
}

/* ── Features Cards ── */
.features-section {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 10px;
  margin: 18px 0;
  align-items: stretch; 
}

/* كارت الضمان (أول كارت) هياخد مساحة العمودين مع بعض */
.feature-card:first-child {
  grid-column: span 2;
}

/* تصغير حجم الخط للكارتين اللي تحت عشان شكلهم يبقى متناسق وميضغطش الكلام */
.feature-card:not(:first-child) .feature-title {
    font-size: 14px;
}
.feature-card:not(:first-child) .feature-desc {
    font-size: 11.5px;
}
/* تظبيط الهوامش والمسافات للكروت الصغيرة عشان الكلام ميبقاش مزنوق */
.feature-card:not(:first-child) {
    padding: 10px 5px; 
}

.feature-card:not(:first-child) .feature-title {
    font-size: 13.5px; 
    margin-bottom: 4px;
}

.feature-card:not(:first-child) .feature-desc {
    font-size: 11px;
    line-height: 1.4; 
}
.feature-card {
  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    width: 100%; 
    height: 100%; 
    box-sizing: border-box; 
    
    gap: 5px;
    padding: 12px 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 4px 14px rgba(96, 20, 16, 0.06);
    text-align: center;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(96, 20, 16, 0.1);
}

.feature-icon {
	display: grid;
    place-items: center;
    width: 34px; 
    height: 34px; 
    border-radius: 50%;
    background: linear-gradient(135deg, #fff8ee, #fff1cc);
    font-size: 1.1rem; 
    line-height: 1;
}

.feature-title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--ink);
}

.feature-desc {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.5;
}

.primary-cta,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 22px;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #c11820, var(--primary));
  color: #fff;
  font-weight: 900;
  font-size: 1.06rem;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(170, 15, 20, 0.28);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.primary-cta:hover,
.submit-button:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  box-shadow: 0 16px 26px rgba(170, 15, 20, 0.34);
}

.primary-cta.full {
  width: 100%;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
}

.trust-line span {
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
}

.deal-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  padding: 0;
  border-radius: var(--radius);
}

.deal-strip-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    #7f080d;
  color: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(216, 168, 66, 0.5);
  flex-wrap: wrap;
  justify-content: center;
}

.deal-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--accent-bright);
  color: #2b2106;
  font-weight: 900;
  font-size: 0.82rem;
  white-space: nowrap;
  animation: badge-pulse 2s ease-in-out infinite;
  box-shadow: 0 4px 12px rgba(216, 168, 66, 0.4);
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(216, 168, 66, 0.4); }
  50% { transform: scale(1.07); box-shadow: 0 6px 20px rgba(216, 168, 66, 0.65); }
}

.deal-main-text {
 text-align: center !important; 
    line-height: 1.8 !important; 
    margin: 10px 0;
}

.deal-main-text strong {
  color: var(--accent-bright);
  font-size: 1.06rem;
}

/* ── Discount offer — 3 states: empty | one | active ── */
.discount-offer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 14px;
  padding: 14px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

/* State: EMPTY (0 pieces) — warm yellow */
.discount-offer[data-discount-state="empty"] {
  background: var(--accent-soft);
  border-color: #e2c06c;
}

.discount-offer[data-discount-state="empty"] .offer-icon {
  background: #c8a030;
}

/* State: ONE (1 piece) — orange alert */
.discount-offer[data-discount-state="one"] {
  background: #fff3e8;
  border-color: #e07830;
  animation: offer-warn-pulse 1.8s ease-in-out infinite;
}

.discount-offer[data-discount-state="one"] .offer-icon {
  background: linear-gradient(145deg, #f5a94e, #d06020);
  animation: icon-bounce 0.8s ease-in-out infinite;
}

@keyframes offer-warn-pulse {
  0%, 100% {
    box-shadow: 0 6px 18px rgba(224, 120, 48, 0.2);
    border-color: #e07830;
  }
  50% {
    box-shadow: 0 10px 30px rgba(224, 120, 48, 0.45), 0 0 0 6px rgba(224, 120, 48, 0.1);
    border-color: #f09040;
  }
}

@keyframes icon-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* State: ACTIVE (2+ pieces) — green success */
.discount-offer[data-discount-state="active"] {
  background: #e8f8ed;
  border-color: #4caf50;
  animation: offer-success-glow 2.5s ease-in-out infinite;
}

.discount-offer[data-discount-state="active"] .offer-icon {
  background: linear-gradient(145deg, #6fcf87, #2e7d32);
  animation: icon-shake 0.6s ease-in-out infinite;
}

@keyframes offer-success-glow {
  0%, 100% {
    box-shadow: 0 6px 18px rgba(76, 175, 80, 0.18);
  }
  50% {
    box-shadow: 0 10px 28px rgba(76, 175, 80, 0.35), 0 0 0 8px rgba(76, 175, 80, 0.08);
  }
}

@keyframes icon-shake {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-6deg) scale(1.08); }
  75% { transform: rotate(6deg) scale(1.08); }
}

.offer-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: background 300ms ease;
}

.offer-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.offer-body strong {
  font-size: 0.95rem;
  line-height: 1.5;
  transition: all 300ms ease;
}

.discount-offer[data-discount-state="one"] .offer-body strong {
  color: #a05010;
}

.discount-offer[data-discount-state="active"] .offer-body strong {
  color: #1b5e20;
}

/* Progress track */
.progress-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  border-radius: 999px;
  width: 0%;
  transition: width 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Progress: empty state — 0% */
.discount-offer[data-discount-state="empty"] .progress-bar {
  background: #e2c06c;
  width: 0%;
}

/* Progress: one piece — 50% */
.discount-offer[data-discount-state="one"] .progress-bar {
  background: linear-gradient(90deg, #f5a94e, #e07830);
  width: 50%;
}

/* Progress: active — 100% + shimmer */
.discount-offer[data-discount-state="active"] .progress-bar {
  background: linear-gradient(90deg, #6fcf87, #2e7d32);
  width: 100%;
  animation: progress-shimmer 2s ease-in-out infinite;
}

@keyframes progress-shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

.discount-offer small,
.addon-title span,
.summary-note {
  display: block;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.82rem;
}

.discount-offer[data-discount-state="one"] small {
  color: #b05810;
  font-weight: 800;
}

.discount-offer[data-discount-state="active"] small {
  color: #2e7d32;
  font-weight: 800;
}

/* ── Stepper buttons — prevent zoom on touch ── */
.size-quantity-stepper button,
.compact-stepper button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ── Size options list in summary (multi-line) ── */
#summarySize {
  white-space: pre-line;
  font-size: 0.92rem;
  line-height: 1.6;
}

.checkout-grid,
.form-section {
  display: grid;
  gap: 18px;
  padding: 26px 0 100px;
  scroll-margin-top: 130px;
}

.config-panel,
.summary-card,
.order-form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.config-panel,
.summary-card {
  padding: 18px;
}

.section-heading.centered {
  text-align: center;
}

.option-group {
  margin-top: 22px;
}

.selection-area {
  display: grid;
  gap: 12px;
}

.size-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.size-option {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  min-height: 112px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  user-select: none;
  transition: border 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.size-option:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(170, 15, 20, 0.12);
}

.size-option.is-selected {
  border: 2px solid var(--primary);
  background: #fff5f5;
  box-shadow: 0 0 0 4px rgba(170, 15, 20, 0.18), 0 10px 22px rgba(170, 15, 20, 0.14);
  transform: translateY(-2px);
}

.size-option strong {
  font-size: 1.08rem;
  line-height: 1.35;
}

.size-option span {
  color: var(--primary);
  font-weight: 900;
  font-size: 1.06rem;
}

.size-option-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.size-option-head span {
  white-space: nowrap;
}

.size-quantity-stepper {
  grid-template-columns: 54px 1fr 54px;
  gap: 10px;
}

.size-quantity-stepper button {
  width: 54px;
  height: 52px;
  font-size: 1.65rem;
}

.size-quantity-stepper output {
  height: 52px;
  font-size: 1.18rem;
}

.extra-clips-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 94px;
  gap: 8px;
  align-items: center;
  padding: 6px 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff6df;
}

.compact-stepper {
  grid-template-columns: 26px 1fr 26px;
  gap: 4px;
}

.compact-stepper button {
  width: 26px;
  height: 28px;
  font-size: 1rem;
}

.compact-stepper output {
  height: 28px;
  font-size: 0.9rem;
}

.stepper {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  gap: 10px;
  align-items: center;
}

.stepper button {
  width: 56px;
  height: 50px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #f7fbf7;
  color: var(--primary-dark);
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer;
}

.stepper output {
  display: grid;
  place-items: center;
  height: 50px;
  border-radius: var(--radius);
  background: #fff6df;
  font-weight: 900;
}

.stepper input {
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: var(--radius);
  background: #fff6df;
  color: var(--ink);
  text-align: center;
  font-weight: 900;
  outline: none;
}

.stepper input:focus {
  box-shadow: 0 0 0 4px rgba(170, 15, 20, 0.1);
}

.stepper.size-quantity-stepper {
  grid-template-columns: 54px 1fr 54px;
  gap: 10px;
}

.stepper.size-quantity-stepper button {
  width: 54px;
  height: 52px;
  font-size: 1.65rem;
}

.stepper.size-quantity-stepper output {
  height: 52px;
  font-size: 1.18rem;
}

.stepper.compact-stepper {
  grid-template-columns: 26px 1fr 26px;
  gap: 4px;
}

.stepper.compact-stepper button {
  width: 26px;
  height: 28px;
  font-size: 1rem;
}

.stepper.compact-stepper output {
  height: 28px;
  font-size: 0.9rem;
}

.summary-list {
  display: grid;
  gap: 11px;
  margin: 0 0 16px;
}

.summary-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.summary-list dt {
  color: var(--muted);
  font-weight: 800;
}

.summary-list dd {
  margin: 0;
  font-weight: 900;
  text-align: left;
}

.summary-list .total-row {
  padding: 14px 0 0;
  border-bottom: 0;
}

.total-row dt,
.total-row dd {
  color: var(--primary-dark);
  font-size: 1.15rem;
}

.summary-note {
  margin: -4px 0 14px;
}

.summary-note span {
  text-decoration: line-through;
}

.video-section,
.faq {
  padding: 36px 0;
}

.video-frame {
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 220px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(56, 9, 11, 0.18), rgba(56, 9, 11, 0.78)),
    url("https://www.youtube.com/watch?v=v_GOK6WL9kg") center/cover;
  box-shadow: var(--shadow);
  color: #fff;
}

.video-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #170607;
  object-fit: cover;
}

.video-placeholder {
  display: grid;
  place-items: center;
  gap: 10px;
  width: 100%;
  min-height: 220px;
  padding: 26px;
  text-align: center;
  font-weight: 900;
}

.play-mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--accent);
  color: #231a04;
  font-size: 2rem;
}

.video-description {
  max-width: 760px;
  margin: 14px auto 0;
  text-align: center;
}

.form-copy {
  align-self: center;
}

.order-form {
  padding: 18px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 900;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fbfdfb;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  resize: vertical;
  transition: border 180ms ease, box-shadow 180ms ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(170, 15, 20, 0.1);
}

.field.has-error input,
.field.has-error textarea {
  border-color: var(--danger);
}

.error-message {
  min-height: 22px;
  color: var(--danger);
  font-weight: 800;
}

.submit-button {
  width: 100%;
  margin-top: 4px;
}

.submit-button.is-loading {
  opacity: 0.78;
  cursor: wait;
}

.success-message {
  margin: 14px 0 0;
  padding: 12px;
  border-radius: var(--radius);
  background: #fff5d9;
  color: var(--primary-dark);
  font-weight: 900;
}

.form-error-message {
  margin: 14px 0 0;
  padding: 12px;
  border-radius: var(--radius);
  background: #fff0f0;
  color: var(--danger);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px 16px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.sticky-mobile-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 25;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 248, 239, 0.94);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.sticky-mobile-cta .primary-cta {
  min-width: 132px;
  min-height: 50px;
  padding-inline: 14px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.sticky-total {
  display: grid;
  gap: 0;
  min-width: 0;
}

.sticky-total span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
}

.sticky-total strong {
  color: var(--primary-dark);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.25;
}

.sticky-total small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: line-through;
}

main {
  padding-bottom: 92px;
}

@media (min-width: 560px) {
  .brand-mini-cta,
  .brand-whatsapp-btn {
    display: inline-flex;
  }

  .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .selection-area {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .size-options {
    grid-template-columns: 1fr;
  }
}

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

@media (min-width: 860px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    padding: 42px 0 46px;
  }

  .checkout-grid,
  .form-section {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 24px;
  }

  .selection-area {
    grid-template-columns: 1fr;
  }

  .summary-card {
    position: sticky;
    top: 68px;
    align-self: start;
  }

  .sticky-mobile-cta {
    right: 50%;
    left: auto;
    width: min(720px, calc(100% - 28px));
    transform: translateX(50%);
    display: grid;
  }

  main {
    padding-bottom: 92px;
  }
}
@media (max-width: 768px) {
    .features-section {
        grid-template-columns: 1fr 1fr !important; 
    }
    .feature-card:first-child {
        grid-column: span 2 !important; 
    }
}
.big-discount {
    color: #fcd55c !important; 
    font-size: 1.6em !important; 
    font-weight: 900 !important;
    display: inline-block !important; 
    margin: 0 4px;
    direction: ltr;
    vertical-align: middle;
    animation: pulseAndGlow 1.5s infinite ease-in-out !important; 
}

/* محرك الأنيميشن (النبض واللمعان) */
@keyframes pulseAndGlow {
    0% {
        transform: scale(1);
        text-shadow: 0 0 5px rgba(252, 213, 92, 0.5);
    }
    50% {
        transform: scale(1.15);
        text-shadow: 0 0 10px #fcd55c, 0 0 20px #fcd55c, 0 0 30px #ffffff;
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 5px rgba(252, 213, 92, 0.5);
    }
} /* تم قفل قوس الأنيميشن اللي كان ناقص */

/* --- ضبط حجم مربع الكليبسات الإضافية ليكون متناسق ومريح --- */
.extra-clips-card {
    padding: 16px 14px !important; 
    min-height: 85px !important; 
    margin-top: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border: 1px solid #e5dbcc !important; 
    border-radius: 8px !important;
    background-color: #fff !important; 
}

.extra-clips-copy {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.extra-clips-copy strong {
    font-size: 16px !important; 
    font-weight: 800 !important;
    color: #000 !important;
}

.extra-clips-copy span {
    font-size: 13px !important;
    color: #8b0000 !important; 
    font-weight: 800 !important;
}

.extra-clips-card .compact-stepper {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    background-color: #fdf6e3 !important; 
    padding: 6px !important;
    border-radius: 8px !important;
}

.extra-clips-card .compact-stepper button {
    width: 36px !important; 
    height: 36px !important;
    font-size: 22px !important;
    font-weight: bold !important;
    background: #fff !important;
    border: 1px solid #e5dbcc !important;
    border-radius: 6px !important;
    color: #8b0000 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.extra-clips-card .compact-stepper output {
    font-size: 17px !important;
    font-weight: bold !important;
    min-width: 30px !important;
    text-align: center !important;
    color: #000 !important;
}
