/* ============================================================
   Range O Matic Archery — Main Stylesheet
   Color Palette: Red #C8102E | Dark #1A1A1A | White #FFFFFF
   ============================================================ */

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #1A1A1A;
  background: #FFFFFF;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- CSS Variables ----------------------------------------- */
:root {
  --red:        #C8102E;
  --red-dark:   #A00D24;
  --red-light:  #E8162E;
  --dark:       #1A1A1A;
  --dark-2:     #2D2D2D;
  --gray:       #6B7280;
  --light:      #F5F5F5;
  --border:     #E5E7EB;
  --white:      #FFFFFF;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.12);
  --shadow-md:  0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.16);
  --radius:     6px;
  --radius-lg:  12px;
  --transition: .25s ease;
  --max-w:      1200px;
}

/* --- Typography -------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { color: var(--gray); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .5rem;
}

/* --- Layout Utilities -------------------------------------- */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.text-center { text-align: center; }
.text-red    { color: var(--red); }
.bg-dark     { background: var(--dark); }
.bg-light    { background: var(--light); }

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200,16,46,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}

/* --- Navigation -------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links a,
.nav-dropdown > button {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem .9rem;
  border-radius: var(--radius);
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  transition: var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}
.nav-links a:hover,
.nav-dropdown > button:hover,
.nav-links a.active,
.nav-dropdown > button.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

/* Dropdown */
.nav-dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  overflow: hidden;
  border: 1px solid var(--border);
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: .75rem 1.25rem;
  color: var(--dark);
  font-size: .875rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.dropdown-menu a:hover {
  background: var(--light);
  color: var(--red);
  border-left-color: var(--red);
}

/* Chevron */
.chevron {
  width: 14px; height: 14px;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.nav-dropdown:hover .chevron { transform: rotate(180deg); }

/* CTA in nav */
.nav-cta { margin-left: .75rem; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  background: var(--dark-2);
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: .65rem 0;
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .mobile-sub {
  padding-left: 1rem;
}
.nav-mobile .mobile-sub a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  border-bottom: none;
  padding: .4rem 0;
}
.nav-mobile .mobile-sub a:hover { color: var(--red); }
.mobile-section-label {
  color: var(--red);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .65rem 0 .25rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* --- Hero Section ------------------------------------------ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(200,16,46,.18) 0%, rgba(0,0,0,0) 60%),
    linear-gradient(to right, #1A1A1A 40%, #2D2D2D 100%);
}

/* Decorative lines */
.hero-bg::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  background: linear-gradient(135deg, transparent 30%, rgba(200,16,46,.06) 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  right: 5%;
  top: 20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(200,16,46,.15);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 5rem 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,16,46,.15);
  border: 1px solid rgba(200,16,46,.3);
  color: #FF4F6B;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--red); }
.hero p { color: rgba(255,255,255,.7); font-size: 1.1rem; margin-bottom: 2rem; max-width: 520px; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero stat strip */
.hero-stats {
  margin-top: 3.5rem;
  display: flex;
  gap: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--red); }
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .2rem;
}

/* Page Hero (inner pages) */
.page-hero {
  background: var(--dark);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 0; top: -50%; bottom: -50%;
  width: 40%;
  background: linear-gradient(135deg, transparent 0%, rgba(200,16,46,.05) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.6); max-width: 580px; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.5); }
.page-hero .breadcrumb a:hover { color: var(--red); }
.page-hero .breadcrumb span { color: rgba(255,255,255,.25); }

/* --- Section Headers --------------------------------------- */
.section-header { margin-bottom: 3rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p  { max-width: 560px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* --- Cards ------------------------------------------------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,16,46,.2);
}

.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: rgba(200,16,46,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.card-icon svg { width: 24px; height: 24px; color: var(--red); }

.card-body { padding: 1.75rem; }
.card-body h3 { margin-bottom: .5rem; }
.card-body p  { font-size: .9rem; }

/* Product Cards */
.product-card {
  display: flex;
  flex-direction: column;
}
.product-card .card-img {
  background: var(--dark);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card .card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,16,46,.2) 0%, transparent 70%);
}
.product-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card .card-footer {
  padding: 0 1.75rem 1.75rem;
  margin-top: auto;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  padding: .25rem .7rem;
  background: rgba(200,16,46,.1);
  color: var(--red);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: .75rem;
}

/* --- Feature List ------------------------------------------ */
.feature-list { display: flex; flex-direction: column; gap: .75rem; margin: 1.25rem 0; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--gray);
}
.feature-item .check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(200,16,46,.12);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem;
}
.feature-item .check svg { width: 10px; height: 10px; }

/* --- YouTube Video Embed ----------------------------------- */
.video-section { padding: 4rem 0; background: var(--dark); }
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* --- Product Detail Layout --------------------------------- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.product-detail-info { }
.product-detail-info h2 { margin-bottom: 1rem; }
.product-detail-info .product-badge { margin-bottom: 1rem; }

.product-specs {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.product-specs h4 {
  margin-bottom: 1rem;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .875rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-label { font-weight: 600; color: var(--dark); }
.spec-value { color: var(--gray); text-align: right; max-width: 60%; }

/* Color Swatches */
.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .75rem;
}
.swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--border);
  cursor: default;
  transition: transform var(--transition);
}
.swatch:hover { transform: scale(1.2); }
.swatch.red    { background: #C8102E; }
.swatch.white  { background: #FFFFFF; box-shadow: 0 0 0 1px #ccc; }
.swatch.blue   { background: #003087; }
.swatch.yellow { background: #FFD700; }
.swatch.black  { background: #1A1A1A; }
.swatch.green  { background: #2D6A4F; }
.swatch.pink   { background: #FF69B4; }
.swatch.orange { background: #FF6B35; }

/* --- FAQ --------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  background: var(--white);
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--light); }
.faq-item.open .faq-question { background: var(--light); color: var(--red); }

.faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--red);
  transform: rotate(45deg);
}
.faq-icon svg { width: 10px; height: 10px; color: var(--white); }

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-answer { display: block; }

/* --- Contact ----------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-info-block:hover { border-color: rgba(200,16,46,.3); }
.contact-info-blocks { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }

.contact-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: rgba(200,16,46,.1);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--red); }
.contact-info-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray); margin-bottom: .2rem; }
.contact-info-value { font-weight: 600; color: var(--dark); font-size: .95rem; }
.contact-info-value a { color: var(--red); }
.contact-info-value a:hover { text-decoration: underline; }

/* Contact Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 1.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--dark); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* --- Feature Banner ---------------------------------------- */
.feature-banner {
  background: var(--red);
  padding: 1rem 0;
}
.feature-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.banner-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.9);
  font-size: .875rem;
  font-weight: 500;
}
.banner-item svg { width: 18px; height: 18px; color: rgba(255,255,255,.8); flex-shrink: 0; }

/* --- Why Choose Us ----------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-item {
  text-align: center;
  padding: 2rem 1.25rem;
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(200,16,46,.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.why-icon svg { width: 26px; height: 26px; color: var(--red); }
.why-item h4 { margin-bottom: .5rem; }
.why-item p  { font-size: .875rem; }

/* --- Testimonial ------------------------------------------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: .75rem;
  right: 1.25rem;
  font-size: 4rem;
  line-height: 1;
  color: rgba(200,16,46,.12);
  font-family: Georgia, serif;
}
.stars { color: #F59E0B; font-size: 1rem; margin-bottom: .75rem; letter-spacing: 2px; }
.testimonial-text { font-size: .9rem; color: var(--gray); margin-bottom: 1rem; }
.testimonial-author { font-weight: 700; font-size: .875rem; color: var(--dark); }
.testimonial-title  { font-size: .8rem; color: var(--gray); }

/* --- CTA Banner -------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(200,16,46,.1);
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(200,16,46,.08);
}
.cta-banner > .container { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p  { color: rgba(255,255,255,.6); max-width: 520px; margin: 0 auto 2rem; }
.cta-actions   { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Footer ------------------------------------------------ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand img { height: 38px; margin-bottom: 1.25rem; }
.footer-brand p {
  font-size: .875rem;
  line-height: 1.7;
  max-width: 280px;
  color: rgba(255,255,255,.5);
}

.footer-col h4 {
  color: var(--white);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--red); }

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}
.social-link {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.social-link:hover { background: var(--red); color: var(--white); }
.social-link svg { width: 16px; height: 16px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--red); }

/* --- Sizes Table ------------------------------------------- */
.sizes-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
  margin-top: .75rem;
}
.sizes-table th {
  background: var(--dark);
  color: var(--white);
  padding: .6rem .9rem;
  text-align: left;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.sizes-table td {
  padding: .6rem .9rem;
  border-bottom: 1px solid var(--border);
  color: var(--gray);
}
.sizes-table tr:last-child td { border-bottom: none; }
.sizes-table tr:nth-child(even) td { background: var(--light); }

/* --- Notice Banner ----------------------------------------- */
.notice {
  background: rgba(200,16,46,.08);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  font-size: .875rem;
  color: var(--dark);
  margin: 1.5rem 0;
}

/* --- Responsive -------------------------------------------- */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-detail { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-banner-inner { gap: 1.25rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .section { padding: 3rem 0; }
  .hero-content { padding: 3rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .cta-actions  { flex-direction: column; align-items: center; }
  .why-grid { grid-template-columns: 1fr; }
}
