/* ================================================
   Harbor Hearing Conservation — styles.css
   Brand palette:
     Cream  #F8F2E6
     Red    #B7322B
     Blue   #1E2A44
   ================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background: var(--color-red);
  color: var(--white);
  padding: .75rem 1.5rem;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.skip-link:focus {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
}

/* ---------- Focus Visible ---------- */
a:focus-visible, button:focus-visible, .service-card:focus-visible, .shop-product-card:focus-visible, .welcome-choice:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
}

/* ---------- Screen Reader Only ---------- */
.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;
}

:root {
  --color-cream:    #F8F2E6;
  --color-red:      #B7322B;
  --color-red-dark: #9A2A24;
  --color-blue:     #1E2A44;
  --color-blue-light: #2a3a5a;
  --white:          #ffffff;
  --text:           #3a3a3a;
  --text-light:     #595959;
  --border:         #e0d8cc;
  --shadow:         0 2px 8px rgba(0,0,0,.07);
  --shadow-lg:      0 8px 24px rgba(0,0,0,.12);
  --radius:         10px;
  --radius-sm:      6px;
  --max-w:          1100px;
  --transition:     .25s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: var(--color-red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-red-dark); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--color-blue);
  line-height: 1.25;
}
h1 { font-size: 2.75rem; font-weight: 800; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 600; }
p  { margin-bottom: 1rem; }

/* ---------- Utility ---------- */
.container    { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.section      { padding: 5rem 0; }
.section-alt  { background: var(--white); }
.text-center  { text-align: center; }
.text-red     { color: var(--color-red); }
.text-blue    { color: var(--color-blue); }
.text-muted   { color: var(--text-light); font-size: .95rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .8rem 1.75rem;
  border-radius: var(--radius);
  font-size: 1rem; font-weight: 600;
  font-family: 'Nunito Sans', sans-serif;
  border: none; cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--color-red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--color-red-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
}
.btn-secondary:hover {
  background: var(--color-blue);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--color-blue);
}

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--color-cream);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.site-header .container.nav-wrap { max-width: 1280px; }
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 100px;
  gap: 1.5rem;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 72px; width: auto; }
.nav-links { display: flex; gap: 1.75rem; list-style: none; align-items: center; }
.nav-links li { white-space: nowrap; }
.nav-links a {
  color: var(--color-blue);
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .4px;
}

@media (max-width: 1100px) {
  .nav-links { gap: 1.25rem; }
  .nav-links a { font-size: .8rem; letter-spacing: .3px; }
}
.nav-links a:hover, .nav-links a.active { color: var(--color-red); }
.mobile-contact-link { display: none; }

.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-actions .btn { padding: .55rem 1.25rem; font-size: .9rem; }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: .25rem; }
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--color-blue);
  margin: 5px 0; transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Mobile Nav ---------- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute; top: 80px; right: 0;
    width: 260px;
    background: var(--color-cream);
    padding: 1.5rem;
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: .75rem;
    z-index: 50;
    text-align: right;
  }
  .nav-links.open { display: flex; }
  .nav-actions {
    display: none;
  }
  .nav-actions.open {
    display: block;
    position: absolute; top: 80px; right: 0;
    z-index: 50;
  }
  .nav-actions.open .btn {
    display: none;
  }
  .hamburger { display: block; }
  .mobile-contact-link { display: list-item; }
  .nav-logo img { height: 56px; }
  .nav-wrap { height: 80px; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, var(--color-blue) 0%, #141e34 100%);
  color: var(--white);
  overflow: hidden;
}
.hero-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; font-size: 3rem; }
.hero .tagline {
  display: inline-block;
  color: var(--color-red);
  background: var(--color-cream);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  padding: .4rem 1rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.hero p  { color: rgba(255,255,255,.85); font-size: 1.15rem; margin-bottom: 2rem; }
.hero .btn-group { justify-content: center; margin-top: .5rem; }

@media (max-width: 768px) {
  .hero { padding: 3rem 0; }
  .hero h1 { font-size: 2rem; }
}

/* ---------- Section Headings ---------- */
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.section-heading h2 { margin-bottom: .5rem; }
.section-heading p  { color: var(--text-light); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ---------- Value Cards / Benefits ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.benefit-icon {
  width: 56px; height: 56px;
  background: rgba(183,50,43,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}
.benefit-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.benefit-card p  { font-size: .9rem; color: var(--text-light); margin-bottom: 0; }

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card.wide { grid-column: span 2; }
@media (max-width: 520px) { .service-card.wide { grid-column: span 1; } }
.service-card[style*="1 / -1"] { grid-column: 1 / -1 !important; }
.service-card[style*="1 / -1"]:hover { transform: none; }
.service-card-cta {
  background: var(--color-red) !important;
  border-color: var(--color-red) !important;
  color: var(--white) !important;
}
.service-card-cta h3 { color: var(--white); }
.service-card-cta p { color: rgba(255,255,255,.85) !important; }
.service-card-cta:hover {
  background: var(--color-red-dark) !important;
  border-color: var(--color-red-dark) !important;
  color: var(--white) !important;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.service-card p  { font-size: .9rem; color: var(--text-light); margin-bottom: .75rem; }
.service-card { display: flex; flex-direction: column; }
.service-card .price { margin-top: auto; margin-bottom: 0; }
.service-card .price {
  font-weight: 700;
  color: var(--color-red);
  font-size: .95rem;
}
.service-card-icon {
  font-size: 1.75rem;
  margin-bottom: .75rem;
}

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--color-blue), #141e34);
  color: var(--white);
  text-align: center;
  padding: 4rem 1.25rem;
}
.cta-band h2 { color: var(--white); margin-bottom: .75rem; }
.cta-band p  { color: rgba(255,255,255,.8); max-width: 540px; margin: 0 auto 2rem; font-size: 1.1rem; }

/* ---------- Page Header ---------- */
.page-header {
  background: linear-gradient(135deg, var(--color-blue), #141e34);
  color: var(--white);
  text-align: center;
  padding: 4rem 1.25rem 3rem;
}
.page-header h1 { color: var(--white); margin-bottom: .75rem; }
.page-header p  { color: rgba(255,255,255,.8); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* ---------- About Page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}
.about-photo {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}
.about-photo img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: auto;
}
.about-subtitle {
  font-size: 1.1rem;
  margin-top: .75rem;
  margin-bottom: 1.5rem;
}
.about-photo-placeholder {
  background: linear-gradient(135deg, #e8e0d4, #d8d0c4);
  border-radius: var(--radius-sm);
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
  font-size: .9rem;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 300px; margin: 0 auto; }
}

/* ---------- Services Detail ---------- */
.service-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: box-shadow var(--transition);
}
.service-block:hover { box-shadow: var(--shadow-lg); }
.service-block h3 { margin-bottom: .5rem; }
.service-block p { margin-bottom: .5rem; }
.service-block .price {
  font-weight: 700;
  color: var(--color-red);
  font-size: 1rem;
  margin-bottom: 0;
}

/* ---------- Store / Product Cards ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-img {
  background: linear-gradient(135deg, #e8e0d4, #d8d0c4);
  min-height: 180px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
  font-size: .9rem;
}
.product-info {
  padding: 1.25rem;
}
.product-info h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.product-info p { font-size: .9rem; color: var(--text-light); margin-bottom: .75rem; }
.product-info .btn { width: 100%; }

/* ---------- Resources ---------- */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.resource-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.resource-card p { font-size: .9rem; color: var(--text-light); margin-bottom: .75rem; }
.resource-icon { font-size: 1.75rem; margin-bottom: .75rem; }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  background: linear-gradient(135deg, #e8e0d4, #d8d0c4);
  min-height: 160px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: .9rem;
}
.blog-card-body { padding: 1.25rem; }
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.blog-card-body .date { font-size: .85rem; color: var(--text-light); margin-bottom: .5rem; }
.blog-card-body p { font-size: .9rem; color: var(--text-light); }

.blog-post { max-width: 720px; margin: 0 auto; padding: 3rem 1.25rem; }
.blog-post h1 { margin-bottom: .5rem; font-size: 2rem; }
.blog-post .date { font-size: .9rem; color: var(--text-light); margin-bottom: 2rem; }
.blog-post p { line-height: 1.8; }
.blog-post .back-link { display: inline-block; margin-top: 2rem; font-weight: 600; }

/* ---------- Placeholder / Coming Soon ---------- */
.coming-soon {
  text-align: center;
  padding: 4rem 1.25rem;
}
.coming-soon h2 { margin-bottom: 1rem; }
.coming-soon p { color: var(--text-light); max-width: 600px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ---------- Forms ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.form-wrap {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 700; font-size: .9rem; color: var(--color-blue);
  margin-bottom: .35rem;
}
.form-group label .label-hint {
  font-weight: 400;
  color: var(--text-light);
  font-size: .8rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: inherit;
  color: var(--color-blue);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(183,50,43,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group .error-msg {
  color: #e53e3e; font-size: .8rem; margin-top: .3rem; display: none;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #e53e3e; }
.form-group.has-error .error-msg { display: block; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}
.form-success.show { display: block; }
.form-success h3 { color: var(--color-red); margin-bottom: .5rem; }

.form-error {
  display: none;
  background: #fdecea;
  border: 1px solid #f5c2c0;
  border-radius: var(--radius-sm);
  color: #8a2b27;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  text-align: center;
}
.form-error.show { display: block; }
.form-error h3 { color: #8a2b27; font-size: 1rem; margin-bottom: .25rem; }
.form-error p { font-size: .9rem; margin-bottom: 0; }
.form-error a { color: #8a2b27; text-decoration: underline; }

.form-group.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Contact Sidebar ---------- */
.contact-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-sidebar h3 { margin-bottom: 1rem; }
.contact-sidebar-item { margin-bottom: 1.25rem; }
.contact-sidebar-item h4 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: .25rem;
}
.contact-sidebar-item p { font-size: .9rem; color: var(--text-light); margin-bottom: 0; }
.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--color-blue);
  color: var(--white);
  border-radius: 50%;
  font-size: .9rem;
  transition: background var(--transition);
}
.social-links a:hover { background: var(--color-red); color: var(--white); }

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none;
  text-align: left; padding: 1.25rem 2.5rem 1.25rem 0;
  font-size: 1rem; font-weight: 600; color: var(--color-blue);
  cursor: pointer; position: relative;
  font-family: inherit;
}
.faq-question::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 300; color: var(--text-light);
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}
.faq-answer p { margin: 0; font-size: .95rem; color: var(--text); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-blue);
  color: rgba(255,255,255,.7);
  padding: 3rem 0 1.5rem;
  font-size: .9rem;
}
.footer-grid {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand { max-width: 320px; }
.footer-brand img { height: 80px; margin-bottom: .75rem; }
.footer-brand p { margin: 0; font-family: 'Playfair Display', serif; font-style: italic; }
.footer-links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.7); }
.footer-links a:hover { color: var(--color-red); }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--white);
}
.footer-social a svg, .social-links a svg { display: block; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.25rem;
  text-align: center;
  font-size: .8rem;
}

/* ---------- Welcome Choice Modal ---------- */
.welcome-modal {
  position: fixed; inset: 0;
  background: linear-gradient(135deg, rgba(30,42,68,.97), rgba(20,30,52,.97));
  z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  padding: 2rem 1.25rem;
  overflow-y: auto;
}
.welcome-modal.open { display: flex; }
body.welcome-lock { overflow: hidden; }

.welcome-modal-inner {
  max-width: 760px;
  width: 100%;
  text-align: center;
  animation: welcomeFade .4s ease;
}
@keyframes welcomeFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.welcome-heading {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 2.25rem;
}
.welcome-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.welcome-choice {
  background: var(--color-cream);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  color: var(--color-blue);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 140px;
}
.welcome-choice:hover {
  transform: translateY(-3px);
  border-color: var(--color-red);
  box-shadow: var(--shadow-lg);
}
.welcome-choice-main {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.2;
}
.welcome-choice-sub {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.4;
}
@media (max-width: 640px) {
  .welcome-heading { font-size: 1.75rem; margin-bottom: 1.5rem; }
  .welcome-choices { grid-template-columns: 1fr; gap: .85rem; }
  .welcome-choice { min-height: auto; padding: 1.25rem 1.1rem; }
  .welcome-choice-main { font-size: 1.3rem; }
  .welcome-choice-sub { font-size: .88rem; }
}

/* ---------- Shop Layout ---------- */
.shop-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 2rem;
  align-items: start;
}
.shop-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 120px;
}
fieldset.shop-sidebar-group { border: none; padding: 0; }
.shop-sidebar-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.5rem;
}
.shop-sidebar-group:last-child { margin-bottom: 0; }
.shop-sidebar-heading {
  font-family: 'Nunito Sans', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--color-blue);
  margin-bottom: .4rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--border);
}
.shop-main { min-width: 0; }
.shop-checkbox {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  padding: .35rem 0;
  transition: color var(--transition);
}
.shop-checkbox:hover { color: var(--color-red); }
.shop-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-red);
  cursor: pointer;
}
@media (max-width: 768px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
}

/* ---------- Shop Product Grid ---------- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.shop-product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.shop-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}
.shop-product-card.hidden { display: none; }
.shop-product-img {
  background: var(--white);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.shop-product-img img {
  max-height: 160px;
  max-width: 100%;
  object-fit: contain;
}
.shop-product-info {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.shop-product-info h3 {
  font-size: 1.05rem;
  margin-bottom: .35rem;
  color: var(--color-blue);
}
.shop-product-info p {
  font-size: .9rem;
  color: var(--text-light);
  margin-bottom: .75rem;
  flex: 1;
}
.shop-product-category {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--color-red);
  margin-bottom: .4rem;
}
.shop-product-price {
  font-weight: 700;
  color: var(--color-blue);
  font-size: 1rem;
}
.shop-no-results {
  text-align: center;
  padding: 2rem;
  color: var(--text-light);
  font-size: 1.05rem;
}

.shop-noncustom-btn {
  font-size: .95rem;
  padding: .75rem 3rem;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .shop-noncustom-btn {
    white-space: normal;
    text-align: center;
    padding: .75rem 1.5rem;
  }
}

/* ---------- Misc ---------- */
.legal-content { max-width: 720px; margin: 0 auto; padding: 3rem 1.25rem; }
.legal-content h1 { margin-bottom: 1.5rem; font-size: 2rem; }
.legal-content h2 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: .75rem; }
.legal-content p { line-height: 1.8; }
.legal-content ul { margin: 0 0 1rem 1.5rem; line-height: 1.8; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 3rem 0; }
  .cta-band { padding: 3rem 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto !important; }
}
