/* =============================================
   Colonial Window & Door — Shared Page Styles
   (used by all sub-pages)
   ============================================= */

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

:root {
  --navy:    #0B1D3A;
  --navy-lt: #132B52;
  --gold:    #C8913A;
  --gold-lt: #E4B06A;
  --white:   #FFFFFF;
  --slate:   #4A5568;
  --radius:  8px;
  --shadow:  0 4px 24px rgba(11,29,58,0.10);
  --shadow-lg: 0 12px 48px rgba(11,29,58,0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Announcement Bar ── */
.announce-bar {
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.announce-bar a { color: var(--white); text-decoration: underline; }

/* ── Site Nav ── */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid #e8e4de;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(11,29,58,0.07);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.site-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.site-logo-text .logo-name {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 26px;
  color: var(--navy);
  line-height: 1;
}
.site-logo-text .logo-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

/* Nav list */
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-list > li > a,
.nav-list > li > span {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.nav-list > li > a:hover,
.nav-list > li > span:hover { background: #f5f2ee; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-toggle .caret {
  font-size: 10px;
  margin-left: 2px;
  transition: transform 0.2s;
  display: inline-block;
}
.has-dropdown:hover .caret { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid #e8e4de;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 300;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: #f5f2ee; color: var(--navy); }
.dropdown-menu a.active { color: var(--gold); font-weight: 700; }

/* Phone */
.nav-phone a {
  color: var(--navy) !important;
  font-weight: 700 !important;
}
.nav-phone svg { color: var(--gold); }

/* Delivery badge */
.nav-delivery {
  font-size: 13px !important;
  color: var(--slate) !important;
  cursor: default !important;
}
.nav-delivery strong { color: var(--gold); }
.nav-delivery:hover { background: transparent !important; }

/* Quote CTA */
.btn-quote {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s !important;
}
.btn-quote:hover { background: var(--navy-lt) !important; }

/* ── Product Page Layout ── */
.product-page {
  background: var(--navy);
  min-height: calc(100vh - 120px);
  padding: 64px 0 80px;
}
.product-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.product-content h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}
.product-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 560px;
}
.product-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.product-check .check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}
.product-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 28px 0;
}
.product-promos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.product-promo {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
}
.product-promo .arrow-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 14px;
  margin-top: 1px;
}
.product-promo strong { color: var(--gold-lt); }
.btn-product-cta {
  display: block;
  width: 100%;
  max-width: 480px;
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 18px 32px;
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 16px;
}
.btn-product-cta:hover { background: var(--gold-lt); transform: translateY(-2px); }
.product-license {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.product-license svg { color: var(--gold); opacity: 0.6; }

/* Product image panel */
.product-image-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 40px 32px;
  min-height: 480px;
}
.product-image-panel svg {
  width: 100%;
  max-width: 320px;
  height: auto;
}

/* ── Site Footer ── */
.site-footer {
  background: #070F1D;
  color: rgba(255,255,255,0.5);
  padding: 56px 0 28px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 12px; max-width: 280px; }
.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-review-badge {
  display: flex; align-items: center; gap: 12px; margin-top: 20px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 12px 16px; text-decoration: none;
  transition: background 0.2s, border-color 0.2s; max-width: 280px;
}
.footer-review-badge:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.22); }
.footer-review-info { display: flex; flex-direction: column; gap: 2px; }
.footer-review-name { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.2; }
.footer-review-location { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.3px; }
.footer-review-stars { display: flex; align-items: center; gap: 6px; margin-top: 3px; }
.footer-stars { color: #F9AB00; font-size: 13px; letter-spacing: 1px; }
.footer-review-count { font-size: 12px; color: rgba(255,255,255,0.6); }

.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.social-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: transform 0.2s, opacity 0.2s;
  flex-shrink: 0;
}
.social-icon:hover { transform: translateY(-3px); opacity: 0.9; }
.social-icon svg { display: block; }
.social-facebook { background: #1877F2; }
.social-google   { background: #fff; }
.social-yelp     { background: transparent; padding: 0; }
.social-nextdoor { background: #8DC63F; }

/* ══════════════════════════════════════
   INDIVIDUAL PRODUCT PAGE — EXTENDED SECTIONS
   ══════════════════════════════════════ */

/* ── Photo Slider (shared) ── */
.photo-slider {
  position: relative; border-radius: 12px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(11,29,58,0.14); background: #f0ede8;
  aspect-ratio: 4/3; max-height: 520px;
}
.ps-slides { position: relative; width: 100%; height: 100%; }
.ps-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.55s ease; pointer-events: none;
}
.ps-slide.active { opacity: 1; pointer-events: auto; }
.ps-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ps-prev, .ps-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.92); border: none; border-radius: 50%;
  width: 40px; height: 40px; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  font-size: 20px; color: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18); z-index: 10;
  transition: background 0.2s; padding: 0;
}
.ps-prev { left: 12px; }
.ps-next { right: 12px; }
.ps-prev:hover, .ps-next:hover { background: #fff; }
.ps-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 10;
}
.ps-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.5); border: none; cursor: pointer; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.ps-dot.active { background: #fff; transform: scale(1.2); }

/* ── Brand Trust Bar ── */
.brand-bar {
  background: #f5f3f0;
  border-top: 1px solid #eae6e0;
  border-bottom: 1px solid #eae6e0;
  padding: 28px 0;
}
.brand-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.brand-badge {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 600; color: #6b7280;
  letter-spacing: 0.3px;
}
.brand-badge svg { flex-shrink: 0; }
.brand-badge .badge-name { font-size: 15px; font-weight: 700; color: #374151; }
.brand-badge .badge-sub { font-size: 11px; color: #9ca3af; letter-spacing: 0.8px; text-transform: uppercase; }

/* ── Product Gallery Section ── */
.product-gallery {
  padding: 80px 0;
  background: var(--white);
}
.product-gallery .pg-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.product-gallery .pg-text .section-label {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.product-gallery .pg-text h2 {
  font-family: 'DM Serif Display', serif; font-size: clamp(26px,3vw,36px);
  color: var(--navy); margin-bottom: 16px; line-height: 1.2;
}
.product-gallery .pg-text p {
  font-size: 15px; color: var(--slate); line-height: 1.8;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
@media (max-width: 860px) {
  .product-gallery .pg-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Benefits Section ── */
.product-benefits {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid #eae6e0;
}
.product-benefits .pb-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.product-benefits h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--navy); text-align: center; margin-bottom: 48px; line-height: 1.2;
}
.benefits-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 48px;
}
.benefit-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid #f0ede8;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; color: var(--navy);
}
.benefit-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.benefit-check svg { color: white; }
@media (max-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ── Options / Color Tabs ── */
.product-options {
  padding: 80px 0;
  background: #f9f7f4;
  border-top: 1px solid #eae6e0;
}
.product-options .po-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.product-options h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--navy); text-align: center; margin-bottom: 40px;
}
.options-tabs-nav {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid #ddd; border-radius: 8px 8px 0 0; overflow: hidden;
  margin-bottom: 0;
}
.options-tab-btn {
  background: #e8e4de; border: none; border-right: 1px solid #ddd;
  padding: 16px 12px; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: #6b7280; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  transition: background 0.2s, color 0.2s;
}
.options-tab-btn:last-child { border-right: none; }
.options-tab-btn::before { content: '▶'; font-size: 8px; }
.options-tab-btn:hover { background: #ddd8d0; color: var(--navy); }
.options-tab-btn.active { background: #5a5a5a; color: white; }
.options-tab-btn.active::before { content: '▶'; }
.options-tab-panel {
  display: none;
  background: var(--white); border: 1px solid #ddd; border-top: none;
  border-radius: 0 0 8px 8px; padding: 36px 32px;
}
.options-tab-panel.active { display: block; }
.options-tab-panel h3 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #6b7280; margin-bottom: 24px;
}
.swatch-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 20px 16px;
}
.swatch {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: default;
}
.swatch-color {
  width: 100%; aspect-ratio: 1/1.1; border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.swatch-name {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: #6b7280; text-align: center;
}
/* Grill pattern previews */
.grill-grid {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 16px;
}
.grill-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.grill-preview {
  width: 100%; aspect-ratio: 3/4; background: #e8f0f8;
  border: 2px solid #ddd; border-radius: 4px; position: relative; overflow: hidden;
}
.grill-preview img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.grill-name {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px;
  font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase;
  color: #6b7280; text-align: center;
}
@media (max-width: 768px) {
  .options-tabs-nav { grid-template-columns: repeat(2,1fr); }
  .swatch-grid { grid-template-columns: repeat(3,1fr); }
  .grill-grid { grid-template-columns: repeat(3,1fr); }
  .options-tab-btn { font-size: 10px; padding: 12px 8px; }
}
@media (max-width: 480px) {
  .swatch-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── Product Page Bottom CTA ── */
.product-bottom-cta {
  padding: 80px 0;
  background: var(--navy);
  text-align: center;
  position: relative; overflow: hidden;
}
.product-bottom-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 20%, rgba(200,145,58,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.product-bottom-cta > * { position: relative; z-index: 2; }
.product-bottom-cta h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 42px); color: var(--white); margin-bottom: 16px;
}
.product-bottom-cta p {
  font-size: 16px; color: rgba(255,255,255,0.55);
  font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 36px;
  max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.product-bottom-cta .cta-actions {
  display: flex; justify-content: center; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; background: var(--gold); color: var(--white);
  border-radius: var(--radius); font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: background 0.2s, transform 0.2s; letter-spacing: 0.3px;
}
.btn-cta-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-cta-phone {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 15px;
  text-decoration: none; transition: color 0.2s, border-color 0.2s;
}
.btn-cta-phone:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* ── Hamburger Button ── */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  flex-shrink: 0;
}
.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu Panel ── */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid #f0ede8;
  box-shadow: 0 12px 40px rgba(11,29,58,0.13);
  z-index: 199;
  padding: 6px 0 20px;
}
@keyframes mSlideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu.is-open {
  display: block;
  animation: mSlideDown 0.2s ease;
}

/* Mobile nav rows */
.m-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--slate);
  text-decoration: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  gap: 8px;
}
.m-row:hover { background: #f5f2ee; color: var(--navy); }
.m-row.m-link { justify-content: flex-start; }

.m-caret {
  font-size: 10px;
  color: var(--gold);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.m-toggle.is-open .m-caret { transform: rotate(180deg); }

/* Mobile submenu */
.m-submenu {
  display: none;
  background: #faf8f5;
  border-left: 3px solid var(--gold);
  margin: 0 24px 4px 24px;
  border-radius: 0 6px 6px 0;
}
.m-submenu.is-open { display: block; }
.m-submenu a {
  display: block;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color 0.15s;
}
.m-submenu a:hover { color: var(--navy); }
.m-submenu .m-submenu-head {
  display: block;
  padding: 10px 16px 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.m-divider { border: none; border-top: 1px solid #f0ede8; margin: 6px 0; }

/* Phone row */
.m-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.m-phone svg { color: var(--gold); flex-shrink: 0; }

/* Delivery row */
.m-delivery {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  font-size: 13px;
  color: var(--slate);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.m-delivery strong { color: var(--gold); }

/* Quote CTA */
.m-cta {
  display: block;
  margin: 14px 24px 4px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s;
}
.m-cta:hover { background: var(--navy-lt); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .product-container { grid-template-columns: 1fr; gap: 40px; }
  .product-image-panel { min-height: 280px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-list { display: none !important; }
  .hamburger-btn { display: flex; }
  .site-nav { position: relative; } /* anchor for absolute mobile menu */
}
@media (max-width: 640px) {
  .nav-container { justify-content: space-between; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .product-container { padding: 0 20px; }
}
