/* ==========================================================
   D.E.A.N.S Repairs — Polished CSS (drop-in main.css)
   - Same class names as v1.2.1 (no PHP changes needed)
   - Original images preserved
   - WCAG AA contrast throughout
   - Single consistent file (no !important patches)
   ========================================================== */

:root{
  /* Colour tokens */
  --navy:#0b1220;
  --blue:#1d4ed8;
  --blue-700:#1e40af;
  --cyan:#0e7490;
  --orange:#c2410c;
  --amber:#b45309;
  --green:#15803d;

  /* Text — strong contrast everywhere */
  --text:#0b1220;
  --text-2:#1f2937;
  --text-muted:#475569;
  --text-light:#cbd5e1;
  --text-light-2:#e2e8f0;

  /* Surfaces */
  --soft:#f5f7fb;
  --card:#ffffff;
  --border:#dbe1ea;
  --border-strong:#cbd5e1;

  /* Radii */
  --radius-sm:.85rem;
  --radius:1.25rem;
  --radius-lg:1.75rem;

  /* Shadows */
  --shadow-xs:0 1px 2px rgba(11,18,32,.06);
  --shadow-sm:0 4px 14px rgba(11,18,32,.07);
  --shadow:0 12px 32px rgba(11,18,32,.09);
  --shadow-lg:0 20px 48px rgba(11,18,32,.12);
}

/* ── Reset & base ── */
*{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;
  background:var(--soft);
  color:var(--text);
  font-family:'Inter',ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
a{color:inherit;text-decoration:none}
img,iframe{max-width:100%;display:block}

.site-bg{
  position:fixed;inset:0;z-index:-1;pointer-events:none;
  background:
    radial-gradient(60rem 40rem at 100% -10%, rgba(29,78,216,.05), transparent 60%),
    radial-gradient(60rem 40rem at -10% 30%, rgba(14,116,144,.04), transparent 60%);
}
.site-wrap, .site, .booking-page-main{min-height:100vh;background:var(--soft);color:var(--text)}

/* ── Section ── */
.section{
  max-width:1200px;
  margin:0 auto;
  padding:clamp(3rem,6vw,5rem) clamp(1rem,3vw,1.5rem);
}
.section-center{max-width:760px;margin:0 auto;text-align:center}
.section-center.wide{max-width:980px}

/* ── Typography ── */
.section-center h1, .section-center h2, .hero h1,
.card h1, .card h2, .card h3,
.booking-form h3, .quote-form-wrap h2,
.entry-content h1, .entry-content h2, .entry-content h3{
  margin:0;
  color:var(--text);
  letter-spacing:-.025em;
  font-weight:800;
  line-height:1.15;
}
.hero h1, .service-seo-hero h1{font-size:clamp(2.25rem,5vw,3.75rem);line-height:1.08}
.section-center h1{font-size:clamp(2rem,4.5vw,3rem)}
.section-center h2{font-size:clamp(1.65rem,3.2vw,2.25rem)}
.section-center p, .hero-copy, .card p, .service-card p,
.quote-form-wrap p, .local-seo p, .entry-content p{
  color:var(--text-2);
  font-size:1.05rem;
  line-height:1.7;
  margin:.85rem auto 0;
}
.entry-content{color:var(--text-2);line-height:1.75}

/* ── Badge ── */
.badge{
  display:inline-flex;align-items:center;gap:.45rem;
  margin-bottom:1rem;
  border:1px solid var(--border);
  border-radius:9999px;
  background:var(--card);
  padding:.45rem .9rem;
  color:#1e293b;
  font-weight:700;font-size:.78rem;
  letter-spacing:.04em;text-transform:uppercase;
  box-shadow:var(--shadow-xs);
}
.badge.dark, .dark-card .badge, .reviews-panel .badge,
.contact-info .badge, .map-card .badge{
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.1);
  color:#fff;
  backdrop-filter:blur(6px);
}

/* ── Icons ── */
.icon{width:1.1rem;height:1.1rem;flex:0 0 auto;stroke:currentColor;fill:none;stroke-width:2}
.icon.small{width:.95rem;height:.95rem}
.icon.tiny{width:.85rem;height:.85rem;color:var(--amber)}
.icon.lg{width:1.75rem;height:1.75rem}
.icon.xl{width:2.5rem;height:2.5rem;stroke-width:1.5}
.icon.fill{fill:currentColor}

/* ── Buttons ── */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  border:0;border-radius:9999px;
  padding:.85rem 1.5rem;
  font-weight:700;font-size:.92rem;cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  line-height:1.1;white-space:nowrap;font-family:inherit;
  text-decoration:none;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:var(--blue);color:#fff;
  box-shadow:0 8px 18px rgba(29,78,216,.28);
}
.btn-primary:hover{background:var(--blue-700);box-shadow:0 12px 24px rgba(29,78,216,.35)}
.btn-secondary{
  background:var(--card);color:var(--text);
  border:1px solid var(--border-strong);
}
.btn-secondary:hover{border-color:#94a3b8;background:#f8fafc}
.btn-dark{background:var(--navy);color:#fff}
.btn-dark:hover{background:#1e293b}
.btn-orange{background:var(--orange);color:#fff;box-shadow:0 8px 18px rgba(194,65,12,.3)}
.btn-orange:hover{background:#9a3412}
.btn-ghost{
  background:rgba(255,255,255,.12);
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
}
.btn.small{padding:.55rem .9rem;font-size:.82rem}
.btn.full{width:100%}
.cta-row{display:flex;gap:.75rem;align-items:center;justify-content:center;flex-wrap:wrap}

/* ── Card ── */
.card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--card);
  box-shadow:var(--shadow-xs);
  color:var(--text);
}
.card.padded{padding:clamp(1.5rem,3vw,2.25rem)}
.card.no-pad{overflow:hidden}

/* ── HEADER ── */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(255,255,255,.92);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}
.nav-shell{
  max-width:1200px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  gap:1.5rem;
  padding:.85rem clamp(1rem,3vw,1.5rem);
  position:relative;
}
.brand{display:flex;align-items:center;gap:.7rem;min-width:0}
.brand-logo{
  width:2.85rem;height:2.85rem;
  border-radius:.75rem;
  object-fit:cover;
  background:#fff;
  border:1px solid var(--border);
  flex:0 0 auto;
}
.brand-logo.small{width:2.4rem;height:2.4rem}
.brand-mark{
  display:grid;place-items:center;
  width:2.85rem;height:2.85rem;
  border-radius:.75rem;
  background:var(--navy);
  color:#fff;flex:0 0 auto;
  font-weight:800;font-size:.95rem;
}
.brand-mark.small{width:2.4rem;height:2.4rem}
.brand strong{
  display:block;color:var(--text);
  font-size:1.05rem;font-weight:800;
  letter-spacing:-.02em;line-height:1.15;
}
.brand small{
  display:block;color:var(--text-muted);
  font-size:.7rem;font-weight:600;
  text-transform:uppercase;letter-spacing:.06em;margin-top:.05rem;
}
.nav-links, .mobile-menu-links{
  display:flex;align-items:center;gap:.25rem;
  list-style:none;margin:0;padding:0;
}
.nav-links li, .mobile-menu-links li{display:contents}

/* Menu links — both standalone and inside dropdown parents */
.nav-links a, .nav-links .menu-link{
  display:inline-flex;align-items:center;gap:.3rem;
  color:#334155;font-weight:600;font-size:.88rem;
  padding:.5rem .8rem;border-radius:.6rem;
  text-decoration:none;
  transition:background .12s, color .12s;
  white-space:nowrap;
}
.nav-links a:hover, .nav-links .menu-link:hover,
.nav-links a.current-menu-item, .nav-links a.current_page_item,
.nav-links .menu-link.current-menu-item, .nav-links .menu-link.current_page_item,
.nav-links .menu-item.current-menu-parent>.menu-link,
.nav-links .menu-item.current-menu-ancestor>.menu-link{
  background:var(--soft);color:var(--blue);
}

/* Dropdown parent */
.nav-links .menu-item-has-children{
  position:relative;
}
.nav-links .dropdown-arrow{
  display:inline-block;font-size:.7rem;line-height:1;
  margin-left:.1rem;opacity:.65;
  transition:transform .15s ease;
}
.nav-links .menu-item-has-children:hover .dropdown-arrow,
.nav-links .menu-item-has-children:focus-within .dropdown-arrow{
  transform:rotate(-180deg);opacity:1;
}

/* The dropdown panel itself */
.nav-links .sub-menu{
  position:absolute;top:100%;left:0;
  min-width:14rem;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:.85rem;
  box-shadow:var(--shadow-lg);
  padding:.4rem;
  display:flex;flex-direction:column;gap:.15rem;
  opacity:0;visibility:hidden;
  transform:translateY(.35rem);
  transition:opacity .15s, transform .15s, visibility .15s;
  z-index:50;
}
.nav-links .menu-item-has-children:hover>.sub-menu,
.nav-links .menu-item-has-children:focus-within>.sub-menu{
  opacity:1;visibility:visible;transform:translateY(0);
}
.nav-links .sub-menu .menu-link{
  padding:.55rem .85rem;
  border-radius:.55rem;
  font-size:.85rem;
  color:var(--text-2);
  white-space:nowrap;
}
.nav-links .sub-menu .menu-link:hover{
  background:var(--soft);color:var(--blue);
}

/* Mobile menu — keep dropdowns visible inline (no hover on touch) */
.mobile-menu .sub-menu{
  display:flex;flex-direction:column;
  margin:.25rem 0 .5rem .75rem;
  padding-left:.65rem;
  border-left:2px solid var(--border);
  gap:.1rem;
}
.mobile-menu .menu-item-has-children .menu-link .dropdown-arrow{display:none}

.header-book-btn{flex:0 0 auto;white-space:nowrap}

/* Mobile menu */
.mobile-menu-button{
  display:none;
  width:2.75rem;height:2.75rem;
  border:0;border-radius:.85rem;
  background:var(--card);
  color:var(--text);
  box-shadow:var(--shadow-xs);
  cursor:pointer;
  font-family:inherit;font-weight:800;
}
.mobile-menu{
  display:none;
  border-top:1px solid var(--border);
  background:var(--card);
  padding:1rem;
  box-shadow:var(--shadow);
}
.mobile-menu[hidden]{display:none}
.site-header.menu-open .mobile-menu{display:block}

/* Burger icon morphs subtly when open */
.site-header.menu-open .mobile-menu-button{
  background:var(--blue);color:#fff;
}

.mobile-menu-links{
  display:grid;gap:.25rem;
  max-width:1200px;margin:0 auto;
}
.mobile-menu-links a, .mobile-menu .menu-link{
  display:block;
  padding:.85rem 1rem;
  border-radius:.6rem;
  color:#334155;font-weight:700;font-size:.95rem;
  text-decoration:none;
  transition:background .12s, color .12s;
}
.mobile-menu-links a:hover, .mobile-menu .menu-link:hover{
  background:#eff6ff;color:var(--blue);
}
.mobile-menu .menu-item-has-children > .menu-link{
  font-weight:800;
}
.mobile-menu .menu-item-has-children > .menu-link .dropdown-arrow{display:none}

/* Sub-menu (dropdown children) inline indented under the parent */
.mobile-menu .sub-menu{
  display:flex;flex-direction:column;
  margin:.1rem 0 .4rem .75rem;
  padding-left:.65rem;
  border-left:2px solid var(--border);
  gap:.05rem;
}
.mobile-menu .sub-menu .menu-link{
  padding:.55rem .85rem;
  font-size:.88rem;font-weight:600;
  color:#475569;
}

/* Big action buttons at the bottom of the mobile menu */
.mobile-book-btn, .mobile-call-btn{
  display:flex;align-items:center;justify-content:center;
  width:100%;
  padding:.95rem 1rem;
  margin-top:.5rem;
  font-weight:700;font-size:.95rem;
  border-radius:9999px;
  text-decoration:none;
}
.mobile-book-btn{margin-top:1rem}

/* ── HERO ── */
.hero{text-align:center}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:.75rem;
  margin:2.5rem auto 0;
  max-width:780px;
}
.stat{padding:1rem 1.25rem;text-align:center}
.stat strong{
  display:block;
  font-size:1.85rem;line-height:1.1;
  font-weight:800;color:var(--text);
  letter-spacing:-.02em;
}
.stat span{
  display:block;margin-top:.3rem;
  color:var(--text-muted);
  font-size:.72rem;font-weight:700;
  text-transform:uppercase;letter-spacing:.07em;
}

/* ── Today card ── */
.today-card{
  margin:2rem auto 0;
  max-width:680px;
  border:1px solid #86efac;
  border-radius:var(--radius);
  background:#dcfce7;
  color:#14532d;
  padding:1rem 1.25rem;
  display:flex;align-items:center;gap:1rem;
  text-align:left;
  box-shadow:var(--shadow-xs);
}
.today-card .status-icon{
  display:grid;place-items:center;
  width:2.5rem;height:2.5rem;
  border-radius:.85rem;
  background:#15803d;color:#fff;
  flex-shrink:0;
}
.today-card .status-icon.closed{background:var(--orange)}
.today-card>div:nth-child(2){flex:1;min-width:0}
.today-card span{
  display:block;color:#15803d;
  font-weight:700;text-transform:uppercase;
  font-size:.7rem;letter-spacing:.08em;
}
.today-card strong{
  display:block;font-size:1.05rem;font-weight:800;
  color:#14532d;margin-top:.15rem;
}
.today-card p{
  margin:.15rem 0 0;font-size:.85rem;color:#166534;
}

/* ── Trust panel ── */
.dark-panel, .process-panel, .reviews-panel, .trust-panel{
  background:var(--navy);
  color:#fff;
  border-radius:var(--radius-lg);
}
.trust-panel{
  max-width:1100px;margin:3rem auto 0;
  display:grid;grid-template-columns:.85fr 1.15fr;gap:2rem;
  padding:2.5rem;
}
.trust-feature{text-align:center;display:grid;place-items:center}
.trust-feature h2{
  font-size:2rem;margin:.6rem 0 .25rem;
  color:#fff;font-weight:800;letter-spacing:-.02em;
}
.trust-feature p{
  color:var(--text-light-2);
  line-height:1.65;max-width:300px;font-size:.95rem;
}
.trust-list{display:grid;grid-template-columns:repeat(2,1fr);gap:.6rem}
.trust-list div{
  display:flex;gap:.6rem;align-items:flex-start;
  padding:.85rem 1rem;
  border-radius:.85rem;
  background:rgba(255,255,255,.08);
  font-weight:500;font-size:.88rem;line-height:1.4;color:#fff;
}
.trust-list div .icon{color:#4ade80;flex-shrink:0;margin-top:.1rem}

/* ── Trust strip ── */
.trust-strip{
  max-width:1200px;margin:0 auto;
  padding:0 clamp(1rem,3vw,1.5rem);
  display:grid;grid-template-columns:repeat(4,1fr);gap:.75rem;
}
.trust-strip div{
  display:flex;align-items:center;gap:.55rem;
  border-radius:var(--radius-sm);
  background:var(--card);
  border:1px solid var(--border);
  padding:.95rem 1.1rem;
  font-weight:700;font-size:.85rem;
  color:#1e293b;
  box-shadow:var(--shadow-xs);
}
.trust-strip div .icon{color:var(--blue);flex-shrink:0}
.trust-strip.warranty-strip{align-items:stretch}
.warranty-strip-card{
  display:flex;flex-direction:column;align-items:center;
  text-align:center;gap:.35rem;min-height:9rem;
  padding:1.25rem 1rem;
}
.warranty-strip-card strong{
  color:var(--text);font-size:.95rem;font-weight:800;
}
.warranty-strip-card span{
  color:var(--text-muted);font-size:.78rem;
  line-height:1.5;font-weight:500;text-transform:none;letter-spacing:0;
}

/* ── Cards grid ── */
.cards-grid{display:grid;gap:1rem;margin-top:2.5rem}
.service-grid{grid-template-columns:repeat(3,1fr)}

/* ── Service card ── */
.service-card{
  text-align:left;
  display:flex;flex-direction:column;
  padding:1.5rem;
  background:var(--card);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
  border-color:var(--border-strong);
}
.repair-img-icon{
  display:grid;place-items:center;
  background:var(--soft);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  width:5rem;height:5rem;
  overflow:hidden;
  margin-bottom:1rem;
}
.repair-img-icon img{width:90%;height:90%;object-fit:contain}
.repair-img-icon.large{width:5.5rem;height:5.5rem}
.repair-img-icon.mini{width:3rem;height:3rem;margin:0;border-radius:.6rem}
.repair-img-icon.small{width:4rem;height:4rem;border-radius:.85rem}
.repair-img-icon.hero-icon{width:7rem;height:7rem;margin:0 auto 1rem}

.service-card h3{
  font-size:1.15rem;margin:0 0 .5rem;
  font-weight:800;color:var(--text);
  letter-spacing:-.01em;
}
.service-card p{
  flex:1;color:var(--text-2);
  line-height:1.65;font-size:.9rem;margin:0 0 1rem;
}
.service-card a:not(.btn){
  color:var(--blue);font-weight:700;font-size:.88rem;
  display:inline-flex;align-items:center;gap:.3rem;
  margin-top:auto;
}
.service-card a:not(.btn):hover{text-decoration:underline}

/* ── Pills ── */
.pill-row{display:flex;flex-wrap:wrap;gap:.4rem;justify-content:center;margin:1rem 0}
.pill-row span{
  border-radius:9999px;
  background:#dbeafe;color:var(--blue-700);
  padding:.35rem .7rem;
  font-weight:700;font-size:.8rem;
}

/* ── Clean list ── */
.clean-list{list-style:none;padding:0;margin:1rem 0;display:grid;gap:.4rem;width:100%}
.clean-list li{
  display:flex;align-items:flex-start;gap:.55rem;
  border-radius:.75rem;
  background:var(--soft);
  border:1px solid var(--border);
  padding:.7rem .9rem;
  color:var(--text-2);font-weight:500;
  font-size:.9rem;text-align:left;
}
.seo-list li{min-height:2.75rem;align-items:center}

/* ── Urgent CTA ── */
.urgent-cta{
  max-width:1200px;margin:0 auto;
  padding:2rem clamp(1rem,3vw,1.5rem);
}
.urgent-cta>div, .urgent-cta{border-radius:var(--radius-lg)}
.urgent-cta{
  background:var(--navy);
  box-shadow:var(--shadow);
  padding:2.5rem clamp(1.5rem,3vw,3rem);
}
.urgent-cta h2{
  max-width:800px;margin:0 auto;
  font-size:clamp(1.5rem,2.8vw,2rem);
  font-weight:800;color:#fff;text-align:center;
  letter-spacing:-.02em;
}
.urgent-cta p{
  max-width:560px;margin:.6rem auto 1.5rem;
  color:var(--text-light-2);
  line-height:1.65;text-align:center;font-size:.98rem;
}

/* ── Fault & why grids ── */
.fault-grid, .why-grid, .steps-grid{display:grid;gap:.75rem;margin-top:2rem}
.fault-grid{grid-template-columns:repeat(3,1fr)}
.fault-grid div, .why-grid div{
  display:flex;gap:.6rem;align-items:flex-start;
  border-radius:var(--radius-sm);
  background:var(--card);
  border:1px solid var(--border);
  padding:1rem;
  font-weight:600;color:#1e293b;
  font-size:.9rem;line-height:1.5;
  box-shadow:var(--shadow-xs);
}
.center{text-align:center}

/* ── Process panel ── */
.process-panel{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.5rem;padding:2.5rem;text-align:center;
}
.process-panel span{
  display:grid;place-items:center;
  width:2.75rem;height:2.75rem;
  margin:0 auto 1rem;
  border-radius:.85rem;
  background:rgba(255,255,255,.12);
  color:#fff;font-size:1.1rem;font-weight:800;
}
.process-panel h3{font-size:1.05rem;color:#fff;margin:0 0 .4rem;font-weight:700}
.process-panel p{color:var(--text-light-2);line-height:1.6;font-size:.88rem;margin:0}

/* ── Why grid ── */
.why-grid{grid-template-columns:repeat(4,1fr)}
.why-grid div{
  align-items:center;justify-content:center;text-align:center;
  flex-direction:column;min-height:6rem;
}

/* ── Steps grid ── */
.steps-grid{grid-template-columns:repeat(4,1fr)}
.steps-grid div{
  border-radius:var(--radius);
  background:var(--card);
  border:1px solid var(--border);
  padding:1.4rem;text-align:center;
  box-shadow:var(--shadow-xs);
}
.steps-grid strong{
  display:grid;place-items:center;
  width:2.5rem;height:2.5rem;
  margin:0 auto 1rem;
  border-radius:.75rem;
  background:var(--blue);color:#fff;
  font-size:1rem;font-weight:800;
}

/* ── Mail panel ── */
.mail-panel{
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  background:var(--card);
  padding:2.5rem;
  box-shadow:var(--shadow-xs);
}

/* ── Pricing controls ── */
.pricing-controls{
  display:grid;grid-template-columns:1fr .8fr;
  gap:1rem;align-items:center;
  padding:1.5rem;margin-top:2rem;
}
.filter-buttons{display:flex;gap:.4rem;flex-wrap:wrap;justify-content:center}
.filter-buttons button{
  border:1px solid var(--border);
  border-radius:9999px;
  background:var(--card);color:#334155;
  font-weight:700;font-size:.85rem;
  padding:.55rem 1rem;cursor:pointer;
  font-family:inherit;
  transition:all .15s ease;
}
.filter-buttons button:hover{border-color:var(--blue);color:var(--blue)}
.filter-buttons button.active{
  background:var(--navy);color:#fff;border-color:var(--navy);
}
.search-box{position:relative;display:block}
.search-box svg{
  position:absolute;left:1rem;top:50%;
  transform:translateY(-50%);
  color:var(--text-muted);
}
.search-box input{
  width:100%;
  border:1px solid var(--border);
  border-radius:9999px;
  background:var(--card);
  padding:.85rem 1rem .85rem 2.75rem;
  font-weight:500;font-size:.92rem;
  font-family:inherit;outline:0;
  color:var(--text);
  transition:border-color .15s, box-shadow .15s;
}
.search-box input:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(29,78,216,.15);
}
.search-box input::placeholder{color:var(--text-muted)}

/* ── Price grid ── */
.price-grid{
  display:grid;grid-template-columns:repeat(2,1fr);
  gap:1rem;margin-top:1.5rem;
}
.price-card{display:flex;flex-direction:column;padding:1.5rem}
.price-card.highlight{
  background:var(--navy);color:#fff;border-color:var(--amber);
}
.price-card.hidden{display:none}
.price-card h3{
  text-align:left;font-size:1.2rem;
  margin:0 0 .5rem;font-weight:800;
  color:var(--text);letter-spacing:-.01em;
}
.price-card.highlight h3{color:#fff}
.price-card-note{
  margin:.25rem 0 1rem;
  padding:.6rem .85rem;
  background:var(--soft);
  border-left:3px solid var(--border-strong);
  border-radius:.4rem;
  color:var(--text-muted);
  font-size:.83rem;
  line-height:1.5;
  font-style:italic;
}
.price-row{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:1rem;align-items:center;
  border-top:1px solid var(--border);
  padding:.85rem 0;
}
.price-card.highlight .price-row{border-color:rgba(255,255,255,.1)}
.price-row strong{
  display:block;font-size:.92rem;
  font-weight:700;color:var(--text);
}
.price-card.highlight .price-row strong{color:#fff}
.price-row small{
  display:block;color:var(--text-muted);
  margin-top:.2rem;font-size:.78rem;
}
.price-card.highlight .price-row small{color:#cbd5e1}
.price-row b{
  border-radius:9999px;
  background:#dbeafe;color:var(--blue-700);
  padding:.3rem .7rem;
  font-size:.85rem;font-weight:800;
}
.price-card.highlight .price-row b{
  background:rgba(255,255,255,.15);color:#fff;
}
.price-card .btn{margin-top:1.25rem}

/* ── Popular repairs panel (highlighted on pricing page) ── */
.popular-repairs-panel{
  background:var(--card);
  color:var(--text);
  border:1px solid var(--border);
  grid-column:1/-1;
}
.popular-repairs-panel h2{color:var(--text)}
.popular-repairs-panel p{color:var(--text-2)}
.price-card-item-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;margin-top:1.5rem;
}
.popular-price-item{
  display:flex;flex-direction:column;align-items:center;
  text-align:center;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--card);
  padding:1.5rem 1.25rem;
  box-shadow:var(--shadow-xs);
  transition:transform .18s, box-shadow .18s, border-color .18s;
}
.popular-price-item:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
  border-color:var(--border-strong);
}
.popular-price-item strong{
  font-size:1rem;color:var(--text);
  font-weight:800;line-height:1.3;
  margin-top:.25rem;
}
.popular-price-item small{
  display:block;margin:.6rem 0;
  color:var(--text-2);
  font-size:.85rem;line-height:1.5;font-weight:500;
}
.popular-price-item b{
  display:inline-flex;
  margin:.4rem 0 1rem;
  border-radius:9999px;
  background:var(--blue);color:#fff;
  padding:.4rem .9rem;
  font-size:.92rem;font-weight:800;
}
.popular-price-item .btn{margin-top:auto;width:100%}
.home-popular{min-height:100%;gap:.35rem}
.home-popular .btn{margin-top:auto}

/* ── Booking shell ── */
.booking-shell{
  border-radius:var(--radius-lg);
  background:var(--navy);
  padding:clamp(1rem,2.5vw,1.75rem);
  box-shadow:var(--shadow);
}
.booking-shell>.section-center{
  background:var(--card);
  border-radius:var(--radius);
  padding:2rem 1.5rem 1rem;
  margin:0 auto;
}
.booking-shell>.section-center h2{font-size:1.65rem;color:var(--text)}
.booking-shell>.section-center p{font-size:.95rem;margin:.5rem auto 0;color:var(--text-2)}

.booking-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:1.5rem;
  margin-top:1.5rem;
  align-items:start;
}
.booking-aside{display:grid;gap:1rem}
.booking-aside .card{padding:1.5rem}
.booking-aside .card h3{
  font-size:1.05rem;font-weight:800;
  color:var(--text);margin:0 0 1rem;
  letter-spacing:-.01em;
}

/* Hours rows */
.hours-row{
  display:flex;justify-content:space-between;
  border-bottom:1px solid var(--border);
  padding:.65rem 0;
  font-weight:600;font-size:.9rem;
  color:var(--text-2);
}
.hours-row:last-child{border-bottom:0}
.hours-row strong{color:var(--text);font-weight:700}
.hours-row span{color:var(--green);font-weight:700}
.hours-row span.closed{color:var(--text-muted);font-weight:600}

/* Selected booking card */
.selected-booking-card{
  background:linear-gradient(135deg,var(--blue) 0%,var(--blue-700) 100%);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 16px 36px rgba(29,78,216,.28);
  padding:1.6rem;
}
.selected-booking-card span{
  color:#bfdbfe;font-size:.7rem;
  text-transform:uppercase;letter-spacing:.08em;font-weight:700;
}
.selected-booking-card h3{
  color:#fff;margin:.4rem 0 .5rem;
  font-size:1.2rem;font-weight:800;letter-spacing:-.01em;
}
.selected-booking-card p{
  color:#dbeafe;font-size:.88rem;
  line-height:1.6;margin:0 0 1rem;
}
.btn-selected-light{
  background:#fff;color:var(--blue-700);
  padding:.65rem 1rem;border-radius:9999px;
  font-weight:700;font-size:.85rem;
  display:inline-flex;align-items:center;justify-content:center;
  transition:transform .15s;text-decoration:none;
}
.btn-selected-light:hover{transform:translateY(-2px)}
.btn-selected-cyan{
  background:rgba(255,255,255,.18);color:#fff;
  padding:.65rem 1rem;border-radius:9999px;
  font-weight:700;font-size:.85rem;
  display:inline-flex;align-items:center;justify-content:center;
  backdrop-filter:blur(6px);
  transition:transform .15s, background .15s;
  text-decoration:none;
}
.btn-selected-cyan:hover{transform:translateY(-2px);background:rgba(255,255,255,.28)}

/* ── Booking form ── */
.booking-form, .booking-form.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:clamp(1.5rem,3vw,2.25rem);
  box-shadow:var(--shadow-xs);
  position:relative;z-index:2;
}
.booking-form h3{
  margin:1.75rem 0 .85rem;
  font-size:1.1rem;font-weight:800;
  color:var(--text);letter-spacing:-.01em;
}
.booking-form h3:first-child{margin-top:0}

/* Day picker */
.booking-days{
  display:grid;grid-template-columns:repeat(7,1fr);gap:.5rem;
}
.booking-day{
  border:1px solid var(--border);
  border-radius:.75rem;
  background:var(--card);
  color:var(--text);
  cursor:pointer;
  font-weight:700;font-family:inherit;
  transition:all .12s;
  padding:.7rem .35rem;
  text-align:center;min-height:5rem;
  display:flex;flex-direction:column;justify-content:center;
}
.booking-day:hover{border-color:var(--blue);background:#eff6ff}
.booking-day.active{
  border-color:var(--blue);background:var(--blue);color:#fff;
  box-shadow:0 6px 14px rgba(29,78,216,.28);
}
.booking-day.closed{
  background:#f3f4f6;color:var(--text-muted);
  border-color:var(--border);cursor:not-allowed;opacity:.7;
}
.booking-day.closed:hover{background:#f3f4f6;border-color:var(--border)}
.booking-day .day{
  font-size:.65rem;text-transform:uppercase;
  letter-spacing:.05em;display:block;
  opacity:.75;font-weight:700;
}
.booking-day .num{
  font-size:1.4rem;font-weight:800;
  display:block;margin:.15rem 0;line-height:1;
}
.booking-day .month, .booking-day .closed-label{
  font-size:.68rem;display:block;
  opacity:.75;font-weight:600;
}
.booking-day .closed-label{
  font-weight:700;text-transform:uppercase;
  letter-spacing:.05em;margin-top:.25rem;
}
.booking-day.active .day, .booking-day.active .month{opacity:.9}

/* Time slots */
.booking-slots{display:grid;grid-template-columns:repeat(3,1fr);gap:.5rem;align-items:stretch}
.slot-button{
  border:1px solid var(--border);
  border-radius:.75rem;
  background:var(--card);
  color:var(--text);
  cursor:pointer;
  font-weight:700;font-family:inherit;
  transition:all .12s;
  padding:.85rem .5rem;
  font-size:.9rem;min-height:3.25rem;
  display:flex;align-items:center;justify-content:center;
}
.slot-button:hover{border-color:var(--blue);background:#eff6ff}
.slot-button.active{
  border-color:var(--green);background:var(--green);color:#fff;
  box-shadow:0 6px 14px rgba(21,128,61,.28);
}
.slot-button.booked, .slot-button:disabled{
  cursor:not-allowed;
  background:#f3f4f6;color:var(--text-muted);
  border-color:var(--border);
  text-decoration:line-through;opacity:.85;
}
.slot-button.booked:hover{background:#f3f4f6;border-color:var(--border)}
.slot-loading, .slot-closed{
  grid-column:1/-1;
  border-radius:.85rem;
  background:#fef3c7;color:#78350f;
  padding:1rem;text-align:center;font-weight:700;
  border:1px solid #fcd34d;
}

/* Form fields */
.form-grid{
  display:grid;grid-template-columns:repeat(2,1fr);
  gap:1rem;margin-bottom:1rem;
}
.booking-form label, .quote-form label{
  display:grid;gap:.4rem;
  font-weight:600;font-size:.85rem;
  color:var(--text-2);
}
.booking-form input, .booking-form select, .booking-form textarea,
.quote-form input, .quote-form select, .quote-form textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:.75rem;
  background:var(--card);
  padding:.85rem 1rem;
  font:inherit;font-size:16px;font-weight:500;
  color:var(--text);
  outline:0;
  transition:border-color .15s, box-shadow .15s;
}
.booking-form textarea, .quote-form textarea{min-height:7rem;resize:vertical}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus,
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(29,78,216,.15);
}
.booking-form input::placeholder, .booking-form textarea::placeholder,
.quote-form input::placeholder, .quote-form textarea::placeholder{
  color:var(--text-muted);
}
.uppercase{text-transform:uppercase}
.honeypot{position:absolute !important;left:-99999px !important}
.form-note{
  color:var(--text-muted);
  text-align:center;font-weight:500;
  font-size:.85rem;line-height:1.55;margin-top:.85rem;
}
.form-message{
  max-width:900px;margin:1.25rem auto 0;
  border-radius:.85rem;padding:1rem 1.25rem;
  text-align:center;font-weight:700;
  font-size:.92rem;border:1px solid transparent;
}
.form-message.success{background:#dcfce7;color:#14532d;border-color:#86efac}
.form-message.warning{background:#fef3c7;color:#78350f;border-color:#fcd34d}

/* ── FAQ ── */
.faq-wrap{
  max-width:820px;margin:2rem auto 0;
  display:grid;gap:.6rem;
}
.faq-item{
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  background:var(--card);
  transition:border-color .15s, box-shadow .15s;
}
.faq-item:hover{border-color:var(--border-strong);box-shadow:var(--shadow-xs)}
.faq-question{
  width:100%;
  display:flex;justify-content:space-between;gap:1rem;
  border:0;background:transparent;
  text-align:left;
  padding:1.1rem 1.25rem;
  font-weight:800;font-size:.98rem;
  color:var(--text);
  cursor:pointer;
  font-family:inherit;
  letter-spacing:-.005em;
}
.faq-question span{
  display:grid;place-items:center;
  width:1.85rem;height:1.85rem;
  border-radius:9999px;
  background:#dbeafe;color:var(--blue-700);
  font-size:.95rem;flex-shrink:0;
  font-weight:800;
}
.faq-question[aria-expanded="true"] span{
  background:var(--blue);color:#fff;
}
.faq-answer{
  padding:0 1.25rem 1.1rem;
  color:var(--text-2);
  line-height:1.65;font-size:.92rem;
}

/* ── Reviews ── */
.reviews-panel{padding:2.5rem}
.reviews-panel .section-center h2{color:#fff}
.reviews-panel .section-center p{color:var(--text-light-2)}
.review-stats{
  display:grid;grid-template-columns:repeat(3,1fr);gap:.75rem;
  max-width:720px;margin:2rem auto;
}
.review-stats div{
  border-radius:var(--radius-sm);
  background:rgba(255,255,255,.1);
  padding:1.25rem;text-align:center;
}
.review-stats strong{display:block;font-size:1.85rem;font-weight:800;color:#fff}
.review-stats span{
  display:block;color:#fff;opacity:.75;
  font-weight:700;text-transform:uppercase;
  font-size:.7rem;letter-spacing:.07em;margin-top:.25rem;
}
.review-slider{
  max-width:680px;margin:2rem auto 0;
  background:var(--card);
  border-radius:var(--radius);
  padding:2rem;position:relative;text-align:center;
}
.review-slide{display:none}
.review-slide.active{display:block}
.stars{color:var(--amber);font-size:1.1rem;letter-spacing:2px}
.review-slide p{
  font-size:1.02rem;color:var(--text-2);
  line-height:1.7;margin:.75rem 0;font-style:italic;
}
.review-slide strong{display:block;margin-top:.75rem;color:var(--text);font-weight:700}
.review-slide span{font-size:.85rem;color:var(--text-muted);font-weight:600}
.review-controls{display:flex;justify-content:center;gap:.5rem;margin-top:1rem}
.review-controls button{
  border:1px solid var(--border-strong);
  border-radius:9999px;background:var(--card);
  width:2.4rem;height:2.4rem;font-size:1.2rem;cursor:pointer;
  color:var(--text);font-family:inherit;
  transition:all .15s ease;
}
.review-controls button:hover{background:var(--soft)}

.home-review-card{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:2rem;align-items:center;
  padding:2.2rem;
}
.home-review-card h2{font-size:clamp(1.85rem,3.5vw,2.5rem);margin:.2rem 0}
.review-preview{
  border-radius:var(--radius);
  background:var(--soft);
  padding:1.75rem;text-align:center;
  border:1px solid var(--border);
}
.review-preview .stars{color:var(--amber);font-size:1.25rem;letter-spacing:.12em}
.review-preview p{font-size:1.05rem;line-height:1.7;color:var(--text-2);font-style:italic}
.review-preview strong{display:block;color:var(--text);font-weight:800;margin-top:1rem}
.review-preview span{display:block;color:var(--text-muted);font-weight:600;font-size:.9rem;margin-top:.25rem}

/* ── Map ── */
.map-grid{display:grid;grid-template-columns:1fr .85fr;gap:1.5rem}
.map-head{text-align:center;padding:1.75rem;border-bottom:1px solid var(--border)}
.map-head h2{font-size:1.85rem;margin:.4rem 0 .25rem;font-weight:800;letter-spacing:-.02em;color:var(--text)}
.map-head p{font-size:.92rem;color:var(--text-2);margin:0}
.map-grid iframe{display:block;width:100%;height:420px;border:0}
.map-card{
  display:flex;flex-direction:column;justify-content:center;
  padding:1.75rem;
  background:var(--navy);color:#fff;
  border-radius:var(--radius);
}
.map-card h3{font-size:1.15rem;margin:.5rem 0;font-weight:800;color:#fff}
.map-card p{color:var(--text-light-2);line-height:1.65;font-size:.92rem;margin-bottom:1.25rem}
.map-card .btn-secondary{background:rgba(255,255,255,.1);color:#fff;border-color:rgba(255,255,255,.18)}
.map-card .btn-secondary:hover{background:rgba(255,255,255,.18)}
.map-embed-card iframe{display:block;width:100%;height:420px;border:0}

/* ── Contact ── */
.contact-grid{
  display:grid;grid-template-columns:.85fr 1.15fr;
  overflow:hidden;
}
.contact-info{
  background:var(--navy);color:#fff;
  padding:2.5rem;text-align:center;
}
.contact-info h2, .contact-info h1{font-size:1.85rem;margin:.5rem 0;color:#fff;font-weight:800}
.contact-info p{color:var(--text-light-2);line-height:1.65;font-size:.95rem}
.contact-row{
  display:flex;gap:.85rem;text-align:left;
  background:rgba(255,255,255,.08);
  border-radius:.85rem;padding:.95rem 1.1rem;margin:.75rem 0;
  align-items:center;
}
.contact-row .icon{color:#bfdbfe;flex-shrink:0}
.contact-row strong{
  font-size:.7rem;color:#bfdbfe;
  text-transform:uppercase;letter-spacing:.07em;font-weight:700;display:block;
}
.contact-row span{
  font-size:.92rem;color:#fff;display:block;margin-top:.2rem;font-weight:500;
}
.hours-card{
  background:rgba(255,255,255,.08);
  border-radius:var(--radius-sm);
  padding:1rem 1.25rem;margin-top:1.25rem;
}
.hours-card div{
  display:flex;justify-content:space-between;
  background:transparent;color:#fff;
  padding:.45rem 0;font-size:.88rem;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.hours-card div:last-child{border-bottom:0}
.hours-card strong{color:#fff;font-weight:600}
.hours-card span{color:#86efac;font-weight:700}
.hours-card span.closed{color:#cbd5e1;font-weight:600}

/* ── Quote form ── */
.quote-form-wrap{padding:2.5rem;background:var(--card)}
.quote-form-wrap h2{text-align:center;font-size:1.85rem;font-weight:800;margin:0 0 .5rem;color:var(--text)}
.quote-form-wrap>p{text-align:center;color:var(--text-2);line-height:1.6;font-size:.95rem;margin:0 auto 1.5rem;max-width:520px}
.quote-form{display:grid;gap:.85rem}
.consent{
  display:flex !important;
  gap:.65rem !important;
  align-items:flex-start;
  border-radius:.85rem;
  background:#dbeafe;
  padding:.95rem 1.1rem;
  font-size:.85rem;
  border:1px solid #93c5fd;
  color:var(--text);font-weight:500;
}
.consent input{width:auto;margin-top:.15rem}

/* ── Local SEO ── */
.local-seo{text-align:center}
.local-seo p{color:var(--text-2)}
.area-tags{display:flex;flex-wrap:wrap;justify-content:center;gap:.5rem;margin-top:1.25rem}
.area-tags span{
  border-radius:9999px;
  background:#dbeafe;color:var(--blue-700);
  padding:.45rem .9rem;
  font-weight:700;font-size:.83rem;
}

/* ── SEO service pages ── */
.seo-hero-card{background:var(--card)}
.seo-highlights{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1rem;margin-top:2.25rem;
}
.seo-highlights div{
  border-radius:var(--radius-sm);
  background:var(--card);
  padding:1.2rem;text-align:center;
  box-shadow:var(--shadow-xs);
  border:1px solid var(--border);
}
.seo-highlights strong{display:block;color:var(--text);font-size:1.05rem;font-weight:800;line-height:1.3}
.seo-highlights span{
  display:block;margin-top:.35rem;
  color:var(--text-muted);font-size:.78rem;
  text-transform:uppercase;letter-spacing:.05em;font-weight:700;
}
.seo-two-col{
  display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;
}
.seo-two-col .card h2{
  margin-top:.25rem;color:var(--text);
  font-size:1.85rem;line-height:1.15;
}
.seo-dark-cta{
  padding:2.4rem;
  display:flex;align-items:center;justify-content:space-between;gap:2rem;
}
.seo-dark-cta h2{margin:.35rem 0;color:#fff;font-size:2rem;line-height:1.1}
.seo-dark-cta p{margin:.5rem 0 0;color:var(--text-light-2);line-height:1.7;max-width:680px}
.seo-related-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1rem;margin-top:2rem;
}
.seo-related-card{
  display:flex !important;flex-direction:column;gap:.35rem;
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  background:var(--card);
  padding:1.25rem;text-align:left;
  transition:transform .15s ease, border-color .15s, box-shadow .15s;
  min-height:6rem;align-items:flex-start;
}
.seo-related-card:hover{
  transform:translateY(-3px);
  border-color:var(--blue);
  box-shadow:var(--shadow);
}
.seo-related-card strong{color:var(--text);font-size:1rem;line-height:1.3;font-weight:800}
.seo-related-card span{color:var(--blue);font-weight:700;font-size:.88rem}
.seo-faq{margin-top:2rem}

/* ── Warranty ── */
.warranty-grid, .warranty-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:1.5rem;margin-top:2.5rem;
}
.warranty-dark{
  border-radius:var(--radius);
  background:var(--navy);color:#fff;
  text-align:center;padding:2rem;
}
.warranty-dark h2, .warranty-dark h3{color:#fff;font-size:1.85rem;margin:.5rem 0}
.warranty-dark p{color:var(--text-light-2);line-height:1.7}
.warranty-icon{
  display:grid;place-items:center;
  width:3.5rem;height:3.5rem;margin:0 auto;
  border-radius:.85rem;
  background:rgba(255,255,255,.12);color:#fbbf24;
}
.warranty-mini, .notice-box{
  margin-top:1rem;
  border-radius:.85rem;
  background:rgba(255,255,255,.08);
  padding:1rem;text-align:left;color:#fff;
}
.warranty-mini strong{display:block;color:#bfdbfe;font-weight:700}
.warranty-mini span{display:block;color:var(--text-light-2);margin-top:.25rem;font-weight:500}
.warranty-log{
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--card);
  box-shadow:var(--shadow-xs);
}
.warranty-log-head{
  text-align:center;
  border-bottom:1px solid var(--border);
  padding:1.5rem;
}
.warranty-log-head span{
  color:var(--blue);font-size:.78rem;
  text-transform:uppercase;letter-spacing:.1em;font-weight:800;
}
.warranty-log-head h3{margin:.25rem 0 0;color:var(--text)}
.warranty-log-row{
  display:grid;grid-template-columns:.8fr 1.2fr;gap:1rem;
  border-bottom:1px solid var(--border);
  padding:1rem 1.25rem;
}
.warranty-log-row:last-child{border-bottom:0}
.warranty-log-row strong{color:var(--text);font-weight:700}
.warranty-log-row span{color:var(--text-2);font-weight:500;line-height:1.6}
.warranty-cards{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;
  margin-top:1.5rem;
}
.mini-card{text-align:center}
.mini-card .icon{color:var(--blue)}

/* ── Repair scope ── */
.repair-scope-grid{
  display:grid;grid-template-columns:repeat(2,1fr);
  gap:1.25rem;margin-top:2rem;
}
.scope-card{
  border-radius:var(--radius);
  background:var(--card);
  border:1px solid var(--border);
  padding:1.5rem;
  box-shadow:var(--shadow-xs);
}
.scope-card h3{margin-top:0;font-size:1.25rem;color:var(--text)}
.scope-card p{
  display:flex;gap:.55rem;align-items:flex-start;
  font-weight:500;color:var(--text-2);
}

/* ── Split CTA ── */
.split-cta{
  display:flex;align-items:center;justify-content:space-between;
  gap:2rem;padding:2.4rem;
}
.split-cta h2{margin:.25rem 0;color:#fff;font-size:2rem}
.split-cta p{color:var(--text-light-2);max-width:600px;line-height:1.65}

/* Misc helpers */
.mt-lg{margin-top:2rem}
.compact-trust{margin-top:3rem}
.clean-strip div{display:grid;text-align:center;align-content:start}
.clean-strip strong{display:block;color:var(--text)}
.clean-strip span{display:block;color:var(--text-muted);font-size:.78rem;line-height:1.45}

/* ── Helper modifier classes (used alongside core classes in templates) ── */
.bg-glow, .home-hero, .booking-hero, .booking-section,
.most-requested-section, .standalone-booking, .v120-home{
  /* Modifier classes — no extra styling needed, base classes handle layout */
}

/* ── Booking page hero (heading + subtitle + notice + buttons) ── */
.booking-hero .section-center{
  max-width:760px;
  margin:0 auto;
}
.booking-hero h1{
  font-size:clamp(2.1rem, 4vw, 3rem);
  line-height:1.1;
  letter-spacing:-.025em;
  margin:.5rem 0 .85rem;
}
.booking-hero h1 + p{
  font-size:1.08rem;
  color:var(--text-2);
  line-height:1.6;
  max-width:560px;
  margin:0 auto;
}

/* The amber notice callout */
.booking-notice{
  margin:1.5rem auto 1.5rem;
  max-width:640px;
  background:#fffbeb;
  border:1px solid #fcd34d;
  border-left:4px solid #f59e0b;
  border-radius:.75rem;
  padding:1rem 1.15rem 1rem 3rem;
  font-size:.94rem;
  line-height:1.6;
  color:#78350f;
  text-align:left;
  position:relative;
}
.booking-notice::before{
  content:"!";
  position:absolute;
  left:1rem;
  top:1.05rem;
  width:1.4rem;height:1.4rem;
  background:#f59e0b;color:#fff;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:.85rem;font-family:Georgia,serif;
  line-height:1;
}
.booking-notice strong{
  color:#451a03;
  display:inline;
}
@media (max-width:520px){
  .booking-notice{
    padding:1rem 1rem 1rem 2.75rem;
    font-size:.9rem;
  }
  .booking-notice::before{
    left:.85rem;top:1rem;
    width:1.25rem;height:1.25rem;font-size:.78rem;
  }
}

/* Tighten the CTA row on booking hero */
.booking-hero .cta-row{
  margin-top:1rem;
  justify-content:center;
}

.most-grid{grid-template-columns:repeat(3,1fr)}
@media (max-width:1100px){
  .most-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:680px){
  .most-grid{grid-template-columns:1fr}
}

/* Warranty head */
.warranty-head{
  display:grid;place-items:center;
  margin-bottom:1.25rem;
}
.warranty-head .icon{
  width:3rem;height:3rem;
  background:rgba(255,255,255,.12);
  color:#fbbf24;
  border-radius:.85rem;padding:.6rem;
}

/* Notice variants */
.notice-success{
  background:#dcfce7;color:#14532d;
  border:1px solid #86efac;
  border-radius:.85rem;padding:1rem 1.25rem;
  font-weight:600;
}
.notice-box{
  margin-top:1rem;
  border-radius:.85rem;
  background:rgba(255,255,255,.08);
  padding:1rem;text-align:left;color:#fff;
}

/* Striped helper for tables */
.striped tr:nth-child(even){background:var(--soft)}

/* Generic 2/3-column helpers */
.two{grid-template-columns:repeat(2,1fr)}
.three{grid-template-columns:repeat(3,1fr)}
.one{grid-template-columns:1fr}

/* Generic .button used in some forms */
.button, .button-secondary{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  border:0;border-radius:9999px;
  padding:.85rem 1.5rem;
  font-weight:700;font-size:.92rem;cursor:pointer;
  font-family:inherit;text-decoration:none;
  transition:transform .15s, background .15s;
}
.button{background:var(--blue);color:#fff}
.button:hover{background:var(--blue-700);transform:translateY(-2px)}
.button-secondary{background:var(--card);color:var(--text);border:1px solid var(--border-strong)}
.button-secondary:hover{border-color:#94a3b8;transform:translateY(-2px)}

/* Status icon variant for closed */
.status-icon{
  display:grid;place-items:center;
  width:2.5rem;height:2.5rem;
  border-radius:.85rem;
  background:#15803d;color:#fff;flex-shrink:0;
}
.status-icon.closed{background:var(--orange)}

/* ── Trust badges row (above footer) ── */
.trust-badges-row{
  background:linear-gradient(135deg, #0b1220 0%, #1e293b 100%);
  padding:1.5rem clamp(1rem,3vw,1.5rem);
  border-top:1px solid var(--border);
}
.trust-badges-inner{
  max-width:1200px;margin:0 auto;
  display:flex;justify-content:center;
  flex-wrap:wrap;gap:1rem 2rem;
  align-items:center;
}
.trust-badge{
  display:inline-flex;align-items:center;gap:.6rem;
  color:#f8fafc;
  font-size:.92rem;font-weight:600;
  letter-spacing:.01em;
  white-space:nowrap;
}
.trust-badge .icon{
  color:#fbbf24;
  flex-shrink:0;
}
@media (max-width:680px){
  .trust-badges-row{padding:1.25rem 1rem}
  .trust-badges-inner{gap:.65rem 1.25rem;justify-content:flex-start}
  .trust-badge{font-size:.82rem}
  .trust-badge .icon{width:1rem;height:1rem}
}

/* ── Footer ── */
.site-footer{
  background:var(--card);
  border-top:1px solid var(--border);
  padding:3rem clamp(1rem,3vw,1.5rem) 2rem;
}
.footer-grid{
  max-width:1200px;margin:0 auto;
  display:grid;grid-template-columns:1.4fr .8fr .8fr 1fr;gap:2rem;
}
.footer-grid h3{
  margin:0 0 .85rem;font-size:.78rem;font-weight:800;
  color:var(--text);text-transform:uppercase;letter-spacing:.07em;
}
.footer-grid a, .footer-grid span{
  display:block;margin:.4rem 0;
  color:var(--text-2);font-weight:500;font-size:.9rem;
  transition:color .12s;
}
.footer-grid a:hover{color:var(--blue)}
.footer-grid p{color:var(--text-2);line-height:1.65;font-size:.9rem;margin:.85rem 0 0}
.footer-grid .brand{margin-bottom:0}
.footer-policy-link{
  margin-top:.85rem !important;
  padding-top:.85rem;
  border-top:1px solid var(--border);
  font-weight:600 !important;
  color:var(--blue) !important;
}
.footer-policy-link:hover{color:var(--orange) !important}
.footer-bottom{
  max-width:1200px;margin:2rem auto 0;
  padding-top:1.25rem;border-top:1px solid var(--border);
  display:flex;justify-content:space-between;gap:1rem;
  color:var(--text-muted);
  font-weight:500;font-size:.83rem;flex-wrap:wrap;
}

/* ── Sticky bars ── */
.desktop-sticky{
  position:fixed;right:1.25rem;bottom:1.25rem;z-index:60;
  display:grid;gap:.45rem;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:rgba(255,255,255,.97);
  padding:.65rem;
  box-shadow:var(--shadow-lg);
  backdrop-filter:blur(14px);
}
.mobile-sticky{display:none}
.hidden{display:none !important}

/* ── Responsive ── */
@media (max-width:1100px){
  .nav-links{display:none}
  .mobile-menu-button{display:grid;place-items:center}
  .header-book-btn{display:none}
  .service-grid, .fault-grid, .why-grid, .steps-grid,
  .review-stats, .seo-highlights, .seo-related-grid,
  .price-card-item-grid, .warranty-cards{grid-template-columns:repeat(2,1fr)}
  .booking-grid, .map-grid, .contact-grid, .trust-panel,
  .seo-two-col, .warranty-grid, .warranty-layout, .home-review-card,
  .repair-scope-grid{grid-template-columns:1fr}
  .pricing-controls, .price-grid{grid-template-columns:1fr}
  .booking-days{grid-template-columns:repeat(4,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .process-panel{grid-template-columns:repeat(2,1fr)}
  .seo-dark-cta, .split-cta{flex-direction:column;text-align:center}
  .seo-dark-cta .cta-row, .split-cta .btn{margin-top:1rem}
}
@media (max-width:680px){
  .section{padding:3rem 1rem}
  .stats-grid, .trust-strip, .trust-list, .service-grid,
  .price-card-item-grid, .fault-grid, .why-grid, .steps-grid,
  .process-panel, .review-stats, .form-grid, .booking-slots,
  .footer-grid, .seo-highlights, .seo-related-grid, .warranty-cards{
    grid-template-columns:1fr;
  }
  .booking-days{grid-template-columns:repeat(3,1fr)}
  .today-card{flex-direction:column;text-align:center}
  .process-panel, .reviews-panel, .booking-shell,
  .card.padded, .quote-form-wrap, .contact-info{padding:1.5rem}
  .booking-form{padding:1.25rem}
  .footer-bottom{flex-direction:column;text-align:center}
  .desktop-sticky{display:none}
  .mobile-sticky{
    position:fixed;left:.65rem;right:.65rem;bottom:.65rem;z-index:80;
    display:grid;grid-template-columns:repeat(3,1fr);gap:.4rem;
    border:1px solid var(--border);border-radius:var(--radius);
    background:rgba(255,255,255,.97);padding:.45rem;
    box-shadow:var(--shadow-lg);backdrop-filter:blur(14px);
  }
  .mobile-sticky a{
    display:flex;align-items:center;justify-content:center;gap:.3rem;
    border-radius:.75rem;background:var(--navy);color:#fff;
    padding:.75rem .5rem;font-size:.78rem;font-weight:700;
    text-decoration:none;
  }
  .mobile-sticky a:nth-child(2){background:var(--blue)}
  .mobile-sticky a:nth-child(3){background:var(--orange)}
  body{padding-bottom:5rem}
  .booking-shell>.section-center{padding:1.5rem 1rem 1rem}
  .booking-aside .card{padding:1.25rem}
  .repair-scope-grid{grid-template-columns:1fr}
}

/* ============================================================
   WOOCOMMERCE — shop styling that matches the rest of the theme
   ============================================================ */

/* Shop section wrapper */
.deans-shop .shop-section{padding:clamp(2rem,4vw,3rem) clamp(1rem,3vw,1.5rem)}
.deans-shop .shop-inner{max-width:1200px;margin:0 auto}

/* Page title */
.woocommerce-products-header__title,
.deans-shop .entry-title,
.deans-shop h1.product_title,
.woocommerce h1.page-title{
  font-size:clamp(1.85rem,3.5vw,2.6rem);
  font-weight:800;color:var(--text);
  letter-spacing:-.025em;line-height:1.15;
  margin:0 0 .75rem;
}

/* Breadcrumbs */
.woocommerce-breadcrumb{
  font-size:.85rem;color:var(--text-muted);
  margin-bottom:1rem;font-weight:500;
}
.woocommerce-breadcrumb a{
  color:var(--blue);font-weight:600;
}
.woocommerce-breadcrumb a:hover{text-decoration:underline}

/* "Showing 1-12 of 14 results" */
.woocommerce-result-count{
  color:var(--text-muted);
  font-size:.88rem;font-weight:600;
  margin:.5rem 0;
}

/* Sort dropdown */
.woocommerce-ordering{margin:.5rem 0 1.5rem}
.woocommerce-ordering select{
  border:1px solid var(--border);
  border-radius:9999px;
  background:var(--card);
  padding:.6rem 2.5rem .6rem 1rem;
  font-family:inherit;font-weight:600;font-size:.88rem;
  color:var(--text);cursor:pointer;
  appearance:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231f2937' stroke-width='3' stroke-linecap='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat:no-repeat;
  background-position:right 1rem center;
}
.woocommerce-ordering select:focus{
  outline:0;border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(29,78,216,.15);
}

/* ── PRODUCT GRID ── */
.woocommerce ul.products{
  display:grid !important;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
  list-style:none;margin:1.5rem 0 !important;padding:0 !important;
}
.woocommerce ul.products::before, .woocommerce ul.products::after{display:none}
.woocommerce ul.products li.product{
  width:auto !important;float:none !important;
  margin:0 !important;padding:0 !important;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow-xs);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s;
  display:flex;flex-direction:column;
  overflow:hidden;
}
.woocommerce ul.products li.product:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
  border-color:var(--border-strong);
}
.woocommerce ul.products li.product a{
  text-decoration:none;color:inherit;
}
/* Product image */
.woocommerce ul.products li.product img,
.woocommerce ul.products li.product .attachment-woocommerce_thumbnail{
  width:100% !important;
  height:auto;
  display:block;
  margin:0 !important;
  background:var(--soft);
  aspect-ratio:1;
  object-fit:contain;
  padding:.75rem;
}
/* Category label above title (WooCommerce often shows this) */
.woocommerce ul.products li.product .category{
  display:block;
  padding:1rem 1.25rem 0;
  font-size:.7rem;font-weight:700;
  color:var(--text-muted);
  text-transform:uppercase;letter-spacing:.06em;
}
/* Product title */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product h3{
  font-size:1rem !important;
  font-weight:800 !important;
  color:var(--text) !important;
  padding:.85rem 1.25rem .25rem !important;
  margin:0 !important;
  line-height:1.3 !important;
  letter-spacing:-.01em;
}
/* Price */
.woocommerce ul.products li.product .price{
  display:block;
  padding:0 1.25rem .85rem;
  margin:0 !important;
  font-size:1rem !important;
  color:var(--blue-700) !important;
  font-weight:800 !important;
}
.woocommerce ul.products li.product .price del{
  color:var(--text-muted) !important;
  font-weight:600;opacity:.7;
  font-size:.85rem;margin-right:.4rem;
}
.woocommerce ul.products li.product .price ins{
  background:transparent !important;
  color:var(--orange) !important;
  text-decoration:none;
}
/* Star rating on cards */
.woocommerce ul.products li.product .star-rating{
  margin:.25rem 1.25rem .5rem !important;
  color:var(--amber);
  font-size:.85rem;
}
/* Sale/onsale tag */
.woocommerce span.onsale{
  background:var(--orange) !important;
  color:#fff !important;
  border-radius:9999px !important;
  padding:.25rem .7rem !important;
  font-size:.7rem !important;
  font-weight:800 !important;
  text-transform:uppercase;letter-spacing:.04em;
  position:absolute !important;
  top:.85rem !important; right:.85rem !important;
  margin:0 !important;
  min-height:0 !important;min-width:0 !important;line-height:1.4 !important;
}
/* Add to basket button on cards */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product .added_to_cart{
  margin:auto 1.25rem 1.25rem !important;
  background:var(--blue) !important;
  color:#fff !important;
  border-radius:9999px !important;
  padding:.7rem 1rem !important;
  font-weight:700 !important;font-size:.85rem !important;
  text-align:center;
  transition:background .15s, transform .15s;
  border:0 !important;
  display:block;
  text-decoration:none !important;
}
.woocommerce ul.products li.product .button:hover{
  background:var(--blue-700) !important;
  transform:translateY(-2px);
}
.woocommerce ul.products li.product .added_to_cart{
  background:var(--green) !important;
}

/* ── PRODUCT CATEGORIES (e.g. /repair-center/) ── */
.woocommerce ul.products li.product-category a{
  display:flex;flex-direction:column;
  height:100%;
}
.woocommerce ul.products li.product-category h2,
.woocommerce ul.products li.product-category h3{
  text-align:center;
  padding:1rem 1.25rem !important;
}
.woocommerce ul.products li.product-category mark.count{
  background:transparent !important;
  color:var(--text-muted) !important;
  font-weight:600;font-size:.75rem;
  display:block;margin-top:.25rem;
}

/* ── SINGLE PRODUCT PAGE ── */
.single-product .product{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:2rem;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2rem;
  box-shadow:var(--shadow-xs);
  margin-top:1rem;
}
.single-product .product .images{margin:0}
.single-product .product .images img{
  border-radius:var(--radius-sm);
  background:var(--soft);
  border:1px solid var(--border);
}
.single-product .product .summary{margin:0;padding:0}
.single-product .product .product_title{margin-bottom:.5rem}
.single-product .product .price{
  font-size:1.85rem !important;
  font-weight:800 !important;
  color:var(--blue-700) !important;
  margin:.5rem 0 1rem !important;
}
.single-product .product .price del{
  color:var(--text-muted) !important;font-weight:600;
  margin-right:.5rem;font-size:1.25rem;opacity:.7;
}
.single-product .product .woocommerce-product-details__short-description{
  color:var(--text-2);line-height:1.7;
  margin-bottom:1.25rem;
}
.single-product .product form.cart{
  display:flex;gap:.75rem;align-items:center;flex-wrap:wrap;
  margin:1.25rem 0;padding:1.25rem 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.single-product .product form.cart .quantity{margin:0 !important}
.single-product .product form.cart input.qty{
  width:4rem;padding:.7rem;text-align:center;
  border:1px solid var(--border);
  border-radius:.6rem;font-family:inherit;font-weight:700;
  color:var(--text);
}
.single-product .product .single_add_to_cart_button{
  background:var(--blue) !important;color:#fff !important;
  border-radius:9999px !important;
  padding:.85rem 1.75rem !important;
  font-weight:700 !important;font-size:.95rem !important;
  border:0 !important;
  transition:background .15s, transform .15s;
}
.single-product .product .single_add_to_cart_button:hover{
  background:var(--blue-700) !important;transform:translateY(-2px);
}
.single-product .product .product_meta{
  font-size:.85rem;color:var(--text-muted);
  margin-top:1rem;
}
.single-product .product .product_meta a{
  color:var(--blue);font-weight:600;
}
/* Star rating on product page */
.single-product .star-rating{color:var(--amber);font-size:1rem}

/* Tabs */
.woocommerce-tabs{margin-top:2rem}
.woocommerce-tabs ul.tabs{
  list-style:none;padding:0;margin:0 0 1rem;
  display:flex;gap:.25rem;flex-wrap:wrap;
  border-bottom:1px solid var(--border);
}
.woocommerce-tabs ul.tabs::before, .woocommerce-tabs ul.tabs::after{display:none}
.woocommerce-tabs ul.tabs li{
  margin:0 !important;padding:0 !important;
  background:transparent !important;border:0 !important;
  border-radius:0 !important;
}
.woocommerce-tabs ul.tabs li a{
  display:block;padding:.85rem 1.25rem;
  color:var(--text-2);font-weight:700;font-size:.92rem;
  text-decoration:none;
  border-bottom:2px solid transparent;
  margin-bottom:-1px;
  transition:color .15s, border-color .15s;
}
.woocommerce-tabs ul.tabs li.active a{
  color:var(--blue);border-bottom-color:var(--blue);
}
.woocommerce-tabs ul.tabs li a:hover{color:var(--blue)}
.woocommerce-tabs .panel{
  padding:1.25rem 0;color:var(--text-2);line-height:1.7;
}
.woocommerce-tabs .panel h2{
  font-size:1.25rem;font-weight:800;color:var(--text);
  margin:0 0 .75rem;letter-spacing:-.01em;
}

/* Related products */
.related.products, .upsells.products{margin-top:3rem}
.related.products h2, .upsells.products h2, .cross-sells h2{
  font-size:1.5rem;font-weight:800;color:var(--text);
  margin-bottom:1rem;letter-spacing:-.02em;
}

/* ── CART PAGE ── */
.woocommerce-cart .shop_table, .woocommerce-checkout-review-order-table{
  width:100%;border-collapse:separate;border-spacing:0;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
}
.woocommerce-cart .shop_table th, .woocommerce-cart .shop_table td,
.woocommerce-checkout-review-order-table th, .woocommerce-checkout-review-order-table td{
  padding:1rem 1.25rem !important;
  text-align:left;border:0 !important;
  border-bottom:1px solid var(--border) !important;
  vertical-align:middle;
}
.woocommerce-cart .shop_table th, .woocommerce-checkout-review-order-table th{
  background:var(--soft);
  color:var(--text-muted) !important;
  font-size:.72rem;font-weight:700 !important;
  text-transform:uppercase;letter-spacing:.06em;
}
.woocommerce-cart .shop_table tr:last-child td,
.woocommerce-cart .shop_table tr:last-child th{border-bottom:0 !important}
.woocommerce-cart .shop_table img{
  width:60px !important;height:60px !important;
  object-fit:contain;
  background:var(--soft);
  border-radius:.5rem;
  border:1px solid var(--border);
}
.woocommerce-cart .product-name a{
  color:var(--text);font-weight:700;
  text-decoration:none;
}
.woocommerce-cart .product-name a:hover{color:var(--blue)}
.woocommerce-cart .product-price, .woocommerce-cart .product-subtotal{
  color:var(--text);font-weight:700;
}
.woocommerce-cart .product-remove a.remove{
  width:1.75rem;height:1.75rem;
  background:#fee2e2 !important;
  color:#b91c1c !important;
  border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:1rem;font-weight:700;
  text-decoration:none;
  transition:background .15s;
}
.woocommerce-cart .product-remove a.remove:hover{
  background:#fecaca !important;color:#7f1d1d !important;
}

/* Coupon row */
.woocommerce-cart .coupon{display:flex;gap:.5rem;align-items:center;margin:0}
.woocommerce-cart .coupon input{
  border:1px solid var(--border);border-radius:9999px;
  padding:.7rem 1rem;font-family:inherit;font-size:.9rem;
  background:var(--card);color:var(--text);min-width:200px;
}
.woocommerce-cart .coupon input:focus{
  outline:0;border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(29,78,216,.15);
}

/* Cart total and checkout */
.cart_totals h2{
  font-size:1.5rem;font-weight:800;color:var(--text);
  margin:1.5rem 0 1rem;letter-spacing:-.02em;
}
.cart_totals .shop_table{
  background:var(--card);border:1px solid var(--border);
  border-radius:var(--radius);overflow:hidden;
}
.cart_totals .order-total .amount{
  color:var(--blue-700) !important;
  font-size:1.25rem;font-weight:800;
}
.wc-proceed-to-checkout{padding:1rem 0}
.checkout-button.button.alt.wc-forward,
.button.checkout-button{
  display:block !important;
  background:var(--orange) !important;color:#fff !important;
  border-radius:9999px !important;
  padding:1rem 1.5rem !important;
  font-weight:800 !important;font-size:1rem !important;
  text-align:center;text-decoration:none !important;
  transition:background .15s, transform .15s;
  border:0 !important;
}
.checkout-button:hover{background:#9a3412 !important;transform:translateY(-2px)}

/* Generic WC buttons */
.woocommerce .button, .woocommerce input[type=submit]{
  background:var(--blue);color:#fff;
  border-radius:9999px;
  padding:.75rem 1.4rem;
  font-weight:700;font-size:.9rem;
  border:0;cursor:pointer;
  font-family:inherit;
  transition:background .15s, transform .15s;
  text-decoration:none;
}
.woocommerce .button:hover, .woocommerce input[type=submit]:hover{
  background:var(--blue-700);transform:translateY(-2px);
}
.woocommerce a.button.alt, .woocommerce button.button.alt{
  background:var(--orange);
}
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover{
  background:#9a3412;
}

/* Notices / messages */
.woocommerce-message, .woocommerce-info, .woocommerce-error,
.woocommerce-noreviews, .woocommerce p.no-comments{
  border-radius:var(--radius-sm);
  padding:1rem 1.25rem;
  margin:1rem 0;
  font-weight:600;font-size:.92rem;
  border:1px solid transparent;
  list-style:none;
  display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;
}
.woocommerce-message{
  background:#dcfce7;color:#14532d;border-color:#86efac;
}
.woocommerce-info{
  background:#dbeafe;color:#1e3a8a;border-color:#93c5fd;
}
.woocommerce-error{
  background:#fee2e2;color:#7f1d1d;border-color:#fca5a5;
}
.woocommerce-message::before, .woocommerce-info::before, .woocommerce-error::before{
  display:none !important;
}
.woocommerce-message a.button, .woocommerce-info a.button{
  margin:0;padding:.5rem 1rem;font-size:.85rem;
}

/* ── CHECKOUT ── */
.woocommerce-checkout form .form-row label{
  font-weight:600;font-size:.85rem;color:var(--text-2);
  margin-bottom:.4rem;display:block;
}
.woocommerce-checkout form .form-row input,
.woocommerce-checkout form .form-row select,
.woocommerce-checkout form .form-row textarea,
.woocommerce form .form-row input.input-text{
  border:1px solid var(--border) !important;
  border-radius:.75rem !important;
  background:var(--card) !important;
  padding:.85rem 1rem !important;
  font:inherit;font-size:16px;font-weight:500;
  color:var(--text) !important;
  width:100%;
  transition:border-color .15s, box-shadow .15s;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce-checkout form .form-row select:focus,
.woocommerce-checkout form .form-row textarea:focus{
  outline:0 !important;border-color:var(--blue) !important;
  box-shadow:0 0 0 3px rgba(29,78,216,.15) !important;
}
.woocommerce-checkout #payment{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.25rem;
}
.woocommerce-checkout #payment ul.payment_methods{
  border-bottom:1px solid var(--border);
  padding:0 0 1rem;
  list-style:none;
}
.woocommerce-checkout #payment .payment_box{
  background:var(--soft) !important;
  color:var(--text-2);
  padding:1rem !important;
  border-radius:.85rem !important;
  margin-top:.75rem;
}
.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td{
  font-weight:700;color:var(--text);
}
.woocommerce-checkout-review-order-table .order-total .amount{
  color:var(--blue-700) !important;
  font-size:1.15rem;
}

/* My Account */
.woocommerce-MyAccount-navigation ul{
  list-style:none;padding:0;margin:0;
  display:grid;gap:.4rem;
}
.woocommerce-MyAccount-navigation ul li a{
  display:block;
  padding:.7rem 1rem;
  border-radius:.65rem;
  background:var(--card);
  border:1px solid var(--border);
  color:var(--text-2);font-weight:600;font-size:.9rem;
  text-decoration:none;
}
.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover{
  background:var(--blue);color:#fff;border-color:var(--blue);
}

/* ── HEADER MINI-CART ── */
.deans-shop .site-header .nav-shell{position:relative}
.cart-link{
  display:inline-flex;align-items:center;gap:.4rem;
  padding:.5rem .85rem;
  border-radius:9999px;
  background:var(--soft);
  color:var(--text);
  font-size:.85rem;font-weight:700;
  text-decoration:none;
  transition:background .15s;
}
.cart-link:hover{background:#e2e8f0}
.cart-count{
  background:var(--orange);color:#fff;
  border-radius:9999px;
  padding:.1rem .55rem;
  font-size:.7rem;font-weight:800;
  min-width:1.4rem;text-align:center;
}

/* ── RESPONSIVE ── */
@media (max-width:1100px){
  .woocommerce ul.products{grid-template-columns:repeat(3,1fr)}
  .single-product .product{grid-template-columns:1fr;padding:1.5rem}
}
@media (max-width:680px){
  .woocommerce ul.products{grid-template-columns:repeat(2,1fr);gap:.75rem}
  .woocommerce ul.products li.product .woocommerce-loop-product__title{
    font-size:.88rem !important;padding:.65rem .85rem .15rem !important;
  }
  .woocommerce ul.products li.product .price{padding:0 .85rem .65rem;font-size:.92rem !important}
  .woocommerce ul.products li.product .button{
    margin:auto .85rem .85rem !important;
    padding:.55rem .85rem !important;font-size:.78rem !important;
  }
  .single-product .product{padding:1.25rem;gap:1rem}
  .woocommerce-cart .shop_table th, .woocommerce-cart .shop_table td{
    padding:.75rem !important;font-size:.85rem;
  }
}

/* ============================================================
   GOOGLE REVIEWS WIDGET
   ============================================================ */
.google-reviews-widget{
  max-width:1200px;
  margin:1.5rem auto 0;
  padding:0 clamp(1rem,3vw,1.5rem);
}
.google-reviews-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  background:linear-gradient(135deg, #fef9c3 0%, #fef3c7 100%);
  border:1px solid #fcd34d;
  border-radius:var(--radius);
  padding:1rem 1.25rem;
  margin-bottom:1rem;
  flex-wrap:wrap;
}
.google-reviews-rating{
  display:flex;
  align-items:center;
  gap:.65rem;
  font-size:1rem;
  color:#78350f;
  flex-wrap:wrap;
}
.google-reviews-rating .stars{
  color:#f59e0b;
  font-size:1.15rem;
  letter-spacing:.05em;
  line-height:1;
}
.google-reviews-rating strong{
  font-size:1.45rem;
  color:#451a03;
  line-height:1;
}
.google-reviews-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:1rem;
  margin-bottom:.75rem;
}
.google-review-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  padding:1.1rem 1.15rem;
  display:flex;
  flex-direction:column;
  gap:.6rem;
  box-shadow:var(--shadow-xs);
}
.google-review-card header{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:.65rem;
}
.google-review-card header img{
  width:38px;height:38px;
  border-radius:50%;
  object-fit:cover;
  background:var(--soft);
}
.google-review-card header strong{
  display:block;
  color:var(--text);
  font-size:.92rem;
  font-weight:700;
  line-height:1.25;
}
.google-review-card header span{
  display:block;
  color:var(--text-muted);
  font-size:.78rem;
}
.google-review-card .stars{
  color:#f59e0b;
  font-size:.95rem;
  letter-spacing:.04em;
  line-height:1;
}
.google-review-card p{
  margin:0;
  color:var(--text-2);
  font-size:.92rem;
  line-height:1.6;
  /* Limit very long reviews — show ~5 lines, fade the rest */
  display:-webkit-box;
  -webkit-line-clamp:6;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.google-reviews-meta{
  font-size:.78rem;
  color:var(--text-muted);
  text-align:right;
  margin:0;
}
.google-reviews-meta a{color:var(--blue);font-weight:600}

@media (max-width:680px){
  .google-reviews-header{flex-direction:column;align-items:flex-start}
  .google-reviews-cards{grid-template-columns:1fr}
}

/* ============================================================
   HOMEPAGE GOOGLE REVIEWS SLIDER
   ============================================================ */
.home-review-card{
  display:grid;
  grid-template-columns:minmax(0, 320px) minmax(0, 1fr);
  gap:2rem;
  padding:2rem;
  align-items:center;
}
.home-review-intro h2{margin:.5rem 0 .65rem}
.home-review-intro p{color:var(--text-2);margin:0 0 1rem}
.home-review-intro .cta-row{margin-top:.5rem;flex-wrap:wrap}
.home-review-slider{
  position:relative;
  background:var(--soft);
  border-radius:var(--radius);
  padding:1.5rem 3rem;
  min-height:200px;
  overflow:hidden;
}
.home-review-slides{position:relative;min-height:170px}
.home-review-slide{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transition:opacity .45s ease;
  display:flex;flex-direction:column;
  gap:.55rem;
  text-align:left;
}
.home-review-slide.is-active{opacity:1;visibility:visible;position:relative}
.home-review-slide .stars{
  color:#f59e0b;
  font-size:1.1rem;letter-spacing:.05em;line-height:1;
}
.home-review-slide p{
  margin:0;
  color:var(--text);
  font-size:1.02rem;
  line-height:1.55;
  font-style:italic;
  /* Truncate very long reviews — keeps slider height stable */
  display:-webkit-box;
  -webkit-line-clamp:5;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.home-review-slide strong{
  color:var(--text);
  font-size:.95rem;
  font-weight:700;
  margin-top:.25rem;
}
.home-review-slide span{
  color:var(--text-muted);
  font-size:.82rem;
}

/* Arrows */
.home-review-arrow{
  position:absolute;
  top:50%;transform:translateY(-50%);
  width:2.5rem;height:2.5rem;
  border:0;border-radius:50%;
  background:var(--card);
  color:var(--text);
  font-size:1.5rem;line-height:1;
  cursor:pointer;
  box-shadow:var(--shadow-xs);
  display:grid;place-items:center;
  transition:background .12s, color .12s;
  z-index:2;
}
.home-review-arrow:hover{background:var(--blue);color:#fff}
.home-review-arrow.prev{left:.5rem}
.home-review-arrow.next{right:.5rem}

/* Dots */
.home-review-dots{
  display:flex;
  gap:.4rem;
  justify-content:center;
  margin-top:1rem;
}
.home-review-dot{
  width:.55rem;height:.55rem;
  border:0;border-radius:50%;
  background:var(--border-strong);
  cursor:pointer;
  padding:0;
  transition:background .12s, transform .12s;
}
.home-review-dot:hover{transform:scale(1.2)}
.home-review-dot.is-active{
  background:var(--blue);
  transform:scale(1.3);
}

@media (max-width:900px){
  .home-review-card{grid-template-columns:1fr;padding:1.5rem;gap:1.25rem}
  .home-review-slider{padding:1.25rem 2.5rem}
  .home-review-arrow{width:2.1rem;height:2.1rem;font-size:1.25rem}
}

/* ============================================================
   REVIEWS PAGE — clean professional layout
   ============================================================ */

/* Hero */
.reviews-hero{
  background:linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
  color:#fff;
  padding:clamp(2.5rem, 6vw, 4.5rem) 1.25rem clamp(2rem, 5vw, 3.5rem);
  text-align:center;
  position:relative;
  overflow:hidden;
}
.reviews-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 20% 30%, rgba(251,191,36,.12) 0%, transparent 50%),
             radial-gradient(circle at 80% 70%, rgba(96,165,250,.15) 0%, transparent 50%);
  pointer-events:none;
}
.reviews-hero-inner{
  position:relative;
  max-width:760px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:1rem;
}
.reviews-hero .badge{
  background:rgba(255,255,255,.15);
  color:#fff;
  border:1px solid rgba(255,255,255,.25);
  backdrop-filter:blur(8px);
}
.reviews-hero h1{
  margin:.25rem 0 .5rem;
  font-size:clamp(2rem, 4.5vw, 3.25rem);
  line-height:1.1;
  letter-spacing:-.025em;
  color:#fff;
}
.reviews-hero-rating{
  display:inline-flex;
  align-items:center;
  gap:.65rem;
  background:rgba(255,255,255,.12);
  padding:.65rem 1.25rem;
  border-radius:9999px;
  border:1px solid rgba(255,255,255,.2);
  backdrop-filter:blur(8px);
  flex-wrap:wrap;
  justify-content:center;
}
.reviews-hero-stars{
  color:#fbbf24;
  font-size:1.4rem;
  letter-spacing:.05em;
  line-height:1;
  text-shadow:0 1px 2px rgba(0,0,0,.2);
}
.reviews-hero-rating strong{
  font-size:1.7rem;
  line-height:1;
  color:#fff;
}
.reviews-hero-total{
  color:rgba(255,255,255,.85);
  font-size:.95rem;
  font-weight:500;
}
.reviews-hero-sub{
  max-width:580px;
  margin:.75rem auto 0;
  color:rgba(255,255,255,.92);
  line-height:1.65;
  font-size:1.02rem;
}
.reviews-hero .cta-row{
  margin-top:1.5rem;
  flex-wrap:wrap;
  justify-content:center;
}
.reviews-hero .btn-primary{
  background:#f59e0b;
  border-color:#f59e0b;
  color:#fff;
  font-weight:700;
}
.reviews-hero .btn-primary:hover{
  background:#d97706;
  border-color:#d97706;
}
.reviews-hero .btn-secondary{
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.4);
  color:#fff;
  backdrop-filter:blur(8px);
}
.reviews-hero .btn-secondary:hover{
  background:rgba(255,255,255,.25);
}

/* Section heads (used for Customer-submitted block) */
.reviews-section-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 clamp(1rem,3vw,1.5rem);
}
.reviews-section-head{
  text-align:center;
  max-width:680px;
  margin:0 auto 2rem;
}
.reviews-section-head h2{
  font-size:clamp(1.75rem, 3.5vw, 2.25rem);
  margin:.5rem 0 .65rem;
  letter-spacing:-.02em;
}
.reviews-section-head p{
  color:var(--text-2);
  line-height:1.6;
  margin:0;
}

/* Customer review cards (refreshed) */
.customer-reviews-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:1rem;
  max-width:1200px;
  margin:0 auto;
}
.customer-review-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.5rem 1.4rem;
  display:flex;
  flex-direction:column;
  gap:.85rem;
  box-shadow:var(--shadow-xs);
  transition:transform .15s ease, box-shadow .15s ease;
}
.customer-review-card:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow);
}
.review-stars-row{
  font-size:1.05rem;
  letter-spacing:.05em;
  line-height:1;
}
.review-stars-row .star-filled{color:#f59e0b}
.review-stars-row .star-empty{color:#e5e7eb}
.customer-review-card p{
  margin:0;
  color:var(--text);
  font-size:.96rem;
  line-height:1.6;
  font-style:italic;
  flex-grow:1;
}
.customer-review-card .review-meta{
  display:flex;
  flex-direction:column;
  gap:.15rem;
  padding-top:.75rem;
  border-top:1px solid var(--border);
}
.customer-review-card .review-meta strong{
  color:var(--text);
  font-size:.92rem;
  font-weight:700;
}
.customer-review-card .review-meta span{
  color:var(--text-muted);
  font-size:.8rem;
}

/* Leave-a-review form — properly designed */
.review-form-wrap{
  max-width:640px;
  margin:0 auto;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:clamp(1.5rem, 4vw, 2.5rem);
  box-shadow:var(--shadow-xs);
}
.review-form-head{
  text-align:center;
  margin-bottom:1.75rem;
}
.review-form-head h2{
  font-size:clamp(1.6rem, 3vw, 2rem);
  margin:.5rem 0 .5rem;
  letter-spacing:-.02em;
}
.review-form-head p{
  color:var(--text-2);
  margin:0;
  font-size:.95rem;
}
.review-form-tip{
  background:#eff6ff;
  border:1px solid #bfdbfe;
  border-left:4px solid #2563eb;
  border-radius:.6rem;
  padding:.95rem 1.15rem;
  margin-bottom:1.5rem;
  color:#1e3a8a;
}
.review-form-tip p{
  margin:0;
  font-size:.92rem;
  line-height:1.55;
}
.review-form-tip a{
  color:#1d4ed8;
  font-weight:700;
  text-decoration:underline;
}
.review-form-tip strong{color:#172554}
.review-form{display:flex;flex-direction:column;gap:1.1rem}
.review-form .form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
}
.review-form label{
  display:flex;
  flex-direction:column;
  gap:.4rem;
  font-weight:600;
  color:var(--text);
  font-size:.92rem;
}
.review-form .field-label{
  display:inline-flex;
  align-items:baseline;
  gap:.35rem;
  flex-wrap:wrap;
}
.review-form label small{
  font-weight:500;
  color:var(--text-muted);
  font-size:.78rem;
}
.review-form .required{color:#dc2626;font-weight:700}
.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea{
  padding:.8rem 1rem;
  border:1px solid var(--border-strong);
  border-radius:.55rem;
  font:inherit;
  font-size:.95rem;
  background:#fff;
  color:var(--text);
  width:100%;
  transition:border-color .12s, box-shadow .12s;
}
.review-form input:focus,
.review-form textarea:focus{
  outline:none;
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(37,99,235,.12);
}
.review-form textarea{resize:vertical;min-height:120px;line-height:1.55}

/* Star picker */
.rating-picker{
  border:1px solid var(--border);
  border-radius:.55rem;
  padding:1rem 1.2rem;
  margin:0;
  background:#fafafa;
}
.rating-picker legend{
  font-weight:700;
  color:var(--text);
  font-size:.92rem;
  padding:0 .4rem;
}
.rating-picker .required{color:#dc2626;margin-left:.15rem}
.star-picker{
  display:inline-flex;
  flex-direction:row-reverse;
  gap:.15rem;
  margin-top:.4rem;
}
.star-picker input{
  position:absolute;
  opacity:0;
  width:1px;height:1px;
  pointer-events:none;
}
.star-picker label{
  font-size:2rem;
  line-height:1;
  color:#e5e7eb;
  cursor:pointer;
  transition:color .12s, transform .12s;
  padding:0 .15rem;
}
.star-picker label:hover{transform:scale(1.15)}
.star-picker input:checked ~ label,
.star-picker label:hover,
.star-picker label:hover ~ label{
  color:#f59e0b;
}
.star-picker input:focus + label{
  outline:2px solid var(--blue);
  outline-offset:2px;
  border-radius:4px;
}

.review-form-note{
  font-size:.83rem;
  color:var(--text-muted);
  line-height:1.5;
  margin:0;
  padding:.85rem 1rem;
  background:#f6f7f9;
  border-radius:.5rem;
}
.review-form-note a{color:var(--blue);font-weight:600}
.review-form .btn-lg{
  padding:1rem 1.5rem;
  font-size:1rem;
  align-self:center;
  min-width:200px;
}

/* Honeypot (anti-spam) */
.review-form .honeypot{
  position:absolute !important;
  left:-9999px !important;
  height:1px !important;width:1px !important;
}

@media (max-width:640px){
  .review-form .form-grid{grid-template-columns:1fr}
  .reviews-hero-rating{font-size:.9rem}
  .reviews-hero-rating strong{font-size:1.4rem}
}

/* Review thanks panel — appears under the form after submission */
.review-thanks-panel{
  margin-top:1.5rem;
  padding:1.5rem 1.5rem 1.25rem;
  background:linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border:1px solid #6ee7b7;
  border-left:4px solid #10b981;
  border-radius:.7rem;
  text-align:center;
  color:#065f46;
}
.review-thanks-panel .thanks-icon{
  display:inline-grid;
  place-items:center;
  width:2.4rem;height:2.4rem;
  background:#10b981;color:#fff;
  border-radius:50%;
  font-size:1.4rem;font-weight:800;
  margin-bottom:.65rem;
  box-shadow:0 4px 12px rgba(16,185,129,.3);
}
.review-thanks-panel strong{
  display:block;
  font-size:1.15rem;
  color:#065f46;
  margin-bottom:.25rem;
}
.review-thanks-panel p{
  margin:.4rem 0 0;
  color:#065f46;
  font-size:.95rem;
  line-height:1.55;
}
.review-thanks-panel .thanks-google{
  margin-top:.85rem;
  padding-top:.85rem;
  border-top:1px solid rgba(16,185,129,.3);
  font-size:.9rem;
}
.review-thanks-panel .thanks-google a{
  color:#047857;
  font-weight:700;
  text-decoration:underline;
}
.review-thanks-panel .thanks-google a:hover{color:#065f46}
