/* ============================================================
   ZORINAX — Premium Arabic E-Commerce Landing Page
   Color Palette: Cream/Beige/Earthy + Deep Charcoal + Gold
   ============================================================ */

/* ——— RESET & BASE ——— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #F7F3EC;
  --cream-dark: #EDE6D6;
  --beige:      #D9CEBC;
  --sand:       #C4B49A;
  --brown:      #8B6E50;
  --brown-dark: #5C4433;
  --charcoal:   #2C2416;
  --charcoal-2: #3D3022;
  --gold:       #B8922A;
  --gold-light: #D4A83A;
  --gold-pale:  #F0DFA0;
  --white:      #FFFFFF;
  --text-main:  #2C2416;
  --text-muted: #7A6850;
  --shadow-sm:  0 2px 12px rgba(44,36,22,.08);
  --shadow-md:  0 8px 32px rgba(44,36,22,.14);
  --shadow-lg:  0 20px 60px rgba(44,36,22,.18);
  --radius:     16px;
  --radius-lg:  24px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Tajawal', sans-serif;
  background: var(--cream);
  color: var(--text-main);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ——— SCROLLBAR ——— */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ——— CONTAINER ——— */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ——— BUTTONS ——— */
.btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--charcoal);
  font-family: 'Tajawal', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  padding: .9rem 2.2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(184,146,42,.4);
  letter-spacing: .02em;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(184,146,42,.5);
  background: linear-gradient(135deg, #EABD50, var(--gold-light));
}
.btn-primary svg { transition: transform .3s; }
.btn-primary:hover svg { transform: translateX(-4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent;
  color: var(--cream);
  font-family: 'Tajawal', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(247,243,236,.4);
  cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover {
  background: rgba(247,243,236,.1);
  border-color: var(--cream);
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
  background: transparent;
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.navbar.scrolled {
  background: rgba(44,36,22,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(44,36,22,.3);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 1.1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-en {
  font-size: 1.55rem; font-weight: 900;
  color: var(--gold-light);
  letter-spacing: .1em;
}
.logo-ar { font-size: .72rem; color: rgba(247,243,236,.7); font-weight: 400; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  color: rgba(247,243,236,.85); font-size: .95rem; font-weight: 500;
  transition: color .25s;
}
.nav-link:hover { color: var(--gold-light); }

.btn-nav-cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--charcoal);
  font-weight: 800;
  font-size: .9rem;
  padding: .6rem 1.5rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 3px 14px rgba(184,146,42,.4);
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,146,42,.5); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; align-items: center; gap: 1rem;
  padding: 1.5rem;
  background: rgba(44,36,22,.97);
  backdrop-filter: blur(16px);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  color: var(--cream); font-size: 1.1rem; font-weight: 500;
  padding: .5rem; width: 100%; text-align: center;
  border-bottom: 1px solid rgba(247,243,236,.1);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--charcoal) 0%, var(--brown-dark) 60%, var(--charcoal-2) 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 1.5rem 4rem;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  gap: 2rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(184,146,42,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(92,68,51,.3) 0%, transparent 50%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 1.6rem;
  max-width: 560px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(184,146,42,.15);
  border: 1px solid rgba(184,146,42,.3);
  color: var(--gold-light);
  font-size: .85rem; font-weight: 600;
  padding: .45rem 1rem;
  border-radius: 50px;
  width: fit-content;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero-title {
  font-family: 'Amiri', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}
.hero-gold { color: var(--gold-light); }
.hero-subtitle {
  font-size: 1.05rem; font-weight: 400;
  color: rgba(247,243,236,.75);
  line-height: 1.8;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(247,243,236,.1);
}
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-item strong { font-size: 1.6rem; font-weight: 800; color: var(--gold-light); }
.stat-item span { font-size: .78rem; color: rgba(247,243,236,.6); font-weight: 400; }
.stat-sep { width: 1px; height: 40px; background: rgba(247,243,236,.15); }

/* Hero visual */
.hero-visual {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.hero-glow-ring {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,146,42,.2) 0%, transparent 70%);
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.08); opacity: 1; }
}
.hero-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-product-img {
  width: 100%; max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
  object-fit: cover;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip {
  background: linear-gradient(90deg, var(--charcoal) 0%, var(--brown-dark) 50%, var(--charcoal) 100%);
  overflow: hidden;
  padding: .9rem 0;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex; gap: 2.5rem; align-items: center;
  animation: marquee 28s linear infinite;
  font-size: .9rem; font-weight: 600;
  color: rgba(247,243,236,.85);
}
.marquee-inner:hover { animation-play-state: paused; }
.mdot { color: var(--gold); font-size: .7rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.sec-header { text-align: center; margin-bottom: 3.5rem; }
.sec-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--brown-dark);
  font-size: .8rem; font-weight: 700;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.light-tag { background: rgba(247,243,236,.15); color: rgba(247,243,236,.85); }
.sec-title {
  font-family: 'Amiri', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: .8rem;
}
.sec-title--light { color: var(--cream); }
.sec-desc { font-size: 1rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.sec-desc--light { color: rgba(247,243,236,.65); }

.gold { color: var(--gold); }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-sec {
  padding: 6rem 0;
  background: var(--cream);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex; flex-direction: column;
  position: relative;
  border: 1px solid rgba(196,180,154,.3);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-card--featured {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 40px rgba(184,146,42,.2);
}
.featured-ribbon {
  position: absolute; top: 1rem; right: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--charcoal);
  font-size: .75rem; font-weight: 800;
  padding: .4rem 1rem .4rem 1.4rem;
  border-radius: 50px 0 0 50px;
  z-index: 2;
  box-shadow: 0 3px 12px rgba(184,146,42,.4);
}
.product-img-box {
  position: relative;
  background: var(--cream-dark);
  height: 240px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.prod-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .prod-img { transform: scale(1.05); }
.prod-label {
  position: absolute; bottom: .8rem; right: .8rem;
  background: rgba(44,36,22,.75);
  color: var(--cream);
  font-size: .72rem; font-weight: 700;
  padding: .3rem .8rem;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}
.prod-label--gold { background: rgba(184,146,42,.85); color: var(--charcoal); }
.prod-label--dark { background: rgba(44,36,22,.9); }

.product-body {
  padding: 1.6rem;
  display: flex; flex-direction: column; gap: .8rem;
  flex: 1;
}
.prod-name { font-family: 'Amiri', serif; font-size: 1.4rem; font-weight: 700; color: var(--charcoal); }
.prod-tagline { font-size: .88rem; color: var(--text-muted); }
.prod-features { display: flex; flex-direction: column; gap: .4rem; }
.prod-features li { font-size: .88rem; color: var(--brown-dark); font-weight: 500; }

.prod-price-row {
  display: flex; align-items: center; gap: .8rem;
  margin-top: auto; padding-top: .8rem;
  border-top: 1px solid var(--cream-dark);
}
.prod-price {
  font-size: 1.7rem; font-weight: 800;
  color: var(--charcoal);
}
.prod-price small { font-size: .8rem; font-weight: 500; color: var(--text-muted); }
.save-badge {
  background: #e8f5e9; color: #2e7d32;
  font-size: .72rem; font-weight: 700;
  padding: .25rem .7rem; border-radius: 50px;
}
.btn-order {
  display: block; width: 100%;
  text-align: center;
  background: var(--charcoal);
  color: var(--cream);
  font-family: 'Tajawal', sans-serif;
  font-size: .95rem; font-weight: 700;
  padding: .85rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  margin-top: .5rem;
}
.btn-order:hover {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
  transform: translateY(-2px);
}
.btn-order--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--charcoal);
  box-shadow: 0 4px 16px rgba(184,146,42,.35);
}
.btn-order--gold:hover {
  background: linear-gradient(135deg, #EABD50, var(--gold-light));
  border-color: transparent;
  color: var(--charcoal);
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-sec {
  padding: 6rem 0;
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
}
.benefits-bg-layer {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 90%, rgba(92,68,51,.4) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 10%, rgba(184,146,42,.08) 0%, transparent 50%);
  pointer-events: none;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative; z-index: 1;
}
.benefit-card {
  background: rgba(247,243,236,.06);
  border: 1px solid rgba(247,243,236,.1);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.benefit-card:hover {
  background: rgba(247,243,236,.1);
  border-color: rgba(184,146,42,.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
.ben-icon { font-size: 2.2rem; margin-bottom: .8rem; }
.benefit-card h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--cream); margin-bottom: .5rem;
}
.benefit-card p { font-size: .88rem; color: rgba(247,243,236,.65); line-height: 1.7; }

/* ============================================================
   HOW TO USE
   ============================================================ */
.howto-sec {
  padding: 6rem 0;
  background: var(--cream-dark);
}
.howto-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.howto-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  max-width: 220px;
  gap: 1rem;
}
.step-circle {
  position: relative;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--white), var(--cream));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(92,68,51,.15);
  border: 3px solid var(--beige);
  transition: var(--transition);
}
.howto-step:hover .step-circle {
  border-color: var(--gold);
  box-shadow: 0 12px 36px rgba(184,146,42,.25);
  transform: scale(1.06);
}
.step-emoji { font-size: 2.6rem; }
.step-num-badge {
  position: absolute;
  top: -6px; left: -6px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  font-size: .85rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Amiri', serif;
}
.step-title {
  font-family: 'Amiri', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--charcoal);
}
.step-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }
.howto-arrow {
  font-size: 2rem;
  color: var(--gold);
  margin-top: 30px;
  opacity: .7;
  flex-shrink: 0;
}
.howto-tip {
  margin-top: 3rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(184,146,42,.12), rgba(184,146,42,.06));
  border: 1px solid rgba(184,146,42,.25);
  border-radius: var(--radius);
  padding: 1rem 2rem;
  font-size: .95rem;
  color: var(--brown-dark);
  font-weight: 500;
  max-width: 680px;
  margin-inline: auto;
}
.tip-icon { font-size: 1.2rem; margin-left: .5rem; }

/* ============================================================
   SHOWCASE
   ============================================================ */
.showcase-sec {
  padding: 6rem 0;
  background: var(--white);
}
.showcase-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.showcase-text-col { display: flex; flex-direction: column; gap: 1.5rem; }
.showcase-heading {
  font-family: 'Amiri', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
}
.showcase-para { font-size: 1rem; color: var(--text-muted); line-height: 1.9; }
.showcase-list { display: flex; flex-direction: column; gap: .7rem; }
.showcase-list li {
  display: flex; align-items: center; gap: .8rem;
  font-size: .95rem; color: var(--text-main); font-weight: 500;
}
.chk {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold-pale);
  color: var(--brown-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800; flex-shrink: 0;
}
.showcase-img-col {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.showcase-img-bg {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: var(--cream-dark);
  z-index: 0;
}
.showcase-main-img {
  position: relative; z-index: 1;
  width: 100%; max-width: 460px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform .6s ease;
}
.showcase-main-img:hover { transform: scale(1.03) rotate(-1deg); }

/* ============================================================
   ORDER
   ============================================================ */
.order-sec {
  padding: 6rem 0;
  background: var(--cream);
}
.order-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.order-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(196,180,154,.3);
}
.order-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-size: .88rem; font-weight: 700;
  color: var(--charcoal);
}
.req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Tajawal', sans-serif;
  font-size: .95rem;
  padding: .85rem 1rem;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--text-main);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
  direction: rtl;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,42,.12);
}
.form-group textarea { resize: vertical; }
.btn-submit {
  display: block; width: 100%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--charcoal);
  font-family: 'Tajawal', sans-serif;
  font-size: 1.1rem; font-weight: 800;
  padding: 1rem;
  border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(184,146,42,.4);
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(184,146,42,.5);
}
.form-disclaimer {
  text-align: center; font-size: .8rem;
  color: var(--text-muted);
}

/* Order success state */
.order-success {
  display: none; flex-direction: column; align-items: center;
  text-align: center; gap: 1rem;
  padding: 2rem;
}
.order-success.visible { display: flex; }
.success-anim { font-size: 3.5rem; animation: pop .4s ease; }
@keyframes pop {
  0% { transform: scale(0); }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.order-success h3 { font-size: 1.5rem; font-weight: 800; color: var(--charcoal); }
.order-success p { color: var(--text-muted); }

/* Price cards column */
.price-cards {
  display: flex; flex-direction: column; gap: 1rem;
  position: sticky; top: 100px;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem;
  border: 1.5px solid var(--beige);
  transition: var(--transition);
  position: relative;
}
.price-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(-4px);
}
.price-card--gold {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212,168,58,.06), rgba(212,168,58,.02));
}
.pc-badge {
  position: absolute; top: -.7rem; right: 1rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: .7rem; font-weight: 800;
  padding: .2rem .7rem; border-radius: 50px;
}
.price-card h4 { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: .4rem; }
.pc-price { font-size: 1.6rem; font-weight: 800; color: var(--gold); margin-bottom: .6rem; }
.pc-price span { font-size: .8rem; font-weight: 500; color: var(--text-muted); }
.price-card ul { display: flex; flex-direction: column; gap: .3rem; }
.price-card ul li { font-size: .82rem; color: var(--text-muted); }

.delivery-note {
  display: flex; align-items: center; gap: .8rem;
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid var(--beige);
}
.del-icon { font-size: 1.8rem; }
.delivery-note strong { display: block; font-size: .9rem; color: var(--charcoal); }
.delivery-note small { font-size: .78rem; color: var(--text-muted); }

/* ============================================================
   TRUST
   ============================================================ */
.trust-sec {
  padding: 5rem 0;
  background: var(--cream-dark);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 2.5rem;
}
.trust-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(196,180,154,.3);
  transition: var(--transition);
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale);
}
.trust-icon { font-size: 2rem; margin-bottom: .8rem; }
.trust-card h4 { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: .5rem; }
.trust-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.7; }

.disclaimer {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(92,68,51,.06);
  border: 1px solid rgba(92,68,51,.2);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.disc-ico { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.disclaimer p { font-size: .85rem; color: var(--brown-dark); line-height: 1.8; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: var(--cream);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
  display: grid; grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-logo {
  font-size: 1.8rem; font-weight: 900;
  letter-spacing: .12em;
  color: var(--gold-light);
  margin-bottom: .4rem;
}
.footer-tagline { font-size: .9rem; color: rgba(247,243,236,.6); margin-bottom: .8rem; }
.footer-desc { font-size: .83rem; color: rgba(247,243,236,.45); line-height: 1.7; }

.footer-links-col h5,
.footer-contact-col h5 {
  font-size: .9rem; font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(247,243,236,.1);
}
.footer-links-col {
  display: flex; flex-direction: column; gap: .6rem;
}
.footer-links-col a {
  font-size: .88rem; color: rgba(247,243,236,.65);
  transition: color .25s;
}
.footer-links-col a:hover { color: var(--gold-light); }

.footer-contact-col {
  display: flex; flex-direction: column; gap: .6rem;
}
.footer-contact-col p { font-size: .85rem; color: rgba(247,243,236,.65); }
.btn-footer-order {
  display: inline-block; margin-top: .8rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--charcoal);
  font-weight: 800; font-size: .9rem;
  padding: .65rem 1.4rem;
  border-radius: 50px;
  transition: var(--transition);
}
.btn-footer-order:hover { transform: translateY(-2px); opacity: .9; }

.footer-bar {
  max-width: 1200px; margin: 0 auto;
  padding: 1.5rem 1.5rem;
  border-top: 1px solid rgba(247,243,236,.08);
  text-align: center;
}
.footer-bar p { font-size: .78rem; color: rgba(247,243,236,.4); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top-btn {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 900;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 1.2rem; font-weight: 800;
  border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(184,146,42,.4);
  display: none;
  align-items: center; justify-content: center;
  transition: var(--transition);
}
.scroll-top-btn.visible { display: flex; }
.scroll-top-btn:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(184,146,42,.5); }

/* ============================================================
   ANIMATIONS — scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .showcase-inner { grid-template-columns: 1fr; gap: 3rem; }
  .showcase-img-col { order: -1; }
  .hero { grid-template-columns: 1fr; text-align: center; padding: 7rem 1.5rem 3rem; }
  .hero-content { align-items: center; }
  .hero-visual { justify-content: center; }
  .order-layout { grid-template-columns: 1fr; }
  .price-cards { position: static; flex-direction: row; flex-wrap: wrap; }
  .price-card { flex: 1; min-width: 180px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding-top: 6rem; }
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 1rem; }
  .products-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .howto-flow { flex-direction: column; align-items: center; }
  .howto-arrow { transform: rotate(90deg); margin: 0; }
  .price-cards { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.7rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .order-form-box { padding: 1.5rem; }
}
