/*
Theme Name: AquaPure
Theme URI: https://aquapure.in
Author: Amanjeet Singh
Author URI: https://example.com
Description: AquaPure — RO water purifier service, installation, AMC plans, and spare parts. Same-day service in 120+ cities. Fully custom WordPress theme with admin-editable sections, smooth scroll navigation, booking modal, and complete booking features.
Version: 3.2.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aquapure
Tags: custom-background, custom-logo, custom-menu, full-width-template, threaded-comments, translation-ready

Copyright 2025 Amanjeet Singh
This theme is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version.
*/


/* ════════════════════════════════
   DESIGN TOKENS
════════════════════════════════ */
:root {
  --brand: #0057FF;
  --brand-dark: #0040CC;
  --brand-light: #EEF3FF;
  --brand-mid: #3D7BFF;
  --teal: #00C2A8;
  --teal-light: #E0F7F5;
  --ink: #0A0F1C;
  --ink-80: #1E2435;
  --ink-60: #3A4358;
  --ink-40: #6B7491;
  --ink-20: #A8B0C2;
  --line: #E8EBF0;
  --surface: #F4F6FA;
  --white: #FFFFFF;
  --success: #16A34A;
  --success-bg: #F0FDF4;
  --warning: #D97706;
  --warning-bg: #FFFBEB;
  --error: #DC2626;
  --font: 'Plus Jakarta Sans', sans-serif;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 999px;
  --shadow-sm: 0 1px 3px rgba(10,15,28,.06), 0 1px 2px rgba(10,15,28,.04);
  --shadow-md: 0 4px 16px rgba(10,15,28,.08), 0 2px 6px rgba(10,15,28,.04);
  --shadow-lg: 0 12px 40px rgba(10,15,28,.10), 0 4px 12px rgba(10,15,28,.06);
  --shadow-xl: 0 24px 64px rgba(10,15,28,.12);
  --shadow-brand: 0 8px 32px rgba(0,87,255,.25);
  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 20px; --space-6: 24px; --space-8: 32px; --space-10: 40px;
  --space-12: 48px; --space-16: 64px; --space-20: 80px; --space-24: 96px;
  --nav-h: 64px;
  --mob-nav-h: 56px;
}

/* ════════════════════════════════
   RESET & BASE
════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--ink); background: var(--white); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font-family: var(--font); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ════════════════════════════════
   TYPOGRAPHY SYSTEM
════════════════════════════════ */
.t-display { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.08; }
.t-h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -.025em; line-height: 1.1; }
.t-h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.15; }
.t-h3 { font-size: 1.15rem; font-weight: 600; letter-spacing: -.01em; line-height: 1.3; }
.t-body { font-size: .95rem; font-weight: 400; line-height: 1.65; color: var(--ink-60); }
.t-small { font-size: .82rem; font-weight: 400; line-height: 1.5; color: var(--ink-40); }
.t-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-40); }

/* ════════════════════════════════
   BUTTON SYSTEM
════════════════════════════════ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; border-radius: var(--r-full); font-weight: 600; font-size: .9rem; cursor: pointer; transition: all .2s cubic-bezier(.22,1,.36,1); border: none; white-space: nowrap; position: relative; overflow: hidden; }
.btn-primary { background: var(--brand); color: #fff; padding: 13px 28px; }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: var(--shadow-brand); }
.btn-primary:active { transform: translateY(0); box-shadow: none; }
.btn-secondary { background: var(--brand-light); color: var(--brand); padding: 13px 28px; }
.btn-secondary:hover { background: #dce8ff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink-60); padding: 13px 28px; border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink-20); color: var(--ink); background: var(--surface); }
.btn-sm { padding: 9px 18px; font-size: .82rem; }
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; }
.btn-white { background: var(--white); color: var(--ink); }
.btn-white:hover { background: var(--surface); transform: translateY(-1px); }
.btn .ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,.3); transform: scale(0); animation: ripple-anim .5s linear; pointer-events: none; }
.btn-secondary .ripple, .btn-ghost .ripple { background: rgba(0,87,255,.12); }
@keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }

/* ════════════════════════════════
   BADGE / TAG / CHIP
════════════════════════════════ */
.badge { display: inline-flex; align-items: center; gap: 5px; border-radius: var(--r-full); padding: 3px 10px; font-size: .72rem; font-weight: 700; letter-spacing: .04em; }
.badge-brand { background: var(--brand-light); color: var(--brand); }
.badge-success { background: var(--success-bg); color: var(--success); }
.badge-warning { background: var(--warning-bg); color: var(--warning); }
.badge-dark { background: var(--ink); color: #fff; }
.badge-teal { background: var(--teal-light); color: var(--teal); }
.tag { background: var(--surface); color: var(--ink-60); border-radius: var(--r-sm); padding: 3px 9px; font-size: .72rem; font-weight: 600; }
.chip { background: var(--surface); color: var(--ink-60); border: 1.5px solid var(--line); border-radius: var(--r-full); padding: 6px 16px; font-size: .8rem; font-weight: 600; cursor: pointer; transition: .2s; }
.chip.active, .chip:hover { background: var(--brand-light); color: var(--brand); border-color: var(--brand); }

/* ════════════════════════════════
   CARD SYSTEM
════════════════════════════════ */
.card { background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r-xl); transition: box-shadow .25s, transform .25s; overflow: hidden; }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card-flat { background: var(--surface); border: none; border-radius: var(--r-xl); }
.card-elevated { background: var(--white); border-radius: var(--r-xl); box-shadow: var(--shadow-md); }

/* ════════════════════════════════
   LAYOUT UTILITIES
════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-6); }
.section { padding: var(--space-24) 0; }
.section-sm { padding: var(--space-16) 0; }
.section-header { margin-bottom: var(--space-12); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.flex { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: var(--space-2); } .gap-3 { gap: var(--space-3); } .gap-4 { gap: var(--space-4); } .gap-6 { gap: var(--space-6); }
.mt-2 { margin-top: var(--space-2); } .mt-3 { margin-top: var(--space-3); } .mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); } .mt-8 { margin-top: var(--space-8); }

/* ════════════════════════════════
   SCROLL REVEAL
════════════════════════════════ */
.sr { opacity: 0; transform: translateY(24px); transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); }
.sr.sr-left { transform: translateX(-20px); }
.sr.sr-right { transform: translateX(20px); }
.sr.sr-scale { transform: scale(.96); }
.sr.in { opacity: 1; transform: none; }
.sr-delay-1 { transition-delay: .07s; }
.sr-delay-2 { transition-delay: .14s; }
.sr-delay-3 { transition-delay: .21s; }
.sr-delay-4 { transition-delay: .28s; }

/* ════════════════════════════════
   TOAST
════════════════════════════════ */
.toast-wrap { position: fixed; top: var(--space-4); right: var(--space-4); z-index: 9999; display: flex; flex-direction: column; gap: var(--space-2); pointer-events: none; }
.toast { background: var(--ink); color: #fff; padding: 12px 20px; border-radius: var(--r-lg); font-size: .85rem; font-weight: 500; box-shadow: var(--shadow-lg); opacity: 0; transform: translateX(20px); transition: all .35s cubic-bezier(.22,1,.36,1); pointer-events: all; max-width: 320px; }
.toast.show { opacity: 1; transform: none; }
.toast.success { background: var(--success); }
.toast.error { background: var(--error); }

/* ════════════════════════════════
   NAV
════════════════════════════════ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; height: var(--nav-h); transition: background .3s, box-shadow .3s, transform .3s; }
.nav-inner { max-width: 1400px; margin: 0 auto; padding: 0 var(--space-6); height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-size: 1.2rem; font-weight: 800; color: var(--white); letter-spacing: -.03em; display: flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.nav-logo span { color: rgba(255,255,255,.5); }
.nav.is-light .nav-logo { color: var(--ink); }
.nav.is-light .nav-logo span { color: var(--ink-40); }
.nav-links { display: flex; gap: 0; }
.nav-links a { font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.7); padding: 8px 14px; border-radius: var(--r-md); transition: .2s; }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav.is-light .nav-links a { color: var(--ink-60); }
.nav.is-light .nav-links a:hover { color: var(--ink); background: var(--surface); }
.nav-right { display: flex; align-items: center; gap: var(--space-2); }
.nav-book-btn { background: var(--brand); color: #fff; border-radius: var(--r-full); padding: 9px 20px; font-size: .82rem; font-weight: 700; border: none; cursor: pointer; transition: .2s; }
.nav-book-btn:hover { background: var(--brand-dark); }
.nav.is-dark .nav-book-btn { background: var(--white); color: var(--ink); }
.nav-icon-btn { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer; transition: .2s; color: rgba(255,255,255,.7); background: none; border: none; position: relative; }
.nav-icon-btn:hover { background: rgba(255,255,255,.1); }
.nav.is-light .nav-icon-btn { color: var(--ink-60); }
.nav.is-light .nav-icon-btn:hover { background: var(--surface); }
.nav-cart-badge { position: absolute; top: 4px; right: 3px; background: var(--brand); color: #fff; border-radius: 50%; width: 16px; height: 16px; font-size: 9px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.nav.is-scrolled { box-shadow: var(--shadow-sm); }
.nav.is-light.is-scrolled { background: rgba(255,255,255,.95); backdrop-filter: blur(16px); }
.nav.is-dark.is-scrolled { background: rgba(10,15,28,.9); backdrop-filter: blur(16px); }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero { min-height: 100vh; background: var(--ink); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; padding-top: var(--nav-h); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.glow-1 { width: 600px; height: 600px; background: #0057FF; top: -100px; left: -200px; opacity: .12; }
.glow-2 { width: 400px; height: 400px; background: #00C2A8; bottom: -100px; right: 5%; opacity: .1; }
.hero-content { position: relative; z-index: 2; padding: var(--space-16) 5% var(--space-12); max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: var(--space-16); }
.hero-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.7); border-radius: var(--r-full); padding: 5px 14px; font-size: .75rem; font-weight: 600; letter-spacing: .06em; margin-bottom: var(--space-5); }
.hero-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); font-weight: 800; letter-spacing: -.04em; line-height: .98; color: var(--white); margin-bottom: var(--space-5); }
.hero h1 .hero-grad { background: linear-gradient(130deg, #60A5FA, #00C2A8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.5); line-height: 1.65; max-width: 420px; margin-bottom: var(--space-8); font-weight: 300; }
.hero-ctas { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-bottom: var(--space-10); }
.hero-trust-row { display: flex; gap: var(--space-6); flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.5); }
.trust-item-icon { font-size: .9rem; }

/* Hero Quick Book Card */
.hero-book-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-xl); padding: var(--space-6); backdrop-filter: blur(12px); }
.hbc-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: var(--space-4); }
.hbc-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: var(--space-4); }
.hbc-opt { background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.1); border-radius: var(--r-md); padding: 10px; cursor: pointer; transition: .2s; text-align: center; }
.hbc-opt:hover, .hbc-opt.active { background: rgba(0,87,255,.3); border-color: rgba(0,87,255,.6); }
.hbc-opt-icon { font-size: 1.3rem; margin-bottom: 4px; }
.hbc-opt-name { font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.8); }
.hbc-opt-price { font-size: .65rem; color: rgba(0,194,168,.9); margin-top: 1px; font-weight: 500; }
.hbc-input { width: 100%; background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.1); border-radius: var(--r-md); padding: 11px 14px; font-size: .88rem; color: var(--white); font-family: var(--font); outline: none; transition: .2s; margin-bottom: var(--space-3); }
.hbc-input::placeholder { color: rgba(255,255,255,.3); }
.hbc-input:focus { border-color: var(--brand); background: rgba(0,87,255,.1); }
.hbc-submit { width: 100%; background: var(--brand); color: #fff; border: none; border-radius: var(--r-full); padding: 13px; font-size: .9rem; font-weight: 700; cursor: pointer; font-family: var(--font); transition: .2s; display: flex; align-items: center; justify-content: center; gap: 6px; }
.hbc-submit:hover { background: var(--brand-dark); transform: translateY(-1px); }
.hbc-note { font-size: .7rem; color: rgba(255,255,255,.3); text-align: center; margin-top: var(--space-2); }

/* ════════════════════════════════
   SOCIAL PROOF BAR
════════════════════════════════ */
.proof-bar { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; }
.proof-bar-inner { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-6); display: flex; justify-content: space-around; align-items: center; gap: var(--space-6); flex-wrap: wrap; }
.proof-item { display: flex; align-items: center; gap: 10px; }
.proof-num { font-size: 1.4rem; font-weight: 800; letter-spacing: -.04em; color: var(--ink); }
.proof-label { font-size: .78rem; color: var(--ink-40); font-weight: 400; line-height: 1.3; }
.proof-divider { width: 1px; height: 36px; background: var(--line); }

/* ════════════════════════════════
   STATS BAND (counter)
════════════════════════════════ */
.stats-band { background: var(--ink); padding: var(--space-16) 0; }
.stats-band-inner { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-6); display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-8); text-align: center; }
.stat-item-num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.04em; color: var(--white); margin-bottom: var(--space-1); }
.stat-item-label { font-size: .82rem; color: rgba(255,255,255,.4); font-weight: 400; }

/* ════════════════════════════════
   SECTION HEADERS
════════════════════════════════ */
.sh { margin-bottom: var(--space-12); }
.sh-eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); margin-bottom: var(--space-2); }
.sh-title { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700; letter-spacing: -.025em; line-height: 1.1; color: var(--ink); }
.sh-sub { font-size: .95rem; color: var(--ink-60); margin-top: var(--space-2); max-width: 480px; font-weight: 300; line-height: 1.65; }

/* ════════════════════════════════
   HOW IT WORKS
════════════════════════════════ */
.hiw-section { background: var(--surface); }
.hiw-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.hiw-steps::before { content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(90deg, var(--brand), var(--teal)); opacity: .25; z-index: 0; }
.hiw-step { text-align: center; padding: var(--space-6) var(--space-4); position: relative; z-index: 1; }
.hiw-num { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-4); font-size: 1.5rem; border: 2px solid var(--line); background: var(--white); box-shadow: var(--shadow-sm); transition: .3s; }
.hiw-step:hover .hiw-num { border-color: var(--brand); background: var(--brand-light); transform: scale(1.05); }
.hiw-step-title { font-size: .9rem; font-weight: 700; color: var(--ink); margin-bottom: var(--space-2); }
.hiw-step-desc { font-size: .78rem; color: var(--ink-40); line-height: 1.5; }

/* ════════════════════════════════
   SERVICE CARDS
════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.svc-card { background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r-xl); padding: var(--space-6); cursor: pointer; transition: all .25s cubic-bezier(.22,1,.36,1); position: relative; overflow: hidden; }
.svc-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--brand), var(--teal)); opacity: 0; transition: .3s; }
.svc-card:hover { border-color: var(--brand); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.svc-card:hover::before { opacity: .04; }
.svc-card-icon { width: 52px; height: 52px; border-radius: var(--r-lg); background: var(--brand-light); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: var(--space-4); }
.svc-card-title { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: var(--space-2); }
.svc-card-desc { font-size: .82rem; color: var(--ink-40); line-height: 1.55; margin-bottom: var(--space-4); }
.svc-card-price { font-size: .88rem; font-weight: 700; color: var(--brand); }
.svc-card-cta { font-size: .78rem; font-weight: 600; color: var(--brand); display: flex; align-items: center; gap: 4px; transition: .2s; cursor: pointer; }
.svc-card:hover .svc-card-cta { gap: 8px; }

/* ════════════════════════════════
   BOOKING MODAL
════════════════════════════════ */
.modal-overlay { position: fixed; inset: 0; background: rgba(10,15,28,.6); z-index: 800; display: flex; align-items: flex-end; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-sheet { background: var(--white); border-radius: var(--r-xl) var(--r-xl) 0 0; width: 100%; max-width: 560px; padding: var(--space-8) var(--space-8) calc(var(--space-8) + env(safe-area-inset-bottom)); transform: translateY(60px); transition: transform .35s cubic-bezier(.22,1,.36,1); max-height: 92vh; overflow-y: auto; position: relative; }
.modal-overlay.open .modal-sheet { transform: translateY(0); }
.modal-handle { width: 40px; height: 4px; border-radius: 2px; background: var(--line); margin: 0 auto var(--space-6); }
.modal-title { font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: var(--space-6); letter-spacing: -.02em; }
.modal-close { position: absolute; top: var(--space-6); right: var(--space-6); width: 32px; height: 32px; border-radius: 50%; background: var(--surface); border: none; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; color: var(--ink-40); transition: .2s; }
.modal-close:hover { background: var(--line); color: var(--ink); }
.modal-steps { display: flex; align-items: center; gap: 0; margin-bottom: var(--space-8); }
.ms-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; position: relative; }
.ms-item:not(:last-child)::after { content: ''; position: absolute; top: 14px; left: calc(50% + 14px); width: calc(100% - 28px); height: 2px; background: var(--line); }
.ms-item.done:not(:last-child)::after, .ms-item.active:not(:last-child)::after { background: var(--brand); }
.ms-circle { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; color: var(--ink-20); background: var(--white); transition: .3s; z-index: 1; }
.ms-item.active .ms-circle { border-color: var(--brand); color: var(--brand); }
.ms-item.done .ms-circle { background: var(--brand); border-color: var(--brand); color: #fff; }
.ms-label { font-size: .65rem; font-weight: 600; color: var(--ink-40); text-transform: uppercase; letter-spacing: .06em; }
.ms-item.active .ms-label { color: var(--brand); }
.booking-panel { display: none; }
.booking-panel.active { display: block; animation: fadeUp .3s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.svc-pills { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: var(--space-6); }
.svc-pill { border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: 12px; cursor: pointer; transition: .2s; text-align: left; }
.svc-pill:hover, .svc-pill.sel { border-color: var(--brand); background: var(--brand-light); }
.svc-pill-icon { font-size: 1.2rem; margin-bottom: 5px; }
.svc-pill-name { font-size: .82rem; font-weight: 600; color: var(--ink); }
.svc-pill-price { font-size: .72rem; color: var(--brand); font-weight: 600; margin-top: 1px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); margin-bottom: var(--space-4); }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-label { font-size: .75rem; font-weight: 600; color: var(--ink-60); }
.form-input, .form-select { background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--r-md); padding: 11px 14px; font-size: .88rem; color: var(--ink); outline: none; transition: .2s; width: 100%; }
.form-input:focus, .form-select:focus { border-color: var(--brand); background: var(--white); box-shadow: 0 0 0 3px rgba(0,87,255,.08); }
.form-input.error { border-color: var(--error); background: #fff5f5; }
.form-error-msg { font-size: .72rem; color: var(--error); display: none; }
.form-input.error ~ .form-error-msg { display: block; }
.slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: var(--space-4); }
.slot-btn { background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--r-md); padding: 10px 8px; text-align: center; font-size: .78rem; font-weight: 600; cursor: pointer; transition: .2s; color: var(--ink); }
.slot-btn:hover, .slot-btn.sel { background: var(--brand-light); border-color: var(--brand); color: var(--brand); }
.slot-btn.unavail { opacity: .4; cursor: not-allowed; }
.confirm-card { background: var(--surface); border-radius: var(--r-lg); padding: var(--space-5); margin-bottom: var(--space-4); }
.confirm-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--line); font-size: .85rem; }
.confirm-row:last-child { border: none; }
.confirm-key { color: var(--ink-40); }
.confirm-val { font-weight: 600; color: var(--ink); text-align: right; max-width: 60%; }
.modal-footer { display: flex; gap: var(--space-3); margin-top: var(--space-6); }
.book-success { display: none; text-align: center; padding: var(--space-8) 0; }
.book-success.show { display: block; animation: fadeUp .4s ease; }
.success-ring { font-size: 3.5rem; margin-bottom: var(--space-4); animation: pop .5s cubic-bezier(.22,1,.36,1); }
@keyframes pop { from { transform: scale(.6); } to { transform: scale(1); } }
.success-id { display: inline-block; background: var(--success-bg); color: var(--success); border-radius: var(--r-full); padding: 6px 16px; font-size: .8rem; font-weight: 700; letter-spacing: .04em; }

/* ════════════════════════════════
   QUIZ
════════════════════════════════ */
.quiz-section { background: linear-gradient(160deg, var(--ink) 60%, #0a1f4e); }
.quiz-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-xl); padding: var(--space-8); max-width: 640px; margin: 0 auto; backdrop-filter: blur(8px); }
.quiz-progress { height: 4px; background: rgba(255,255,255,.1); border-radius: 2px; margin-bottom: var(--space-6); overflow: hidden; }
.quiz-progress-fill { height: 100%; background: linear-gradient(90deg, var(--brand), var(--teal)); border-radius: 2px; transition: width .4s ease; }
.quiz-q { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: var(--space-6); letter-spacing: -.01em; }
.quiz-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: var(--space-6); }
.quiz-opt { background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: var(--space-4); cursor: pointer; transition: .2s; display: flex; align-items: center; gap: var(--space-3); }
.quiz-opt:hover, .quiz-opt.sel { background: rgba(0,87,255,.2); border-color: var(--brand); }
.quiz-opt-icon { font-size: 1.4rem; flex-shrink: 0; }
.quiz-opt-text { font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.8); }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; }
.quiz-counter { font-size: .78rem; color: rgba(255,255,255,.4); }
.quiz-result { display: none; text-align: center; padding: var(--space-4) 0; }
.quiz-result.show { display: block; animation: fadeUp .4s ease; }
.quiz-result-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(0,194,168,.15); color: var(--teal); border-radius: var(--r-full); padding: 4px 14px; font-size: .72rem; font-weight: 700; letter-spacing: .05em; margin-bottom: var(--space-4); }
.quiz-result-title { font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: var(--space-2); letter-spacing: -.02em; }
.quiz-result-sub { font-size: .88rem; color: rgba(255,255,255,.5); margin-bottom: var(--space-6); }

/* ════════════════════════════════
   PRODUCTS
════════════════════════════════ */
.prod-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: var(--space-6); }
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.prod-card { background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r-xl); overflow: hidden; transition: box-shadow .25s, transform .25s; }
.prod-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.prod-img { background: linear-gradient(135deg, var(--surface), #e8ecf8); padding: var(--space-8) var(--space-6); display: flex; align-items: center; justify-content: center; position: relative; min-height: 160px; }
.prod-flag { position: absolute; top: 10px; left: 10px; background: var(--brand); color: #fff; border-radius: var(--r-full); padding: 3px 10px; font-size: .65rem; font-weight: 700; letter-spacing: .04em; }
.prod-wish { position: absolute; top: 10px; right: 10px; font-size: 1.1rem; cursor: pointer; color: var(--ink-20); transition: .2s; }
.prod-wish:hover { color: var(--error); transform: scale(1.1); }
.prod-body { padding: var(--space-4); }
.prod-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: var(--space-2); }
.prod-name { font-size: .88rem; font-weight: 700; color: var(--ink); margin-bottom: var(--space-2); line-height: 1.3; }
.prod-rating { display: flex; align-items: center; gap: 6px; margin-bottom: var(--space-2); }
.prod-stars { color: #F59E0B; font-size: .85rem; }
.prod-rev { font-size: .72rem; color: var(--ink-40); }
.prod-price-row { display: flex; align-items: center; gap: 8px; margin-bottom: var(--space-1); }
.prod-price { font-size: 1.1rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.prod-old { font-size: .78rem; color: var(--ink-20); text-decoration: line-through; }
.prod-off { font-size: .72rem; font-weight: 700; color: var(--success); background: var(--success-bg); padding: 2px 7px; border-radius: var(--r-full); }
.prod-emi { font-size: .72rem; color: var(--ink-40); margin-bottom: var(--space-3); }
.prod-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.prod-btn-cart { background: var(--brand-light); color: var(--brand); border: none; border-radius: var(--r-full); padding: 9px 12px; font-size: .78rem; font-weight: 700; cursor: pointer; font-family: var(--font); transition: .2s; }
.prod-btn-cart:hover { background: #dce8ff; }
.prod-btn-buy { background: var(--brand); color: #fff; border: none; border-radius: var(--r-full); padding: 9px 12px; font-size: .78rem; font-weight: 700; cursor: pointer; font-family: var(--font); transition: .2s; }
.prod-btn-buy:hover { background: var(--brand-dark); }

/* Product Comparison Table */
.compare-wrap { overflow-x: auto; margin-top: var(--space-8); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.compare-table th { background: var(--surface); padding: 12px 16px; text-align: left; font-size: .78rem; font-weight: 700; color: var(--ink-60); border-bottom: 2px solid var(--line); white-space: nowrap; }
.compare-table th.hl { background: var(--brand-light); color: var(--brand); }
.compare-table td { padding: 11px 16px; font-size: .82rem; color: var(--ink-60); border-bottom: 1px solid var(--line); }
.compare-table tr:hover td { background: var(--surface); }
.compare-table td.hl { background: rgba(0,87,255,.04); font-weight: 600; color: var(--ink); }
.compare-table td:first-child { font-weight: 600; color: var(--ink); }

/* ════════════════════════════════
   SPARE PARTS
════════════════════════════════ */
.parts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.part-card { background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r-xl); padding: var(--space-5); transition: box-shadow .25s, transform .25s; }
.part-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.part-emoji { font-size: 2rem; margin-bottom: var(--space-3); }
.part-name { font-size: .88rem; font-weight: 700; color: var(--ink); margin-bottom: var(--space-1); }
.part-sku { font-size: .65rem; color: var(--ink-40); font-weight: 600; letter-spacing: .06em; margin-bottom: var(--space-2); }
.part-compat { font-size: .72rem; color: var(--ink-40); line-height: 1.4; margin-bottom: var(--space-3); }
.part-footer { display: flex; align-items: center; justify-content: space-between; }
.part-price { font-size: .95rem; font-weight: 800; color: var(--ink); }
.part-add { background: var(--brand); color: #fff; border: none; border-radius: var(--r-full); padding: 7px 14px; font-size: .72rem; font-weight: 700; cursor: pointer; font-family: var(--font); transition: .2s; }
.part-add:hover { background: var(--brand-dark); }

/* ════════════════════════════════
   AMC PLANS
════════════════════════════════ */
.plans-section { background: var(--surface); }
.billing-toggle { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-10); }
.toggle-track { width: 44px; height: 24px; border-radius: 12px; background: var(--line); cursor: pointer; position: relative; transition: .2s; }
.toggle-track.on { background: var(--brand); }
.toggle-thumb { width: 18px; height: 18px; border-radius: 50%; background: #fff; position: absolute; top: 3px; left: 3px; transition: .2s; box-shadow: var(--shadow-sm); }
.toggle-track.on .toggle-thumb { left: 23px; }
.tl-label { font-size: .82rem; font-weight: 600; color: var(--ink-40); }
.tl-label.on { color: var(--ink); }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.plan-card { background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r-xl); padding: var(--space-8); position: relative; transition: box-shadow .25s, transform .25s; }
.plan-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.plan-card.featured { border-color: var(--brand); box-shadow: var(--shadow-brand); }
.plan-rec { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; border-radius: var(--r-full); padding: 5px 18px; font-size: .72rem; font-weight: 700; letter-spacing: .04em; white-space: nowrap; }
.plan-tier { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); margin-bottom: var(--space-1); }
.plan-name { font-size: 1.3rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; margin-bottom: var(--space-4); }
.plan-price { font-size: 2.4rem; font-weight: 800; color: var(--ink); letter-spacing: -.04em; margin-bottom: 2px; }
.plan-period { font-size: .78rem; color: var(--ink-40); margin-bottom: var(--space-6); }
.plan-feats { border-top: 1px solid var(--line); padding-top: var(--space-5); margin-bottom: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); }
.plan-feat { display: flex; align-items: center; gap: var(--space-3); font-size: .82rem; color: var(--ink-40); }
.plan-feat.yes { color: var(--ink-60); }
.plan-feat-check { width: 18px; height: 18px; border-radius: 50%; background: var(--surface); display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; color: var(--ink-20); flex-shrink: 0; }
.plan-feat.yes .plan-feat-check { background: var(--success-bg); color: var(--success); }
.plan-btn { width: 100%; background: var(--surface); color: var(--ink); border: none; border-radius: var(--r-full); padding: 13px; font-size: .9rem; font-weight: 700; cursor: pointer; font-family: var(--font); transition: .2s; }
.plan-btn:hover { background: var(--brand-light); color: var(--brand); }
.plan-card.featured .plan-btn { background: var(--brand); color: #fff; }
.plan-card.featured .plan-btn:hover { background: var(--brand-dark); }

/* ════════════════════════════════
   TRUST BAND
════════════════════════════════ */
.trust-band { background: var(--ink); padding: var(--space-12) 0; }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-6); }
.tb-item { text-align: center; }
.tb-icon { font-size: 2rem; margin-bottom: var(--space-3); }
.tb-title { font-size: .88rem; font-weight: 700; color: var(--white); margin-bottom: var(--space-1); }
.tb-desc { font-size: .72rem; color: rgba(255,255,255,.4); line-height: 1.5; }

/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.testi-card { background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r-xl); padding: var(--space-6); transition: box-shadow .25s, transform .25s; }
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testi-stars { color: #F59E0B; font-size: 1rem; margin-bottom: var(--space-3); }
.testi-text { font-size: .88rem; color: var(--ink-60); line-height: 1.65; margin-bottom: var(--space-4); }
.testi-author { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-3); }
.testi-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.testi-name { font-size: .85rem; font-weight: 700; color: var(--ink); }
.testi-meta { font-size: .72rem; color: var(--ink-40); }
.testi-svc-tag { display: inline-block; background: var(--success-bg); color: var(--success); border-radius: var(--r-full); padding: 3px 10px; font-size: .7rem; font-weight: 700; }

/* ════════════════════════════════
   FAQ
════════════════════════════════ */
.faq-section { background: var(--surface); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: var(--space-5) 0; font-size: .95rem; font-weight: 600; color: var(--ink); cursor: pointer; font-family: var(--font); display: flex; justify-content: space-between; align-items: center; gap: var(--space-4); }
.faq-icon { font-size: 1.2rem; color: var(--brand); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.22,1,.36,1); }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a-inner { padding-bottom: var(--space-5); font-size: .88rem; color: var(--ink-60); line-height: 1.7; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer { background: var(--ink-80); color: rgba(255,255,255,.5); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: var(--space-16) var(--space-6) var(--space-8); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-10); margin-bottom: var(--space-10); }
.footer-logo { font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: -.03em; margin-bottom: var(--space-4); }
.footer-logo span { color: rgba(255,255,255,.35); }
.footer-desc { font-size: .82rem; line-height: 1.65; margin-bottom: var(--space-5); }
.footer-col-title { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: var(--space-4); }
.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-links a { font-size: .82rem; color: rgba(255,255,255,.5); transition: .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: var(--space-6); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-4); }
.footer-bottom-text { font-size: .75rem; color: rgba(255,255,255,.25); }
.footer-badge { font-size: .72rem; color: rgba(255,255,255,.25); }

/* ════════════════════════════════
   MOBILE BOTTOM NAV
════════════════════════════════ */
.mob-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 400; background: rgba(255,255,255,.95); backdrop-filter: blur(16px); border-top: 1px solid var(--line); padding-bottom: env(safe-area-inset-bottom); }
.mob-nav-inner { display: flex; align-items: center; height: var(--mob-nav-h); }
.mob-nav-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; height: 100%; background: none; border: none; cursor: pointer; font-family: var(--font); color: var(--ink-40); transition: .2s; padding: 0; }
.mob-nav-item.active, .mob-nav-item:hover { color: var(--brand); }
.mob-nav-icon { font-size: 1.2rem; display: block; }
.mob-nav-label { font-size: .62rem; font-weight: 600; display: block; }

/* ════════════════════════════════
   FAB (Floating Action Buttons)
════════════════════════════════ */
.fab-stack { position: fixed; bottom: calc(var(--mob-nav-h) + var(--space-4)); right: var(--space-4); z-index: 300; display: flex; flex-direction: column; align-items: flex-end; gap: var(--space-2); }
.fab { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; cursor: pointer; box-shadow: var(--shadow-lg); transition: transform .2s; }
.fab:hover { transform: scale(1.08); }
.fab-whatsapp { background: #25D366; }
.fab-label { position: absolute; right: 60px; background: var(--ink); color: #fff; border-radius: var(--r-full); padding: 5px 12px; font-size: .72rem; font-weight: 600; white-space: nowrap; opacity: 0; transform: translateX(8px); transition: .2s; pointer-events: none; }
.fab-stack > div:hover .fab-label { opacity: 1; transform: none; }

/* ════════════════════════════════
   BACK TO TOP
════════════════════════════════ */
#backToTop { position: fixed; bottom: calc(var(--mob-nav-h) + var(--space-4) + 60px); right: var(--space-4); z-index: 300; width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: #fff; border: none; cursor: pointer; font-size: 1.1rem; box-shadow: var(--shadow-brand); opacity: 0; transform: translateY(16px) scale(.9); transition: opacity .3s, transform .3s; display: flex; align-items: center; justify-content: center; }
#backToTop.visible { opacity: 1; transform: none; }
#backToTop:hover { background: var(--brand-dark); transform: translateY(-2px); }

/* ════════════════════════════════
   CINEMA / BRAND STRIP
════════════════════════════════ */
.cinema-panel { background: var(--brand); padding: var(--space-12) 0; overflow: hidden; }
.cinema-inner { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-6); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: var(--space-8); }
.cinema-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: #fff; letter-spacing: -.03em; margin-bottom: var(--space-2); }
.cinema-sub { font-size: .9rem; color: rgba(255,255,255,.65); margin-bottom: var(--space-6); }
.cinema-stats { display: flex; gap: var(--space-6); flex-wrap: wrap; }
.cinema-stat-num { font-size: 1.8rem; font-weight: 800; color: #fff; letter-spacing: -.04em; }
.cinema-stat-label { font-size: .72rem; color: rgba(255,255,255,.5); font-weight: 500; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .parts-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-band-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .mob-nav { display: flex; }
  .fab-stack { bottom: calc(var(--mob-nav-h) + var(--space-4)); }
  #backToTop { bottom: calc(var(--mob-nav-h) + var(--space-4) + 60px); }
  body { padding-bottom: var(--mob-nav-h); }
  .hero-content { grid-template-columns: 1fr; }
  .hero-book-card { display: none; }
  .hiw-steps { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .parts-grid { grid-template-columns: 1fr 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cinema-inner { grid-template-columns: 1fr; }
  .stats-band-inner { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .modal-sheet { padding: var(--space-6) var(--space-5) calc(var(--space-6) + env(safe-area-inset-bottom)); }
  .proof-divider { display: none; }
  .proof-bar-inner { justify-content: center; }
}
@media (max-width: 480px) {
  .prod-grid { grid-template-columns: 1fr; }
  .parts-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hiw-steps { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .quiz-opts { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════
   WP ADMIN BAR OFFSET
════════════════════════════════ */
.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .nav { top: 46px; } }

/* ════════════════════════════════
   ACCESSIBILITY
════════════════════════════════ */
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ════════════════════════════════
   WORDPRESS REQUIRED CSS CLASSES
════════════════════════════════ */

/* Post thumbnail */
.post-thumbnail img { max-width: 100%; height: auto; display: block; }

/* Alignments */
.alignleft  { float: left;  margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin: 0 auto 1em; text-align: center; }

/* WP Caption */
.wp-caption { max-width: 100%; background: #f9f9f9; border: 1px solid #e5e5e5; padding: 6px; margin-bottom: 1em; }
.wp-caption img { display: block; margin: 0 auto; }
.wp-caption-text { text-align: center; font-size: .82rem; color: #666; margin: 4px 0 0; }

/* Sticky post */
.sticky { border-left: 4px solid var(--brand, #0057FF); padding-left: 1rem; }

/* Gallery caption */
.gallery-caption { display: block; font-size: .8rem; color: #666; margin-top: 4px; }

/* Comment author highlight */
.bypostauthor > .comment-body { background: #f0f4ff; border-radius: 6px; padding: .75rem; }

/* Screen reader text */
.screen-reader-text {
    border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
    height: 1px; margin: -1px; overflow: hidden; padding: 0;
    position: absolute; width: 1px; word-wrap: normal !important;
}
.screen-reader-text:focus {
    background: #eee; clip: auto !important; clip-path: none;
    color: #222; display: block; font-size: 1em; height: auto;
    left: 8px; line-height: normal; padding: .75em 1.25em;
    text-decoration: none; top: 8px; width: auto; z-index: 100000;
}
