/* ============================================================
   NOORA CANDLES — pages.css
   Page-specific styles for each HTML page
   ============================================================ */

/* ══════════════════════════════════════════
   INDEX.HTML — Hero
══════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 8rem 4rem 6rem;
  background:
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(212,164,196,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(107,158,126,0.2) 0%, transparent 60%),
    linear-gradient(160deg, #fdf0f5 0%, var(--cream) 50%, #f0f7f3 100%);
  position: relative; overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 320px; height: 320px;
  background:
    radial-gradient(ellipse 40px 90px at 60px 120px, rgba(107,158,126,0.5) 0%, transparent 100%),
    radial-gradient(ellipse 30px 70px at 100px 80px, rgba(107,158,126,0.4) 0%, transparent 100%),
    radial-gradient(circle 50px at 80px 150px, rgba(196,104,122,0.35) 0%, transparent 100%),
    radial-gradient(circle 35px at 130px 100px, rgba(242,215,224,0.6) 0%, transparent 100%);
  pointer-events: none; transform: rotate(-15deg) translate(-40px,-40px);
}
#hero::after {
  content: '';
  position: absolute; bottom: 0; right: 0; width: 280px; height: 280px;
  background:
    radial-gradient(ellipse 35px 80px at 200px 200px, rgba(107,158,126,0.45) 0%, transparent 100%),
    radial-gradient(circle 45px at 190px 220px, rgba(196,104,122,0.3) 0%, transparent 100%),
    radial-gradient(circle 30px at 240px 190px, rgba(242,215,224,0.55) 0%, transparent 100%);
  pointer-events: none; transform: rotate(10deg) translate(30px,30px);
}
.hero-text { position: relative; z-index: 2; }
.hero-script { font-family: 'Great Vibes', cursive; font-size: 1.6rem; color: var(--rose); margin-bottom: 0.5rem; animation: fadeUp 1s ease both; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 5.5vw, 5rem); font-weight: 700; line-height: 1.1; color: var(--bloom); margin-bottom: 0.8rem; animation: fadeUp 1s 0.15s ease both; }
.hero-title em { font-style: italic; color: var(--rose); }
.hero-tagline { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-style: italic; color: var(--text-mid); margin-bottom: 2.5rem; animation: fadeUp 1s 0.3s ease both; }
.hero-flowers { font-size: 1.2rem; margin-bottom: 1.5rem; letter-spacing: 0.4rem; animation: fadeUp 1s 0.45s ease both; color: var(--rose); opacity: 0.7; }
.hero-ctas { display: flex; gap: 1rem; animation: fadeUp 1s 0.55s ease both; }
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; z-index: 2; animation: fadeIn 1.3s 0.2s ease both; }
.hero-frame { position: relative; width: 420px; height: 520px; }
.hero-frame-border { position: absolute; inset: -18px; border: 1.5px solid rgba(196,104,122,0.3); border-radius: 200px 60px 200px 60px; pointer-events: none; }
.hero-frame-border::before { content: '✿'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #fdf0f5; padding: 0 8px; color: var(--rose); font-size: 1.1rem; }
.hero-frame-border::after { content: '✿'; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); background: var(--cream); padding: 0 8px; color: var(--rose); font-size: 1.1rem; }
.hero-image-wrap {
  width: 100%; height: 100%;
  border-radius: 180px 50px 180px 50px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(122,48,72,0.22), inset 0 0 40px rgba(196,104,122,0.1);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-badge { position: absolute; bottom: -20px; left: -30px; background: var(--ivory); border: 1px solid var(--petal-deep); padding: 1rem 1.4rem; border-radius: 12px; box-shadow: 0 8px 30px rgba(122,48,72,0.12); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); }
.hero-badge strong { display: block; font-family: 'Great Vibes', cursive; font-size: 1.8rem; color: var(--rose); letter-spacing: 0; text-transform: none; }

@media (max-width: 960px) {
  #hero { grid-template-columns: 1fr; padding: 7rem 2rem 5rem; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-visual { margin-top: 2.5rem; }
  .hero-frame { width: 300px; height: 380px; }
  .hero-badge { left: 0; }
}

/* ══════════════════════════════════════════
   SHOP.HTML
══════════════════════════════════════════ */
#shop-page {
  padding-top: 7rem;
  background:
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(212,232,219,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(242,215,224,0.4) 0%, transparent 50%),
    var(--ivory);
  min-height: 100vh;
}
.shop-inner { padding: 3rem 4rem 6rem; }
.shop-header { text-align: center; margin-bottom: 3rem; }
.shop-filters { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn { padding: 0.5rem 1.6rem; background: transparent; border: 1.5px solid rgba(196,104,122,0.3); font-family: 'Lato', sans-serif; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; color: var(--text-mid); transition: all 0.22s; border-radius: 30px; }
.filter-btn:hover, .filter-btn.active { background: var(--rose); border-color: var(--rose); color: #fff; box-shadow: 0 4px 16px rgba(196,104,122,0.3); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }
.product-card { background: var(--ivory); border-radius: 16px; overflow: hidden; border: 1px solid rgba(196,104,122,0.12); transition: transform 0.3s, box-shadow 0.3s; position: relative; }
.product-card::before { content: '✿'; position: absolute; top: 12px; right: 14px; font-size: 1rem; color: var(--rose); opacity: 0.25; z-index: 1; transition: opacity 0.3s; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(122,48,72,0.15); }
.product-card:hover::before { opacity: 0.6; }
.product-img { height: 290px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.product-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.product-card:hover .product-img img { transform: scale(1.04); }
.product-img-placeholder { text-align: center; color: var(--text-mid); font-family: 'Playfair Display', serif; font-style: italic; background: linear-gradient(145deg, var(--petal) 0%, var(--petal-deep) 60%, var(--leaf-pale) 100%); width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.product-img-placeholder span { font-size: 3rem; display: block; margin-bottom: 0.5rem; }
.product-img::after { content: '❀'; position: absolute; bottom: 10px; right: 14px; font-size: 1.4rem; color: rgba(255,255,255,0.6); opacity: 0; transform: scale(0.5); transition: all 0.3s; }
.product-card:hover .product-img::after { opacity: 1; transform: scale(1); }
.product-tag { position: absolute; top: 14px; left: 14px; background: var(--bloom); color: #fff; font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.3rem 0.9rem; border-radius: 20px; z-index: 2; }
.product-info { padding: 1.4rem 1.5rem 1.5rem; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 500; color: var(--bloom); margin-bottom: 0.25rem; }
.product-scent { font-size: 0.74rem; color: var(--text-light); letter-spacing: 0.06em; margin-bottom: 1rem; font-style: italic; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--rose); }
.add-to-cart { padding: 0.5rem 1.2rem; background: transparent; color: var(--bloom); border: 1.5px solid var(--petal-deep); cursor: pointer; font-family: 'Lato', sans-serif; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; transition: all 0.22s; border-radius: 20px; }
.add-to-cart:hover { background: var(--rose); border-color: var(--rose); color: #fff; }
.add-to-cart.added { background: var(--leaf); border-color: var(--leaf); color: #fff; }

@media (max-width: 960px) { .shop-inner { padding: 2rem 2rem 4rem; } }

/* ══════════════════════════════════════════
   ABOUT.HTML
══════════════════════════════════════════ */
#about-page {
  padding-top: 7rem;
  background:
    radial-gradient(ellipse 80% 70% at 0% 50%, rgba(242,215,224,0.45) 0%, transparent 60%),
    linear-gradient(170deg, var(--cream) 0%, var(--warm) 100%);
  min-height: 100vh;
}
.about-inner {
  padding: 3rem 4rem 6rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.about-img { border-radius: 12px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.about-img:first-child { height: 270px; grid-column: 1/-1; border-radius: 16px; }
.about-img:nth-child(2) { height: 175px; }
.about-img:nth-child(3) { height: 175px; margin-top: 18px; }
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img-ph { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-style: italic; color: var(--text-mid); text-align: center; padding: 1rem; background: linear-gradient(145deg, var(--petal), var(--petal-deep) 70%, var(--leaf-pale)); width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(196,104,122,0.15); }
.about-img-ph span { font-size: 2.2rem; display: block; margin-bottom: 0.4rem; }
.about-text p { font-size: 0.95rem; line-height: 1.95; color: var(--text-mid); margin-bottom: 1.2rem; }
.about-values { display: flex; gap: 2rem; margin-top: 2rem; }
.value-item { text-align: center; }
.value-num { font-family: 'Great Vibes', cursive; font-size: 2.2rem; color: var(--rose); display: block; }
.value-label { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--leaf); }

/* Testimonials on About page */
.testimonials-section { background: linear-gradient(160deg, #fdf0f5 0%, var(--cream) 100%); padding: 4rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 2.5rem; }
.testimonial { padding: 2.5rem 2rem; background: var(--ivory); border-radius: 16px; border: 1px solid rgba(196,104,122,0.12); position: relative; overflow: hidden; }
.testimonial::before { content: '❝'; position: absolute; top: 12px; left: 18px; font-size: 4rem; color: var(--petal); opacity: 0.5; font-family: 'Playfair Display', serif; line-height: 1; }
.testimonial::after { content: '✿'; position: absolute; bottom: 14px; right: 18px; font-size: 1.2rem; color: var(--rose); opacity: 0.25; }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.15em; }
.testimonial blockquote { font-family: 'Playfair Display', serif; font-size: 1rem; font-style: italic; line-height: 1.8; color: var(--text); margin-bottom: 1.2rem; }
.testimonial cite { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rose); }

@media (max-width: 960px) {
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 2rem 2rem 4rem; }
  .testimonials-section { padding: 3rem 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   PROCESS.HTML
══════════════════════════════════════════ */
#process-page {
  padding-top: 7rem;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(107,158,126,0.2) 0%, transparent 60%),
    linear-gradient(180deg, var(--bloom) 0%, #3d1e2e 100%);
  min-height: 100vh; position: relative; overflow: hidden;
}
#process-page::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle 3px at 10% 20%, rgba(242,215,224,0.3) 0%, transparent 100%),
    radial-gradient(circle 4px at 90% 15%, rgba(242,215,224,0.25) 0%, transparent 100%),
    radial-gradient(circle 3px at 50% 80%, rgba(212,232,219,0.2) 0%, transparent 100%);
  pointer-events: none;
}
.process-inner { padding: 3rem 4rem 6rem; text-align: center; position: relative; z-index: 1; }
#process-page .section-eyebrow { color: var(--petal-deep); }
#process-page .section-title { color: #fff; }
#process-page .section-label { color: var(--leaf-light); }
#process-page .floral-corner span { color: var(--leaf-light); }
#process-page .floral-corner::before, #process-page .floral-corner::after { color: var(--petal-deep); }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-top: 3rem; }
.step { padding: 2rem 1.5rem; position: relative; }
.step::after { content: '❀'; position: absolute; top: 2rem; right: -1.2rem; color: var(--rose); font-size: 1.1rem; opacity: 0.7; }
.step:last-child::after { display: none; }
.step-num { font-family: 'Great Vibes', cursive; font-size: 3.5rem; color: rgba(242,215,224,0.25); line-height: 1; margin-bottom: 0.5rem; }
.step-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.step h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 500; margin-bottom: 0.6rem; color: var(--petal); }
.step p { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.75; }

/* Ingredients section */
.ingredients-section { padding: 4rem; background: linear-gradient(160deg, #fdf0f5 0%, var(--cream) 100%); }
.ingredients-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 2.5rem; }
.ingredient-card { background: var(--ivory); border-radius: 16px; padding: 2rem 1.5rem; text-align: center; border: 1px solid rgba(196,104,122,0.12); }
.ingredient-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.ingredient-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--bloom); margin-bottom: 0.5rem; }
.ingredient-desc { font-size: 0.84rem; color: var(--text-mid); line-height: 1.7; }

@media (max-width: 960px) {
  .process-inner { padding: 2rem 2rem 4rem; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
  .ingredients-section { padding: 3rem 2rem; }
  .ingredients-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   CONTACT.HTML
══════════════════════════════════════════ */
#contact-page {
  padding-top: 7rem;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(242,215,224,0.5) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(212,232,219,0.4) 0%, transparent 50%),
    var(--warm);
  min-height: 100vh;
}
.contact-inner { padding: 3rem 4rem 6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info p { font-size: 0.95rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.contact-icon { font-size: 1.2rem; }
.contact-text { font-size: 0.84rem; color: var(--text-mid); }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--leaf); }
.form-group input, .form-group textarea, .form-group select { padding: 0.85rem 1.1rem; background: rgba(255,255,255,0.8); border: 1.5px solid rgba(196,104,122,0.2); font-family: 'Lato', sans-serif; font-size: 0.9rem; color: var(--text); outline: none; transition: border-color 0.2s; border-radius: 8px; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--rose); background: #fff; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

@media (max-width: 960px) {
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 2rem 2rem 4rem; }
}
/* ── DEALS PAGE ── */
#deals-page {
  padding-top: 7rem;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(212,232,219,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(242,215,224,0.4) 0%, transparent 50%),
    var(--ivory);
}
.deals-inner { padding: 3rem 4rem 6rem; }
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem; margin-top: 3rem; margin-bottom: 4rem;
}
.deal-card {
  background: #fff; border-radius: 20px;
  border: 1px solid rgba(196,104,122,0.12);
  box-shadow: 0 4px 24px rgba(196,104,122,0.08);
  padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.deal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(196,104,122,0.15);
}
.deal-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--bloom));
}
.deal-card-badge {
  display: inline-block; align-self: flex-start;
  background: rgba(196,104,122,0.1); color: var(--rose);
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.25rem 0.8rem; border-radius: 20px;
  border: 1px solid rgba(196,104,122,0.2);
}
.deal-card-badge--green {
  background: rgba(61,107,79,0.1); color: var(--leaf);
  border-color: rgba(61,107,79,0.2);
}
.deal-card-badge--gold {
  background: rgba(201,160,90,0.1); color: var(--gold);
  border-color: rgba(201,160,90,0.2);
}
.deal-card-badge--rose {
  background: rgba(122,48,72,0.1); color: var(--bloom);
  border-color: rgba(122,48,72,0.2);
}
.deal-card-icon { font-size: 2.5rem; line-height: 1; }
.deal-card-body { display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.deal-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 500; color: var(--bloom);
}
.deal-card-desc {
  font-size: 0.86rem; color: var(--text-mid); line-height: 1.75;
}
.deal-card-desc strong { color: var(--bloom); }
.deal-card-code-wrap {
  display: flex; flex-direction: column; gap: 0.3rem; margin-top: 0.4rem;
}
.deal-card-label {
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-light);
}
.deal-card-code {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--ivory); border-radius: 10px;
  padding: 0.6rem 1rem;
  border: 1.5px dashed rgba(196,104,122,0.3);
}
.deal-code-text {
  font-family: 'Lato', sans-serif; font-size: 1rem;
  font-weight: 700; letter-spacing: 0.2em; color: var(--bloom); flex: 1;
}
.deal-copy-btn {
  padding: 0.3rem 0.9rem; background: var(--rose); color: #fff;
  border: none; border-radius: 20px; cursor: pointer;
  font-family: 'Lato', sans-serif; font-size: 0.65rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: background 0.2s;
}
.deal-copy-btn:hover { background: var(--rose-dark); }
.deal-card-validity {
  font-size: 0.7rem; color: var(--text-light);
  letter-spacing: 0.06em; margin-top: 0.2rem;
}
.deal-card-actions { margin-top: auto; padding-top: 0.5rem; }
.deal-action-btn {
  width: 100%; text-align: center; display: block;
}
.deal-unlocked {
  background: var(--leaf-pale); border-radius: 10px;
  padding: 0.8rem 1rem; font-size: 0.82rem; color: var(--leaf);
  display: flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(61,107,79,0.2);
}
.deal-unlocked-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--leaf); color: #fff; font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ── HOW TO USE STEPS ── */
.deals-how-section {
  background: linear-gradient(135deg, var(--petal) 0%, var(--ivory) 100%);
  border-radius: 20px; padding: 3rem 2rem; text-align: center;
  border: 1px solid rgba(196,104,122,0.1);
}
.deals-steps {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 1rem; margin-top: 2rem;
}
.deals-step {
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  max-width: 140px;
}
.deals-step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--bloom));
  color: #fff; font-family: 'Playfair Display', serif;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
}
.deals-step-text {
  font-size: 0.78rem; color: var(--text-mid);
  line-height: 1.5; text-align: center;
}
.deals-step-arrow {
  color: var(--rose); font-size: 1.2rem; opacity: 0.5;
  margin-top: -1rem;
}

@media (max-width: 960px) {
  .deals-inner { padding: 2rem 2rem 4rem; }
  .deals-steps { flex-direction: column; }
  .deals-step-arrow { transform: rotate(90deg); margin: 0; }
}

/* ── CONTACT & CUSTOM ORDER MOBILE FIXES ── */

/* 1. Custom Fragrance Section Styling */
.custom-frag-section {
  padding: 4rem 4rem 6rem;
  background: var(--ivory);
}

.custom-frag-inner {
  max-width: 900px;
  margin: 0 auto;
}

.custom-frag-form {
  background: #fff;
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid rgba(196,104,122,0.15);
  box-shadow: 0 20px 50px rgba(122,48,72,0.1);
  margin-top: 2.5rem;
}

.fragrance-intro {
  text-align: center;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

/* 2. Responsive Grids */
@media (max-width: 960px) {
  /* Stack the Contact Page columns */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2rem 1.5rem 4rem;
  }

  /* Stack the Name/Phone rows in both forms */
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .custom-frag-section {
    padding: 3rem 1.5rem;
  }

  .custom-frag-form {
    padding: 1.5rem;
  }
}

/* 3. Button & Input Polish */
.whatsapp-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 12px;
  width: 100%;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s;
}

.whatsapp-order-btn:hover {
  transform: scale(1.02);
  background: #20ba5a;
}

.whatsapp-divider {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
}

.whatsapp-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px; background: rgba(0,0,0,0.1);
}

.whatsapp-divider span {
  background: #fff;
  padding: 0 1rem;
  position: relative;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Fix iOS Zoom Issue */
.form-group input, 
.form-group textarea, 
.form-group select {
  font-size: 16px !important; 
  width: 100%;
}
