/* ===== Pawganic PT — Styles ===== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --olive: #5c6b2f;
  --olive-dark: #3d4a1e;
  --olive-light: #8a9a5b;
  --cream: #faf8f0;
  --warm-white: #fff9ed;
  --sand: #e8dcc8;
  --text: #3a3a2e;
  --text-light: #6b6b5e;
  --gold: #d4a843;
  --gold-dark: #b8922e;
  --whatsapp: #25d366;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 20px rgba(60,60,40,0.10);
  --shadow-lg: 0 8px 40px rgba(60,60,40,0.15);
  --max-width: 1100px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--olive); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--olive-dark); }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.25; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== NAV ===== */
.nav {
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sand);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
}
.nav-logo img { height: 52px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--olive);
  border-bottom-color: var(--olive);
}

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text); }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    padding: 16px 24px;
    gap: 8px;
    border-bottom: 1px solid var(--sand);
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  }
  .nav-links.open { display: flex; }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive) 100%);
  color: #fff;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  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.04'%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-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero-text { text-align: left; }
.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
}
.hero .subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 480px;
  margin: 0 0 44px;
  line-height: 1.7;
  position: relative;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; position: relative; }
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-dog-img {
  width: 100%;
  max-width: 480px;
  height: 420px;
  object-fit: cover;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  box-shadow: 0 12px 48px rgba(0,0,0,0.35);
  border: 4px solid rgba(255,255,255,0.2);
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { text-align: center; }
  .hero .subtitle { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-dog-img { height: 280px; max-width: 320px; }
  .hero h1 { font-size: 2.2rem; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-dark); color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.65); }
.btn-outline:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn-whatsapp { background: var(--whatsapp); color: #fff; border: none; }
.btn-whatsapp:hover { background: #1aaa52; color: #fff; }

/* ===== SECTIONS ===== */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 76px 24px;
}
.section-alt { background: #fff; }
.section-alt .section { padding: 76px 24px; }

.section-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  color: var(--olive-dark);
  margin-bottom: 16px;
  text-align: center;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 14px auto 0;
}
/* Left-aligned title underline */
.section-title.title-left::after { margin-left: 0; }

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 52px;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ===== TWO COLUMN ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
}

.two-col img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  max-height: 420px;
}

/* ===== PRODUCTS ===== */
.product-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card img { width: 100%; height: 280px; object-fit: cover; }
.product-card-body { padding: 28px; }
.product-card-body h3 {
  font-family: var(--font-heading);
  color: var(--olive-dark);
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
@media (max-width: 600px) { .products-grid { grid-template-columns: 1fr; } }

/* ===== PRICING TABLE ===== */
.pricing-table {
  width: 100%;
  max-width: 600px;
  margin: 32px auto;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pricing-table th {
  background: var(--olive);
  color: #fff;
  padding: 16px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--sand);
  font-size: 0.98rem;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover td { background: var(--cream); transition: background 0.15s; }

/* ===== INGREDIENTS LIST ===== */
.ingredients-list {
  list-style: none;
  padding: 0;
}
.ingredients-list li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: var(--text);
  font-size: 0.97rem;
}
.ingredients-list li::before {
  content: '🌿';
  position: absolute;
  left: 0;
}

/* ===== FEATURED REVIEW ===== */
.featured-review {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 40px;
  margin-bottom: 32px;
}
.featured-review .quote-icon {
  width: 44px;
  height: 44px;
  background: var(--olive);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-family: Georgia, serif;
  margin-bottom: 20px;
}
.featured-review blockquote p {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.97rem;
}
.featured-review .author {
  font-weight: 600;
  color: var(--olive-dark);
  margin-top: 20px;
  font-size: 1rem;
}
.featured-review-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.featured-review-photos img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
}
@media (max-width: 600px) {
  .featured-review { padding: 24px; }
  .featured-review-photos { grid-template-columns: 1fr; }
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.testimonial-card .quote-icon {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.65;
  font-size: 0.97rem;
}
.testimonial-card .author {
  font-weight: 600;
  color: var(--olive-dark);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-list {
  list-style: none;
  padding: 0;
}
.contact-info-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--sand);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-list .icon {
  font-size: 1.2rem;
  width: 42px;
  height: 42px;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--olive-dark);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--cream);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(92, 107, 47, 0.12);
  background: #fff;
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form .btn { width: 100%; text-align: center; }

/* ===== FOOTER ===== */
.footer {
  background: var(--olive-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 24px 32px;
  font-size: 0.9rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-brand p {
  margin-top: 14px;
  line-height: 1.7;
  max-width: 280px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.footer-brand img { height: 64px; border-radius: 8px; padding: 6px 10px; background: var(--cream); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-col ul li span { color: rgba(255,255,255,0.6); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
}
.footer a { color: rgba(255,255,255,0.8); }
.footer a:hover { color: #fff; }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== ABOUT PAGE SPECIFIC ===== */
.about-hero {
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-light) 100%);
  color: #fff;
  text-align: center;
  padding: 88px 24px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  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.04'%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;
}
.about-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  margin-bottom: 14px;
  position: relative;
}
.about-hero p { position: relative; opacity: 0.9; font-size: 1.1rem; }

.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-bottom-color 0.2s;
  border-bottom: 3px solid transparent;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-bottom-color: var(--gold); }
.value-card .card-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
  display: block;
}
.value-card h3 {
  font-family: var(--font-heading);
  color: var(--olive-dark);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* ===== PAGE HERO (products, contact) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-light) 100%);
  color: #fff;
  text-align: center;
  padding: 88px 24px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  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.04'%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;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 14px;
  position: relative;
}
.page-hero p { opacity: 0.9; max-width: 600px; margin: 0 auto; position: relative; font-size: 1.05rem; }

/* ===== GALLERY ROW ===== */
.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-row img {
  border-radius: var(--radius);
  width: 100%;
  height: 260px;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.gallery-row img:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }

@media (max-width: 768px) {
  .gallery-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .page-hero h1, .about-hero h1 { font-size: 2rem; }
}

/* ===== SIZE GUIDE ===== */
.size-guide {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 20px;
}
.size-guide p { margin-bottom: 6px; font-size: 0.95rem; }
.size-guide strong { color: var(--olive-dark); }

/* ===== ORDER PAGE ===== */
.order-step-title {
  font-family: var(--font-heading);
  color: var(--olive-dark);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.order-step-subtitle {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 0.97rem;
}

.order-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.order-product-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.order-product-card.selected {
  border-color: var(--olive);
  box-shadow: var(--shadow-lg);
}
.order-product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  margin-bottom: 18px;
}

.order-product-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 10px;
}
.order-product-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--olive);
  cursor: pointer;
  flex-shrink: 0;
}
.order-product-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--olive-dark);
  font-weight: 600;
}
.order-product-desc {
  color: var(--text-light);
  font-size: 0.9rem;
}

.order-product-options {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--sand);
}
.order-product-options.active { display: block; }

.order-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: end;
}

.order-label {
  display: block;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 6px;
}

.order-select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: var(--cream);
  transition: border-color 0.2s;
}
.order-select:focus { outline: none; border-color: var(--olive); }

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--cream);
}
.qty-stepper button {
  background: none;
  border: none;
  width: 38px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--olive-dark);
  transition: background 0.15s;
}
.qty-stepper button:hover { background: var(--sand); }
.qty-stepper input {
  width: 46px;
  border: none;
  border-left: 1.5px solid var(--sand);
  border-right: 1.5px solid var(--sand);
  text-align: center;
  font-size: 0.97rem;
  font-family: var(--font-body);
  background: #fff;
  padding: 0;
  height: 40px;
  -moz-appearance: textfield;
}
.qty-stepper input::-webkit-inner-spin-button,
.qty-stepper input::-webkit-outer-spin-button { -webkit-appearance: none; }

.order-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.order-full-col { grid-column: 1 / -1; }
.order-details-grid input,
.order-details-grid textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.order-details-grid input:focus,
.order-details-grid textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(92, 107, 47, 0.12);
  background: #fff;
}
.order-details-grid textarea { min-height: 100px; resize: vertical; }

.order-error {
  background: #fff0f0;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .order-details-grid { grid-template-columns: 1fr; }
  .order-full-col { grid-column: 1; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  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.04'%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;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  margin-bottom: 14px;
  position: relative;
}
.cta-banner p { opacity: 0.9; margin-bottom: 32px; position: relative; font-size: 1.05rem; }
.cta-banner .btn-primary { background: var(--gold); }
.cta-banner > div { position: relative; }
