/* ============================================
   PAIN AU LAIT BAKERY
   Warm terracotta + honey gold palette
   ============================================ */

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

:root {
  --primary: #c45e2c;
  --primary-light: #d9784a;
  --primary-dark: #a84f25;
  --accent: #e8a43a;
  --dark: #2c2417;
  --text: #4a4a4a;
  --text-light: #888888;
  --bg: #fefcf9;
  --bg-warm: #faf6f1;
  --bg-cream: #f3ece2;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Poppins', 'Helvetica Neue', sans-serif;
  --max-width: 1200px;
  --nav-height: 80px;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.3;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }

.section-label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font-body);
  margin-bottom: 8px;
  display: block;
}
.section-title { margin-bottom: 16px; }
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border: none;
  margin-bottom: 24px;
}
.section-divider.center { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,94,44,0.4);
}
.btn-accent {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
  font-weight: 700;
}
.btn-accent:hover {
  background: #d49430;
  border-color: #d49430;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,164,58,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* Pulsing CTA */
.btn-cta {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  font-size: 1.1rem;
  padding: 20px 48px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(196,94,44,0.3);
  animation: ctaPulse 2.5s ease-in-out infinite;
}
.btn-cta:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(196,94,44,0.5);
  animation: none;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(196,94,44,0.3); }
  50% { box-shadow: 0 4px 30px rgba(196,94,44,0.55); }
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254,252,249,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196,94,44,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--primary);
  background: rgba(196,94,44,0.06);
}
.nav-arrow { display: inline-flex; align-items: center; transition: transform 0.3s ease; }
.nav-arrow svg { width: 10px; height: 10px; stroke: currentColor; stroke-width: 2; fill: none; }
.nav-menu > li:hover .nav-arrow { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px;
  min-width: 240px;
}
.nav-menu > li:hover > .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 6px;
  transition: all 0.2s ease;
}
.dropdown a:hover { background: rgba(196,94,44,0.08); color: var(--primary); transform: translateX(3px); }

.nav-cta { margin-left: 8px; }
.nav-cta .btn { padding: 10px 24px; font-size: 0.8rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1002;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.4); z-index: 999;
  opacity: 0; transition: opacity 0.3s ease; backdrop-filter: blur(4px);
}
.nav-overlay.active { display: block; opacity: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.5;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(44,36,23,0.7) 0%, rgba(44,36,23,0.2) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: var(--nav-height);
  max-width: 700px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}
.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 32px;
  max-width: 550px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex;
  align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
}

/* ---------- Page Hero ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--bg-cream) 0%, #d4c4a8 100%);
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(196,94,44,0.1) 100%);
}
.page-hero h1 { color: var(--dark); margin-bottom: 12px; position: relative; }
.page-hero p { color: var(--text); max-width: 600px; font-size: 1.05rem; position: relative; }

.breadcrumb { padding: 16px 0; font-size: 0.85rem; position: relative; }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { color: var(--primary-dark); }
.breadcrumb .separator { margin: 0 8px; color: var(--text-light); }
.breadcrumb .current { color: var(--text-light); }

/* ---------- Sections ---------- */
section { padding: 80px 0; }
section.bg-warm { background: var(--bg-warm); }
section.bg-cream { background: var(--bg-cream); }
section.bg-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}
section.bg-primary h2, section.bg-primary h3 { color: var(--white); }

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 48px;
}
.section-header p { color: var(--text-light); font-size: 1.05rem; }

/* ---------- Feature Cards ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  background: var(--white);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon-wrap {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  background: rgba(196,94,44,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.feature-card h4 { color: var(--primary); margin-bottom: 12px; }
.feature-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 400px; object-fit: cover; }
.about-content h2 { margin-bottom: 16px; }
.about-content p { color: var(--text-light); }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #eee;
}
.stat-item h3 { font-size: 2rem; color: var(--primary); }
.stat-item p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* ---------- Bread Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  color: inherit;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body {
  padding: 24px; flex: 1;
  display: flex; flex-direction: column;
}
.service-card-body h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--dark); }
.service-card-body p { font-size: 0.9rem; color: var(--text-light); flex: 1; }
.service-card-body .service-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid #eee;
}
.service-price { font-weight: 700; color: var(--primary); font-size: 0.95rem; }
.service-link { font-weight: 600; color: var(--accent); font-size: 0.85rem; }

/* ---------- Service Detail ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.service-hero-img {
  width: 100%; height: 350px; object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}
.service-content h2 { font-size: 1.5rem; margin: 32px 0 12px; }
.service-content p { color: var(--text); line-height: 1.8; }
.service-content ul { margin: 16px 0; }
.service-content ul li { padding: 8px 0 8px 28px; position: relative; color: var(--text); }
.service-content ul li::before { content: '\2713'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.service-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}
.sidebar-card h4 { margin-bottom: 16px; font-family: var(--font-body); font-size: 1rem; font-weight: 700; }
.related-services li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid #e5e5e5;
  font-size: 0.9rem; color: var(--text);
}
.related-services li a:hover { color: var(--primary); }
.related-services li a::after { content: '\2192'; color: var(--primary); opacity: 0; transition: var(--transition); }
.related-services li a:hover::after { opacity: 1; }

/* ---------- CTA Banner ---------- */
.cta-banner { text-align: center; padding: 64px 24px; }
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { font-size: 1.1rem; opacity: 0.9; max-width: 550px; margin: 0 auto 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #eee; padding: 20px 0; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; color: var(--dark); font-size: 1.05rem;
  background: none; border: none; width: 100%; text-align: left;
  padding: 0; font-family: var(--font-body); transition: color 0.3s ease;
}
.faq-question:hover { color: var(--primary); }
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(196,94,44,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.2rem; color: var(--primary);
  transition: var(--transition);
}
.faq-item.open .faq-toggle { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 500px; padding-top: 16px; }
.faq-answer p { color: var(--text-light); line-height: 1.8; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(196,94,44,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--primary);
}
.contact-info-item h4 { font-size: 1rem; color: var(--dark); margin-bottom: 4px; font-family: var(--font-body); }
.contact-info-item p { font-size: 0.9rem; color: var(--text-light); margin: 0; }
.contact-form-wrap {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-weight: 600; color: var(--dark); margin-bottom: 8px; font-size: 0.9rem; }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  border: 2px solid rgba(196,94,44,0.15);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  background: var(--bg);
  transition: var(--transition);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196,94,44,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-cream);
  color: var(--text);
  padding: 64px 0 24px;
  border-top: 1px solid rgba(196,94,44,0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 700;
  color: var(--primary);
  display: block; margin-bottom: 16px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.8; color: var(--text-light); }
.footer h5 {
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 0.9rem; color: var(--text-light); }
.footer ul a:hover { color: var(--primary); padding-left: 4px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(196,94,44,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 0.85rem; font-weight: 700;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(196,94,44,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--text-light);
}

/* ---------- Mobile Sticky Bar ---------- */
.mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--primary);
}
.mobile-bar-inner { display: grid; grid-template-columns: 1fr 1fr; }
.mobile-bar a {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 16px;
  color: var(--white); font-weight: 600; font-size: 0.9rem;
}
.mobile-bar a:first-child { border-right: 1px solid rgba(255,255,255,0.3); }

/* ============================================
   ORDER MODAL
   ============================================ */
.order-modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  backdrop-filter: blur(4px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 40px 12px;
}
.order-modal-overlay.active { display: flex; align-items: flex-start; justify-content: center; }

.order-modal {
  background: var(--white);
  border-radius: 20px;
  width: calc(100% - 8px);
  max-width: 680px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  position: relative;
  animation: modalIn 0.3s ease;
  overflow: hidden;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.order-modal-header {
  padding: 24px 24px 20px;
  border-bottom: 1px solid #eee;
  display: flex; justify-content: space-between; align-items: center;
}
.order-modal-header h2 {
  font-size: 1.5rem;
  margin: 0;
}
.order-modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--bg-cream);
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.order-modal-close:hover { background: var(--primary); color: var(--white); }

.order-modal-body { padding: 24px 24px 32px; overflow: hidden; }

/* Steps indicator */
.order-steps {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
}
.order-step {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: #e5e5e5;
  transition: background 0.3s ease;
}
.order-step.active { background: var(--primary); }
.order-step.done { background: var(--accent); }

/* Step panels */
.order-panel { display: none; }
.order-panel.active { display: block; }

.order-panel h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--dark);
}

/* Bread selection */
.bread-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bread-select-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 2px solid #eee;
  border-radius: 12px;
  transition: var(--transition);
  cursor: default;
}
.bread-select-item.selected { border-color: var(--primary); background: rgba(196,94,44,0.04); }
.bread-select-item img {
  width: 56px; height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.bread-select-info { flex: 1; min-width: 0; }
.bread-select-info h4 {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
  line-height: 1.2;
}
.bread-select-info span {
  font-size: 0.75rem;
  color: var(--text-light);
}
.bread-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.bread-qty button {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  transition: var(--transition);
  font-weight: 700;
  padding: 0;
  line-height: 1;
}
.bread-qty button:hover { border-color: var(--primary); color: var(--primary); }
.bread-qty .qty-num {
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 20px;
  text-align: center;
  color: var(--dark);
}

/* Delivery toggle */
.delivery-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.delivery-option {
  padding: 20px;
  border: 2px solid #eee;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.delivery-option:hover { border-color: var(--primary-light); }
.delivery-option.selected {
  border-color: var(--primary);
  background: rgba(196,94,44,0.04);
}
.delivery-option h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.delivery-option p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}

/* Delivery address fields */
.delivery-fields { display: none; margin-top: 20px; }
.delivery-fields.active { display: block; }
.delivery-fields .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Order summary */
.order-summary-list {
  margin-bottom: 20px;
}
.order-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
}
.order-summary-item .item-name { color: var(--dark); font-weight: 500; }
.order-summary-item .item-qty { color: var(--text-light); }
.order-summary-method {
  padding: 16px;
  background: var(--bg-warm);
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.order-summary-method strong { color: var(--dark); }

.order-note {
  padding: 16px;
  background: rgba(232,164,58,0.1);
  border: 1px solid rgba(232,164,58,0.2);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--dark);
  margin-top: 20px;
  line-height: 1.6;
}

/* Modal nav buttons */
.order-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 12px;
}
.order-nav .btn { min-width: 140px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  section { padding: 60px 0; }

  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-menu {
    position: fixed; top: 0; right: -100%;
    width: 320px; max-width: 85vw;
    height: 100vh; height: 100dvh;
    background: var(--white);
    flex-direction: column; align-items: stretch;
    padding: 80px 0 24px; gap: 0;
    box-shadow: -16px 0 48px rgba(0,0,0,0.12);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto; z-index: 1001;
  }
  .nav-menu.open { right: 0; }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a {
    display: flex; justify-content: space-between;
    padding: 14px 24px; font-size: 0.9rem;
    border-radius: 0; border-bottom: 1px solid rgba(0,0,0,0.06); width: 100%;
  }
  .dropdown {
    position: static !important;
    opacity: 1 !important; visibility: visible !important;
    transform: none !important; box-shadow: none !important;
    border-radius: 0 !important;
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0; background: var(--bg-warm);
    min-width: unset !important; width: 100% !important;
  }
  .dropdown.open { max-height: 2000px; padding: 8px 0; }
  .dropdown a { padding: 10px 32px; border-radius: 0; }
  .dropdown a:hover { transform: none; padding-left: 36px; }

  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .hero-content { padding: 120px 0 80px; }
  .hero-content h1 { font-size: 2rem; }
  .page-hero { padding: 100px 0 40px; }
  .mobile-bar { display: block; }
  body { padding-bottom: 56px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  /* Order modal mobile */
  .order-modal-overlay { padding: 12px 6px; }
  .order-modal { width: 100%; border-radius: 16px; }
  .order-modal-body { padding: 16px 16px 24px; }
  .order-modal-header { padding: 16px 16px 14px; }
  .order-modal-header h2 { font-size: 1.25rem; }
  .bread-select-grid { grid-template-columns: 1fr; }
  .delivery-fields .form-row { grid-template-columns: 1fr; }
  .order-nav { gap: 8px; }
  .order-nav .btn { min-width: 0; padding: 12px 20px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; text-align: center; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .contact-form-wrap { padding: 24px 16px; }
  .delivery-toggle { grid-template-columns: 1fr; }
}

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
