/* ============================================
   DISCOUNT APPLIANCE DEALS — Custom Styles
   ============================================ */

/* --- CSS Variables (Design System) --- */
:root {
  /* Primary */
  --navy-900: #1B2A4A;
  --navy-800: #162240;
  --navy-700: #2A3D66;
  --navy-600: #3A5080;

  /* Gold / Accent */
  --gold-500: #C9A96E;
  --gold-400: #D4B87E;
  --gold-300: #E8DFD0;
  --gold-200: #F5F0E8;
  --gold-100: #FAF7F2;

  /* Pricing */
  --price-sale: #E63946;
  --price-original: #1A1A1A;
  --price-financing: #C9A96E;

  /* Trust / Utility */
  --green-trust: #2D8A56;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --text-dark: #1A1A1A;
  --text-muted: #8B7D6B;
  --text-light: #F1ECE0;
  --text-light-muted: #8899B5;

  /* Badges */
  --badge-bg: #1B2A4A;
  --badge-text: #C9A96E;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--gold-100);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: "DM Serif Display", serif;
  line-height: 1.2;
  font-weight: 400;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 34px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 56px 0;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-call {
  background: var(--gold-500);
  color: var(--navy-900);
}
.btn-call:hover {
  background: var(--gold-400);
}

.btn-text {
  background: var(--green-trust);
  border: 2px solid var(--green-trust);
  color: var(--white);
}
.btn-text:hover {
  background: #24714A;
  border-color: #24714A;
  color: var(--white);
}

.btn-dark {
  background: var(--navy-900);
  color: var(--gold-500);
}
.btn-dark:hover {
  background: var(--navy-700);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.125rem;
}

/* --- Announcement Strip --- */
.announcement-strip {
  background: var(--gold-500);
  color: var(--navy-900);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy-900);
  border-bottom: 1px solid var(--navy-700);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  white-space: nowrap;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-brand-location {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-500);
  opacity: 0.7;
  letter-spacing: 0.02em;
}

.nav-brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gold-500);
  color: var(--navy-900);
  border-radius: 8px;
  font-family: "DM Serif Display", serif;
  font-size: 1rem;
  font-weight: 700;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-light-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-500);
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-ctas .btn {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.nav-ctas .btn-text-desktop {
  display: none;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  background: var(--navy-800);
  border-top: 1px solid var(--navy-700);
  padding: 20px;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  color: var(--text-light-muted);
  font-size: 1.0625rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--navy-700);
  transition: color 0.2s;
}
.nav-mobile a:last-child {
  border-bottom: none;
}
.nav-mobile a:hover {
  color: var(--gold-500);
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
  .nav-hamburger {
    display: none;
  }
  .nav-ctas .btn-text-desktop {
    display: inline-flex;
  }
}

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--text-light);
  text-align: center;
  padding: 48px 0 54px;
}

.hero-price-old {
  color: var(--white);
  text-decoration: line-through;
  text-decoration-thickness: 3px;
}

.hero-price-new {
  color: var(--gold-500);
  font-weight: 700;
}

.hero-financing-link {
  display: block;
  text-align: center;
  color: var(--gold-500);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-top: -16px;
  margin-bottom: 24px;
  transition: opacity 0.2s;
}

.hero-financing-link:hover {
  opacity: 0.8;
}

.hero-eyebrow {
  display: inline-block;
  color: var(--gold-500);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 2.25rem;
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto 16px;
}

.hero-sub {
  color: var(--text-light);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

.hero-social-proof {
  color: var(--text-light-muted);
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.hero-social-proof .stars {
  color: var(--gold-500);
  font-size: 0.9375rem;
  margin-right: 4px;
}

.hero-brands {
  color: var(--gold-500);
  opacity: 0.6;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .hero {
    padding: 60px 0 72px;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
  .hero-sub {
    font-size: 1.25rem;
  }
}

/* --- Page Hero (smaller, for inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--text-light);
  text-align: center;
  padding: 48px 0;
}

.page-hero h1 {
  color: var(--text-light);
  margin-bottom: 8px;
}

.page-hero p {
  color: var(--text-light-muted);
  font-size: 1.0625rem;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 64px 0;
  }
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--gold-200);
  padding: 28px 0;
  border-top: 2px solid var(--gold-500);
}

.trust-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold-500);
  fill: none;
  stroke-width: 1.5;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}

.trust-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 14px;
  font-size: 2rem;
}

.trust-item h4 {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* --- Product Card --- */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}

.product-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.product-image {
  position: relative;
  background: var(--gold-200);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-real-image {
  position: absolute;
  inset: 16px;
  opacity: 0;
  transition: opacity 0.3s;
  object-fit: contain;
}

.product-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  opacity: 0.5;
  position: relative;
  z-index: 0;
}

.product-image-placeholder svg {
  width: 48px;
  height: 48px;
}

.product-placeholder-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}

.product-model {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-family: monospace;
}

.product-specs-link {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.product-specs-link:hover {
  color: var(--gold-500);
}

.modal-model {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-family: monospace;
  margin-bottom: 8px;
}

.modal-savings {
  font-size: 0.9375rem;
  color: var(--green-trust);
  font-weight: 600;
  margin-bottom: 6px;
}

.modal-specs-link {
  display: inline-block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  transition: color 0.2s;
}

.modal-specs-link:hover {
  color: var(--gold-500);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--badge-bg);
  color: var(--badge-text);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.product-badge {
  z-index: 2;
}

.product-body {
  padding: 16px;
}

.product-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.4;
}

/* product-savings-line removed — savings and financing now stacked left-aligned */

.product-cta-text {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: var(--navy-900);
  border: 2px solid var(--navy-900);
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 8px 16px;
  border-radius: 8px;
  margin-top: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.product-cta-text:hover {
  background: var(--navy-900);
  color: var(--gold-500);
}

.product-name {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.product-condition {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.product-pricing {
  margin-bottom: 12px;
}

.product-prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.product-sale-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--price-sale);
}

.product-msrp {
  font-size: 0.9375rem;
  color: #333333;
  text-decoration: line-through;
}

.product-savings {
  font-size: 0.8125rem;
  color: var(--green-trust);
  font-weight: 600;
  margin-top: 2px;
}

.product-location {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 12px;
}

.product-text-link {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: var(--gold-500);
  margin-top: 8px;
  font-weight: 500;
}

.product-text-link:hover {
  text-decoration: underline;
}

.product-financing {
  font-size: 0.8125rem;
  color: var(--price-financing);
  font-weight: 500;
}

.product-warranty {
  display: block;
  font-size: 0.6875rem;
  color: var(--green-trust);
  font-weight: 500;
  margin-bottom: 10px;
}

.product-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--navy-900);
  color: var(--gold-500);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.product-cta:hover {
  background: var(--navy-700);
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  color: var(--navy-900);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* --- How It Works --- */
.section-how-it-works {
  padding: 20px 0;
}

@media (min-width: 768px) {
  .section-how-it-works {
    padding: 34px 0;
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.step-card {
  text-align: center;
  padding: 20px 16px;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--navy-900);
  color: var(--gold-500);
  font-family: "DM Serif Display", serif;
  font-size: 1.25rem;
  border-radius: 50%;
  margin-bottom: 16px;
}

.step-card h3 {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    position: relative;
  }
  .steps-grid::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 20%;
    right: 20%;
    height: 0;
    border-top: 2px dashed var(--gold-300);
    z-index: 0;
  }
  .step-number {
    position: relative;
    z-index: 1;
  }
}

.step-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-500);
}

.step-link:hover {
  text-decoration: underline;
}

/* --- Category Grid --- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold-200);
  padding: 28px 16px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.2s;
  border: 1px solid var(--gold-300);
}

.category-card:hover {
  border-color: var(--gold-500);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.category-icon {
  font-size: 3.5rem;
  color: var(--navy-900);
  line-height: 1;
}

.category-price {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.category-card span {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy-900);
}

@media (min-width: 640px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --- Location Cards --- */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.location-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border-left: 4px solid var(--gold-500);
}

.location-badge {
  display: inline-block;
  background: var(--green-trust);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.location-map {
  height: 220px;
  background: var(--gold-200);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-info {
  padding: 28px;
}

.location-info h3 {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy-900);
  margin-bottom: 16px;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  color: var(--text-dark);
}

.location-detail-icon {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  color: var(--gold-500);
}

.location-serving {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gold-300);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.location-ctas {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Reviews / Testimonials --- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.review-card {
  background: var(--white);
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  position: relative;
}

.review-quote-icon {
  color: var(--gold-500);
  font-family: "DM Serif Display", serif;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 4px;
  opacity: 0.5;
}

.review-cta-link {
  display: inline-block;
  margin-top: 28px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gold-500);
}

.review-cta-link:hover {
  text-decoration: underline;
}

.review-stars {
  color: var(--gold-500);
  font-size: 1rem;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.9375rem;
  color: var(--text-dark);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}

.review-author {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy-900);
}

.review-badge {
  font-size: 0.75rem;
  color: var(--green-trust);
  font-weight: 500;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--text-light);
  text-align: center;
  padding: 40px 0;
}

.cta-banner .btn-xl {
  padding: 20px 44px;
  font-size: 1.25rem;
}

.cta-banner h2 {
  color: var(--text-light);
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--text-light-muted);
  margin-bottom: 28px;
  font-size: 1.0625rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* --- Footer --- */
.footer {
  background: var(--navy-900);
  color: var(--text-light-muted);
  padding: 56px 0 0;
  border-top: 1px solid var(--navy-700);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.875rem;
  margin: 12px 0;
  line-height: 1.6;
}

.footer-phone {
  color: var(--gold-500);
  font-weight: 600;
  font-size: 1rem;
}

.footer h4 {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul a {
  color: var(--text-light-muted);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer ul a:hover {
  color: var(--gold-500);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--navy-700);
  color: var(--text-light-muted);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--gold-500);
  color: var(--navy-900);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-serving {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-light-muted);
  padding: 16px 0 0;
  border-top: 1px solid var(--navy-700);
}

.footer-bottom {
  padding: 12px 0 20px;
  text-align: center;
  font-size: 0.8125rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

/* --- Floating Mobile CTA --- */
.mobile-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}

.mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
}

.mobile-cta-call {
  background: var(--gold-500);
  color: var(--navy-900);
}

.mobile-cta-text {
  background: var(--navy-900);
  color: var(--gold-500);
}

@media (min-width: 1024px) {
  .mobile-cta {
    display: none;
  }
}

/* Add bottom padding on mobile to account for floating CTA */
body {
  padding-bottom: 60px;
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
}

/* --- Filter Bar (Inventory) --- */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gold-300);
  padding: 16px 0;
  position: sticky;
  top: 72px;
  z-index: 100;
}

.filter-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.filter-select {
  flex: 1;
  min-width: 140px;
  padding: 10px 14px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.875rem;
  border: 1px solid var(--gold-300);
  border-radius: 8px;
  background: var(--white);
  color: var(--text-dark);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238B7D6B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.filter-select:focus {
  outline: none;
  border-color: var(--gold-500);
}

.filter-count {
  font-size: 0.875rem;
  color: var(--text-muted);
  width: 100%;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .filter-inner {
    flex-wrap: nowrap;
  }
  .filter-count {
    width: auto;
    margin-top: 0;
    margin-left: auto;
    white-space: nowrap;
  }
}

/* --- Search Input --- */
.filter-search {
  margin-bottom: 12px;
}

.filter-search-input {
  width: 100%;
  padding: 10px 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9375rem;
  border: 1px solid var(--gold-300);
  border-radius: 8px;
  background: var(--white);
  color: var(--text-dark);
}

.filter-search-input:focus {
  outline: none;
  border-color: var(--gold-500);
}

.filter-search-input::placeholder {
  color: var(--text-muted);
}

/* --- Inline CTA Banner (between products) --- */
.inline-cta-banner {
  grid-column: 1 / -1;
  background: var(--gold-200);
  border-left: 4px solid var(--gold-500);
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--navy-900);
  line-height: 1.5;
}

.inline-cta-banner a {
  color: var(--gold-500);
  font-weight: 600;
  text-decoration: underline;
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-500);
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--navy-700);
}

/* --- Product Modal --- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gold-300);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--text-dark);
  z-index: 1;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--gold-200);
}

.modal-image {
  height: 260px;
  background: var(--gold-200);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px 16px 0 0;
  position: relative;
}

.modal-body {
  padding: 28px;
}

.modal-brand {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.modal-name {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.modal-condition {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.modal-condition-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-style: italic;
}

.modal-pricing {
  background: var(--gold-100);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.modal-prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}

.modal-sale-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--price-sale);
}

.modal-msrp {
  font-size: 1.125rem;
  color: var(--price-original);
  text-decoration: line-through;
  opacity: 0.7;
}

.modal-financing {
  font-size: 0.9375rem;
  color: var(--price-financing);
  font-weight: 500;
  margin-bottom: 8px;
}

.modal-warranty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--green-trust);
  font-weight: 500;
}

.modal-location {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.modal-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-ctas .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 480px) {
  .modal-ctas {
    flex-direction: row;
  }
  .modal-ctas .btn {
    width: auto;
    flex: 1;
  }
}

/* --- Contact Cards --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.contact-card {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.contact-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.contact-card .phone-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
  display: block;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Contact Form --- */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy-900);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  border: 1px solid var(--gold-300);
  border-radius: 8px;
  background: var(--white);
  color: var(--text-dark);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* --- FAQ --- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gold-300);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-900);
  text-align: left;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold-500);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
  content: "\2212";
}

.faq-answer {
  display: none;
  padding-bottom: 20px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* --- About Page --- */
.about-story {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-story p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.about-card {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.about-card h3 {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--navy-900);
  margin-bottom: 12px;
}

.about-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Explainer Box --- */
.explainer-box {
  background: var(--white);
  border: 1px solid var(--gold-300);
  border-radius: 12px;
  padding: 36px;
  max-width: 720px;
  margin: 0 auto;
}

.explainer-box h3 {
  color: var(--navy-900);
  margin-bottom: 12px;
}

.explainer-box p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Utilities --- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--gold-500);
  font-size: 1rem;
  margin-top: 32px;
  transition: gap 0.2s;
}

.view-all-link:hover {
  gap: 10px;
}

.view-all-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--navy-900);
  color: var(--gold-500);
  font-weight: 700;
  font-size: 1.0625rem;
  padding: 16px 28px;
  border-radius: 8px;
  margin-top: 28px;
  transition: background 0.2s;
}

.view-all-btn:hover {
  background: var(--navy-700);
}

/* --- No Results --- */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.no-results p {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

/* ============================================
   PRODUCT DETAIL PAGE (PDP)
   ============================================ */

.pdp-breadcrumb {
  background: var(--white);
  padding: 12px 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--gold-300);
}

.pdp-breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.pdp-breadcrumb a:hover {
  color: var(--gold-500);
}

.pdp-section {
  padding: 32px 0 40px;
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .pdp-grid {
    grid-template-columns: 3fr 2fr;
    gap: 40px;
  }
}

/* --- PDP Images --- */
.pdp-images {
  position: relative;
}

.pdp-hero-image {
  background: var(--gold-200);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  max-height: 460px !important;
  height: 460px;
}

.pdp-hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 460px !important;
}

.pdp-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.pdp-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--gold-300);
  background: var(--gold-200);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s;
}

.pdp-thumb.active,
.pdp-thumb:hover {
  border-color: var(--gold-500);
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-image-count {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* --- PDP Details --- */
.pdp-details {
  padding-top: 8px;
}

.pdp-badge {
  display: inline-block;
  background: var(--badge-bg);
  color: var(--badge-text);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.pdp-title {
  font-family: "DM Serif Display", serif;
  font-size: 1.75rem;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .pdp-title {
    font-size: 2rem;
  }
}

.pdp-brand-model {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.pdp-condition {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.pdp-location {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pdp-price-block {
  background: var(--gold-100);
  border: 1px solid var(--gold-300);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

.pdp-sale-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--price-sale);
  line-height: 1;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .pdp-sale-price {
    font-size: 3rem;
  }
}

.pdp-msrp {
  font-size: 1.25rem;
  color: #333;
  text-decoration: line-through;
  margin-bottom: 6px;
}

.pdp-savings {
  font-size: 1.125rem;
  color: var(--green-trust);
  font-weight: 700;
  margin-bottom: 4px;
}

.pdp-financing {
  font-size: 1rem;
  color: var(--price-financing);
  font-weight: 500;
}

.pdp-payment-methods {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pdp-warranty {
  font-size: 0.875rem;
  color: var(--green-trust);
  font-weight: 600;
  margin-bottom: 20px;
}

.pdp-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.pdp-cta-btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
}

.pdp-specs-link {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.pdp-specs-link:hover {
  color: var(--gold-500);
}

/* --- PDP Description --- */
.pdp-description-section {
  background: var(--gold-100);
  padding: 32px 0;
}

.pdp-description-section h2 {
  font-family: "DM Serif Display", serif;
  font-size: 1.5rem;
  color: var(--navy-900);
  margin-bottom: 12px;
}

.pdp-description-section p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 720px;
}
