/* ==========================================
   style.css — Vendox DZ
   Premium Arabic RTL Skincare Landing Page
   ========================================== */

/* --- CSS Variables --- */
:root {
  --pink-primary: #e91e8c;
  --pink-light: #f472b6;
  --pink-pale: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --pink-700: #be185d;
  --rose-400: #fb7185;
  --gray-100: #f9fafb;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(233,30,140,.15);
  --shadow-lg: 0 8px 32px rgba(233,30,140,.2);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Cairo', 'Segoe UI', sans-serif;
  direction: rtl;
  background: var(--white);
  color: var(--gray-800);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.3; }
h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

/* --- Container --- */
.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

/* --- Sections --- */
.section { padding: 4rem 0; }
.section-alt { background: var(--pink-pale); }

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header h2 { color: var(--pink-primary); }
.section-header p { color: var(--gray-600); margin-top: .5rem; font-size: 1.05rem; }

/* ============ HEADER ============ */
#site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: .7rem 0;
  border-bottom: 2px solid var(--pink-100);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: var(--pink-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-icon svg { width: 24px; height: 24px; fill: white; }

.brand-text { display: flex; flex-direction: column; }
.brand-name { font-size: 1.2rem; font-weight: 800; color: var(--pink-primary); line-height: 1; }
.brand-tagline { font-size: .72rem; color: var(--gray-600); }

.header-cta {
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-700));
  color: white;
  padding: .55rem 1.3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  white-space: nowrap;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ============ HERO ============ */
#hero {
  background: linear-gradient(160deg, #fff0f8 0%, #fce7f3 50%, #fbcfe8 100%);
  overflow: hidden;
  position: relative;
  padding: 3rem 0 2rem;
}

.hero-bg-blob {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(233,30,140,.08) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px; left: -200px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--pink-primary);
  color: white;
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-title { color: var(--gray-800); margin-bottom: .8rem; }
.hero-title span { color: var(--pink-primary); }

.hero-sub { color: var(--gray-600); font-size: 1.05rem; margin-bottom: 1.5rem; }

.hero-features {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: white;
  padding: .5rem .9rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  font-size: .85rem;
  font-weight: 600;
  color: var(--pink-700);
}
.hero-feature svg { width: 18px; height: 18px; flex-shrink: 0; }

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-700));
  color: white;
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(233,30,140,.35); }

.btn-secondary {
  background: white;
  color: var(--pink-primary);
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--pink-200);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-secondary:hover { border-color: var(--pink-primary); transform: translateY(-2px); }

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.trust-bar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--pink-200);
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
}
.trust-item svg { width: 20px; height: 20px; color: var(--pink-primary); }

/* ============ PRODUCTS ============ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid transparent;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-200);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-card-body {
  padding: 1.2rem;
}

.product-tag {
  display: inline-block;
  background: var(--pink-100);
  color: var(--pink-700);
  padding: .2rem .7rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.product-card-name { font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; color: var(--gray-800); }
.product-card-desc { font-size: .85rem; color: var(--gray-600); margin-bottom: .8rem; }

.product-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--pink-primary);
}
.product-price span { font-size: .85rem; font-weight: 500; color: var(--gray-600); }

.product-benefits {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: .8rem;
}
.benefit-chip {
  display: flex;
  align-items: center;
  gap: .3rem;
  background: var(--pink-pale);
  padding: .3rem .7rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--pink-700);
}

/* ============ BENEFITS ============ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.2rem;
}

.benefit-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--pink-100);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--pink-200); }

.benefit-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.benefit-icon svg { width: 28px; height: 28px; color: var(--pink-primary); }

.benefit-card h4 { font-size: .95rem; color: var(--gray-800); margin-bottom: .3rem; }
.benefit-card p { font-size: .82rem; color: var(--gray-600); }

/* ============ INGREDIENTS ============ */
.ingredients-tabs {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: .6rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  border: 2px solid var(--pink-200);
  color: var(--gray-600);
  transition: var(--transition);
  background: white;
}
.tab-btn.active {
  background: var(--pink-primary);
  border-color: var(--pink-primary);
  color: white;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.ingredients-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.ingredient-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  background: white;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pink-100);
}
.ingredient-dot {
  width: 12px; height: 12px;
  background: var(--pink-primary);
  border-radius: 50%;
  margin-top: .4rem;
  flex-shrink: 0;
}
.ingredient-item strong { display: block; font-size: .9rem; color: var(--gray-800); margin-bottom: .2rem; }
.ingredient-item span { font-size: .8rem; color: var(--gray-600); }

/* ============ BEFORE & AFTER ============ */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.ba-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.ba-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.ba-card-body {
  padding: 1.2rem;
}
.ba-card-body h4 { font-size: 1rem; font-weight: 700; color: var(--gray-800); margin-bottom: .3rem; }
.ba-card-body p { font-size: .85rem; color: var(--gray-600); }

.ba-result-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #dcfce7;
  color: #15803d;
  padding: .3rem .8rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  margin-top: .6rem;
}

/* ============ HOW TO USE ============ */
.howto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.howto-steps { display: flex; flex-direction: column; gap: 1rem; }

.howto-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: white;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pink-100);
  transition: var(--transition);
}
.howto-step:hover { border-color: var(--pink-300, #f9a8d4); box-shadow: var(--shadow-md); }

.step-num {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-700));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.step-text { flex: 1; }
.step-text h4 { font-size: .95rem; color: var(--gray-800); margin-bottom: .2rem; }
.step-text p { font-size: .83rem; color: var(--gray-600); }

.howto-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.howto-tips {
  background: linear-gradient(135deg, var(--pink-100), var(--pink-pale));
  border-radius: var(--radius);
  padding: 1.2rem;
  margin-top: 1.5rem;
  border: 1px solid var(--pink-200);
}
.howto-tips h4 { color: var(--pink-primary); font-size: 1rem; margin-bottom: .6rem; }
.howto-tips ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.howto-tips li {
  font-size: .85rem;
  color: var(--gray-700);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.howto-tips li::before { content: "✓"; color: var(--pink-primary); font-weight: 700; flex-shrink: 0; }

/* ============ REVIEWS ============ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}

.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pink-100);
  transition: var(--transition);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: .8rem;
  left: 1rem;
  font-size: 3rem;
  color: var(--pink-200);
  line-height: 1;
  font-family: serif;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.review-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: .5rem;
}

.review-text {
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: .8rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.reviewer-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-200), var(--pink-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: .9rem;
}
.reviewer-info strong { display: block; font-size: .9rem; color: var(--gray-800); }
.reviewer-info span { font-size: .78rem; color: var(--gray-600); }

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: #dcfce7;
  color: #15803d;
  padding: .15rem .5rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  margin-top: .3rem;
}

/* ============ FAQ ============ */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: .8rem; }

.faq-item {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pink-100);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: right;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  font-size: .95rem;
  color: var(--gray-800);
  transition: var(--transition);
  background: none;
  font-family: inherit;
  cursor: pointer;
}
.faq-question:hover { color: var(--pink-primary); }
.faq-question.open { color: var(--pink-primary); }

.faq-icon {
  width: 24px; height: 24px;
  background: var(--pink-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--pink-primary);
  font-size: 1rem;
  font-weight: 700;
}
.faq-question.open .faq-icon { background: var(--pink-primary); color: white; transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer.open { max-height: 300px; }

.faq-answer-inner {
  padding: 0 1.3rem 1.2rem;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============ ORDER FORM ============ */
#order {
  background: linear-gradient(160deg, var(--pink-pale) 0%, var(--pink-100) 100%);
  padding: 4rem 0;
}

.order-form-wrapper {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(233,30,140,.15);
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
}

.order-form-header {
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-700));
  color: white;
  padding: 1.5rem 2rem;
  text-align: center;
}
.order-form-header h2 { font-size: 1.4rem; }
.order-form-header p { font-size: .9rem; opacity: .9; margin-top: .3rem; }

.order-form-body { padding: 1.8rem 2rem; }

/* Product Selection */
.product-selectors { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.8rem; }

.product-selector {
  border: 2px solid var(--pink-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.product-selector.selected { border-color: var(--pink-primary); }

.product-selector-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  background: var(--pink-pale);
  transition: var(--transition);
}
.product-selector-header:hover { background: var(--pink-100); }

.custom-checkbox {
  width: 22px; height: 22px;
  border: 2px solid var(--pink-300, #f9a8d4);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  flex-shrink: 0;
  transition: var(--transition);
}
.product-selector.selected .custom-checkbox {
  background: var(--pink-primary);
  border-color: var(--pink-primary);
}
.custom-checkbox svg { width: 14px; height: 14px; fill: white; opacity: 0; transition: var(--transition); }
.product-selector.selected .custom-checkbox svg { opacity: 1; }

.ps-img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }

.ps-info { flex: 1; }
.ps-name { font-weight: 700; font-size: .95rem; color: var(--gray-800); }
.ps-price { font-size: 1.05rem; font-weight: 800; color: var(--pink-primary); }

.product-selector-qty {
  display: none;
  align-items: center;
  gap: .8rem;
  padding: .8rem 1.2rem;
  border-top: 1px solid var(--pink-100);
  background: white;
}
.product-selector.selected .product-selector-qty { display: flex; }

.qty-label { font-size: .85rem; font-weight: 600; color: var(--gray-700); flex: 1; }

.qty-controls {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.qty-btn {
  width: 32px; height: 32px;
  background: var(--pink-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pink-primary);
  transition: var(--transition);
  line-height: 1;
}
.qty-btn:hover { background: var(--pink-primary); color: white; }

.qty-num {
  font-size: 1.1rem;
  font-weight: 800;
  min-width: 28px;
  text-align: center;
  color: var(--gray-800);
}

.subtotal-line {
  font-size: .85rem;
  color: var(--gray-600);
  display: flex;
  gap: .3rem;
  align-items: center;
}
.subtotal-line strong { color: var(--pink-primary); }

/* Customer Fields */
.fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.field-full { grid-column: 1 / -1; }

.field-group { display: flex; flex-direction: column; gap: .4rem; }
.field-group label { font-size: .88rem; font-weight: 600; color: var(--gray-700); }

.field-group input,
.field-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--pink-100);
  border-radius: 10px;
  font-family: inherit;
  font-size: .92rem;
  color: var(--gray-800);
  background: white;
  transition: var(--transition);
  outline: none;
  direction: rtl;
}
.field-group input:focus,
.field-group select:focus {
  border-color: var(--pink-primary);
  box-shadow: 0 0 0 3px rgba(233,30,140,.1);
}

.delivery-type {
  display: flex;
  gap: .8rem;
  margin-bottom: 1.2rem;
}

.delivery-option {
  flex: 1;
  border: 2px solid var(--pink-100);
  border-radius: 10px;
  padding: .7rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .6rem;
  transition: var(--transition);
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-700);
}
.delivery-option.active { border-color: var(--pink-primary); background: var(--pink-pale); color: var(--pink-primary); }
.delivery-option svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Order Summary */
.order-summary {
  background: linear-gradient(135deg, var(--pink-pale), var(--pink-100));
  border-radius: var(--radius);
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--pink-200);
}

.summary-title { font-weight: 700; font-size: 1rem; color: var(--gray-800); margin-bottom: .8rem; }

.summary-rows { display: flex; flex-direction: column; gap: .4rem; }

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
  color: var(--gray-700);
  padding: .3rem 0;
}
.summary-row.total {
  border-top: 2px dashed var(--pink-200);
  margin-top: .4rem;
  padding-top: .7rem;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gray-800);
}
.summary-row.total .total-amount { color: var(--pink-primary); font-size: 1.3rem; }

.no-product-msg {
  text-align: center;
  color: var(--gray-600);
  font-size: .9rem;
  padding: .5rem;
}

/* Submit button */
.submit-btn {
  width: 100%;
  padding: 1.1rem;
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-700));
  color: white;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(233,30,140,.4); }
.submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

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

.form-note {
  text-align: center;
  font-size: .8rem;
  color: var(--gray-600);
  margin-top: .8rem;
}

/* ============ SUCCESS MESSAGE ============ */
.order-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}

.order-success h3 { color: #15803d; font-size: 1.4rem; margin-bottom: .5rem; }
.order-success p { color: var(--gray-600); font-size: .95rem; }

.new-order-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--pink-primary);
  color: white;
  padding: .8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  margin-top: 1.5rem;
  transition: var(--transition);
}
.new-order-btn:hover { transform: translateY(-2px); }

/* ============ STICKY ORDER BUTTON ============ */
#sticky-order {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
#sticky-order.visible { opacity: 1; pointer-events: auto; }

.sticky-btn {
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-700));
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  box-shadow: 0 8px 24px rgba(233,30,140,.45);
  animation: pulse-shadow 2s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes pulse-shadow {
  0%, 100% { box-shadow: 0 8px 24px rgba(233,30,140,.45); }
  50% { box-shadow: 0 8px 36px rgba(233,30,140,.65); }
}

/* ============ FOOTER ============ */
#footer {
  background: var(--gray-800);
  color: #d1d5db;
  padding: 2.5rem 0;
  text-align: center;
}

.footer-brand { color: var(--pink-light); font-size: 1.2rem; font-weight: 800; margin-bottom: .5rem; }
.footer-tagline { font-size: .85rem; margin-bottom: 1.2rem; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.footer-links a { font-size: .85rem; color: #9ca3af; transition: var(--transition); }
.footer-links a:hover { color: var(--pink-light); }

.footer-bottom {
  font-size: .78rem;
  color: #6b7280;
  border-top: 1px solid #374151;
  padding-top: 1rem;
  margin-top: .5rem;
}

/* ============ ANIMATIONS ============ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ============ LOADING OVERLAY ============ */
.loading-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.85);
  z-index: 999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
.loading-overlay.active { display: flex; }

.spinner {
  width: 50px; height: 50px;
  border: 4px solid var(--pink-100);
  border-top-color: var(--pink-primary);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-overlay p { color: var(--pink-primary); font-weight: 700; font-size: 1rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .howto-grid { grid-template-columns: 1fr; }
  .fields-grid { grid-template-columns: 1fr; }
  .order-form-body { padding: 1.2rem; }
  .order-form-header { padding: 1.2rem; }
  .delivery-type { flex-direction: column; }
  .trust-bar { gap: .8rem; }
}

@media (max-width: 480px) {
  .section { padding: 2.5rem 0; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.4rem; }
  .hero-features { flex-direction: column; align-items: flex-start; }
  .hero-cta-group { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
}
