/* Dark theme inspired by chromium.themes.zone/tires */
:root {
  --bg: #ffffff;
  --panel: #f8f9fa;
  --muted: #4b5563;
  --accent: #ffcc00;
  --accent-2: #ffb400;
  --surface: rgba(0, 0, 0, 0.05);
  --glass: rgba(0, 0, 0, 0.05);
  --max-width: 1200px;
  --radius: 12px;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* Fade-in animation for sections */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply animations to sections */
.hero {
  animation: fadeIn 0.8s ease-out;
}

.section {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.section:nth-child(2) {
  animation-delay: 0.1s;
}

.section:nth-child(3) {
  animation-delay: 0.2s;
}

.section:nth-child(4) {
  animation-delay: 0.3s;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 204, 0, 0.15);
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: 'Montserrat', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  color: #111111;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px
}

/* Cart Counter Badge */
.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none; /* Hidden when 0 */
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
  z-index: 100;
  line-height: 1;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 30;
  padding: 0;
  background: #064a80;
}

.header-inner {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 12px;
}

.logo {
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800
}

.logo img {
  width: 240px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}

.map-embed {
  border: 0;
  display: block;
}

.logo span {
  margin-left: 10px;
  font-size: 1.05rem;
  color: #ffffff
}

.nav-desktop {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center
}

.nav-desktop a {
  color: #ffffff;
  text-decoration: none;
  padding: 8px 0 12px;
  border-radius: 6px;
  white-space: nowrap;
}

.nav-desktop .btn {
  min-width: 0;
}

.nav-desktop .btn.ghost {
  padding: 8px 12px;
}

.nav-desktop a:hover {
  color: #a68824
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px
}

.nav-desktop .btn.primary {
  background: #ffcc00;
  color: #000;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 10px;
  text-transform: none;
  border: none;
  min-width: 140px;
}

.user-profile-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  margin-left: 10px;
  font-weight: 600;
}

.user-avatar-small {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  object-fit: cover;
}

.logout-link {
  color: white;
  font-size: 1.4rem;
  margin-left: 5px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.logout-link:hover {
  opacity: 1;
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  margin-left: 15px;
  color: #ffffff;
  font-size: 0.8rem;
  line-height: 1.2;
}

.header-contact .phone {
  font-weight: 800;
  font-size: 1rem;
  color: white;
  text-decoration: none;
}

.header-contact .address {
  opacity: 0.8;
  max-width: 120px;
  text-align: right;
}

.header-contact a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.contact-info a,
.location-info a,
.info-item a {
  color: inherit;
  text-decoration: none;
}

.contact-info a:hover,
.location-info a:hover,
.info-item a:hover {
  text-decoration: underline;
}

.header-contact .address {
  opacity: 0.9;
  white-space: normal;
  text-align: right;
}

.header-icons {
  display: flex;
  gap: 8px;
  align-items: center
}

.header-icons a.social {
  color: #ffffff;
}

.header-icons a.social:hover {
  color: #ffffff;
}

.icon-btn {
  background: transparent;
  border: 0;
  color: #ffffff;
  padding: 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.icon-btn .icon,
.icon-btn i.bi {
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 1;
  display: inline-block
}

.header-socials {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: 12px
}

.header-socials .social {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.header-socials .social svg {
  display: block
}

.header-socials .social:hover {
  color: #ffcc26
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #ffffff;
  padding: 6px;
  border-radius: 6px;
  position: relative;
  z-index: 60
}

/* hamburger animation */
.menu-toggle {
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center
}

.hamburger {
  display: inline-block;
  width: 26px;
  height: 20px;
  position: relative
}

.bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--muted);
  border-radius: 2px;
  transition: transform .28s cubic-bezier(.2, .9, .3, 1), opacity .2s
}

.bar1 {
  top: 0
}

.bar2 {
  top: 9px
}

.bar3 {
  bottom: 0
}

.menu-toggle.open .bar1 {
  transform: translateY(9px) rotate(45deg);
  background: #fff
}

.menu-toggle.open .bar2 {
  opacity: 0
}

.menu-toggle.open .bar3 {
  transform: translateY(-9px) rotate(-45deg);
  background: #fff
}

/* overlay (si JS lo crea) */

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  z-index: 40
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto
}

/* Modal (tire finder) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 80;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(980px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  background: #ffffff;
  color: #071428;
  border-radius: 16px;
  border: 1px solid rgba(7, 20, 40, 0.14);
  box-shadow: 0 28px 90px rgba(2, 6, 23, 0.75);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 90;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(7, 20, 40, 0.10);
}

.modal-head h2 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.modal-head-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-powered {
  font-size: 0.78rem;
  color: rgba(7, 20, 40, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.modal-powered strong {
  color: rgba(7, 20, 40, 0.78);
  font-weight: 800;
}

.modal-close {
  border: 0;
  background: transparent;
  color: rgba(7, 20, 40, 0.7);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(7, 20, 40, 0.06);
}

.modal-body {
  padding: 18px 20px 22px;
}

@media (max-width: 680px) {
  /* Mobile-only: Shop for Tires modal */
  #tire-finder-modal.modal {
    inset: 0;
    left: auto;
    top: auto;
    transform: none;
    width: auto;
    height: auto;
    max-height: none;
    border-radius: 0;
    overflow-x: hidden;
  }

  #tire-finder-modal .modal-head {
    padding: 14px 14px;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  #tire-finder-modal .modal-head h2 {
    font-size: 1.25rem;
  }

  #tire-finder-modal .modal-head-right {
    width: 100%;
    justify-content: space-between;
  }

  #tire-finder-modal .modal-powered {
    white-space: normal;
  }

  #tire-finder-modal .modal-body {
    padding: 14px 14px 18px;
    padding-bottom: max(18px, env(safe-area-inset-bottom));
    overflow-x: hidden;
  }

  #tire-finder-modal .tire-finder {
    padding: 14px;
  }

  #tire-finder-modal .tire-finder-top {
    flex-direction: column;
    align-items: stretch;
  }

  #tire-finder-modal .tire-finder-top label {
    text-align: left;
  }

  #tire-finder-modal .tire-finder-submit {
    max-width: none;
  }
}

/* Coupons / Specials modal */
.coupons-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 14px;
  border: 1px solid rgba(7, 20, 40, 0.12);
  border-radius: 14px;
  background: rgba(7, 20, 40, 0.02);
  margin-bottom: 16px;
}

.coupons-lead {
  margin: 0;
  font-weight: 700;
  color: rgba(7, 20, 40, 0.78);
}

.coupons-actions {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.coupon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.coupon-card {
  border: 1px dashed rgba(7, 20, 40, 0.26);
  border-radius: 14px;
  padding: 14px 14px 12px;
  background: #ffffff;
  position: relative;
}

.coupon-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.coupon-value {
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(7, 20, 40, 0.92);
  background: rgba(255, 204, 0, 0.22);
  border: 1px solid rgba(255, 204, 0, 0.55);
  padding: 6px 10px;
  border-radius: 999px;
  line-height: 1;
}

.coupon-tag {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  color: rgba(7, 20, 40, 0.62);
}

.coupon-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.coupon-card p {
  margin: 0 0 10px;
  color: rgba(7, 20, 40, 0.72);
  font-weight: 600;
}

.coupon-terms {
  margin: 0 0 10px;
  padding-left: 18px;
  color: rgba(7, 20, 40, 0.68);
}

.coupon-terms li {
  margin: 4px 0;
}

.coupon-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(7, 20, 40, 0.58);
  border-top: 1px solid rgba(7, 20, 40, 0.10);
  padding-top: 10px;
}

.coupon-disclaimer {
  margin: 14px 0 0;
  color: rgba(7, 20, 40, 0.55);
  font-size: 0.85rem;
  line-height: 1.35;
}

@media (max-width: 820px) {
  .coupons-intro {
    flex-direction: column;
  }

  .coupons-actions {
    justify-content: flex-start;
  }

  .coupon-grid {
    grid-template-columns: 1fr;
  }
}

.tire-finder {
  border: 1px solid rgba(7, 20, 40, 0.12);
  border-radius: 14px;
  padding: 18px;
}

.tire-finder-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(7, 20, 40, 0.12);
  border-radius: 12px;
  background: rgba(7, 20, 40, 0.02);
}

.tire-finder-top label {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
}

.tire-finder select {
  height: 40px;
  min-width: 220px;
  border-radius: 10px;
  border: 1px solid rgba(7, 20, 40, 0.25);
  padding: 0 10px;
  background: #ffffff;
  color: #071428;
  font-weight: 600;
}

.tire-finder-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
}

.tire-finder-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
}

.tire-finder-fields .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tire-finder-fields label {
  font-weight: 800;
  color: rgba(7, 20, 40, 0.85);
}

.tire-finder-more {
  grid-column: 1 / -1;
  justify-self: start;
  border: 0;
  background: transparent;
  color: rgba(7, 20, 40, 0.55);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(7, 20, 40, 0.25);
  text-underline-offset: 4px;
}

.tire-finder-more-details {
  grid-column: 1 / -1;
}

.tire-finder-more-details summary {
  list-style: none;
}

.tire-finder-more-details summary::-webkit-details-marker {
  display: none;
}

.tire-finder-more-label--less {
  display: none;
}

.tire-finder-more-details[open] .tire-finder-more-label--more {
  display: none;
}

.tire-finder-more-details[open] .tire-finder-more-label--less {
  display: inline;
}

.tire-finder-more i {
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.18s ease;
}

.tire-finder-more-details[open] .tire-finder-more i {
  transform: rotate(180deg);
}

.tire-finder-more-options {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 6px;
}

.tire-finder-diagram {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(7, 20, 40, 0.12);
  background: #ffffff;
}

.tire-finder-diagram-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(7, 20, 40, 0.10);
  background: rgba(7, 20, 40, 0.02);
}

.tire-finder-diagram-car {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(7, 20, 40, 0.08);
  color: rgba(7, 20, 40, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tire-finder-diagram-car i.bi {
  font-size: 22px;
  line-height: 1;
}

.tire-finder-diagram-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tire-finder-diagram-text strong {
  font-size: 0.95rem;
  color: rgba(7, 20, 40, 0.92);
}

.tire-finder-diagram-text span {
  font-size: 0.85rem;
  color: rgba(7, 20, 40, 0.62);
}

.tire-finder-diagram svg {
  width: 100%;
  height: auto;
  display: block;
}

.tire-finder-submit {
  width: 100%;
  max-width: 520px;
  margin: 14px auto 0;
  border: 0;
  border-radius: 12px;
  height: 44px;
  background: #064a80;
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.tire-finder-submit:hover {
  background: #053c68;
}

@media (max-width:900px) {
  .tire-finder-grid {
    grid-template-columns: 1fr;
  }

  .tire-finder-fields {
    grid-template-columns: 1fr;
  }

  .tire-finder-more-options {
    grid-template-columns: 1fr;
  }

  .tire-finder select {
    min-width: 0;
    width: 100%;
  }
}

/* make nav slightly glass when open */
#main-navigation {
  background: linear-gradient(180deg, rgba(15, 23, 32, 0.72), rgba(11, 18, 24, 0.9));
  -webkit-backdrop-filter: none;
  backdrop-filter: none
}

/* Fallback: si el navegador NO soporta backdrop-filter, usar un overlay más opaco y nav sólido */
@supports not ((-webkit-backdrop-filter: blur(0px)) or (backdrop-filter: blur(0px))) {
  .nav-overlay {
    background: rgba(2, 6, 23, 0.78)
  }

  #main-navigation {
    background: linear-gradient(180deg, rgba(9, 12, 15, 0.98), rgba(8, 10, 12, 0.98));
    -webkit-backdrop-filter: none;
    backdrop-filter: none
  }
}

/* Main nav (panel móvil) */
#main-navigation {
  position: fixed;
  inset: 0;
  height: 100vh;
  width: 100%;
  z-index: 50;
  background: linear-gradient(180deg, rgba(15, 23, 32, 0.92), rgba(11, 18, 24, 0.98));
  transform: translateY(-110%);
  transition: transform .28s ease-in-out;
  padding-top: 110px;
  overflow: auto
}

#main-navigation.open {
  transform: translateY(0)
}

#main-navigation .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 110px)
}

#main-navigation a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  width: min(520px, 100%);
  text-align: center
}

#main-navigation a:hover {
  color: #ffcc26
}

#main-navigation a.cta {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #071428
}

#main-navigation .socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

#main-navigation .socials a.social {
  width: auto;
  padding: 10px 12px;
  color: #ffffff;
}

#main-navigation .socials a.social:hover {
  color: #ffffff;
}

/* Hero */
.hero {
  padding: 36px 0
}

.dark-hero {
  padding: 40px 0
}

.hero-inner {
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 36px;
  align-items: center
}

.hero-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(2, 6, 23, 0.6)
}

.hero-copy h1 {
  font-size: 2.4rem;
  margin: 0;
  color: #fff
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 12px
}

.actions {
  margin-top: 18px;
  display: flex;
  gap: 8px;
}

/* Home specials hero */
.hero-specials {
  position: relative;
  padding: 26px 0 0;
  background: #000000;
  overflow: hidden;
}

.hero-specials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.98));
  z-index: 0;
}

.hero-specials-inner {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 0 18px;
}

.hero-specials-top {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 22px;
  align-items: start;
}

.hero-specials-badge {
  width: 340px;
  height: 340px;
  border-radius: 999px;
  border: 10px solid #064a80;
  background: rgba(255, 204, 0, 0.92);
  box-shadow: 0 18px 70px rgba(2, 6, 23, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}

.hero-specials-badge .badge-line {
  display: block;
}

.hero-specials-badge .badge-line--top {
  font-weight: 800;
  font-style: italic;
  color: #064a80;
  font-size: 2.6rem;
}

.hero-specials-badge .badge-line--bottom {
  margin-top: 10px;
  font-weight: 800;
  font-style: italic;
  color: #071428;
  font-size: 3.1rem;
}

.hero-specials-promo {
  max-width: 720px;
  margin-left: auto;
  padding: 22px 22px 18px;
  border-radius: 14px;
  /*background: rgba(6, 74, 128, 0.82);*/
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 60px rgba(2, 6, 23, 0.50);
}

.hero-specials-promo .promo-title {
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.05;
}

.hero-specials-promo .promo-title-strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
}

.hero-specials-promo .promo-title-sub {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  opacity: 0.95;
}

.hero-specials-promo .promo-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.hero-specials-promo .btn.ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  padding: 10px 14px;
}

.hero-specials-promo .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-specials-ctas {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
  flex-wrap: wrap;
}

@media (min-width:681px) {
  .hero-specials-ctas {
    transform: translateY(28px);
  }
}

.hero-specials-ctas .btn {
  background: rgba(6, 74, 128, 0.86);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 45px rgba(2, 6, 23, 0.35);
  min-width: 240px;
}

.hero-specials-ctas .btn:hover {
  background: rgba(6, 74, 128, 0.96);
  transform: translateY(-2px);
}

.hero-specials-tires {
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);
  width: min(1200px, 120vw);
  height: auto;
  pointer-events: none;
  opacity: 0.98;
  filter: drop-shadow(0 18px 60px rgba(2, 6, 23, 0.7));
}

@media (max-width:1100px) {
  .hero-specials-inner {
    min-height: 560px;
  }

  .hero-specials-top {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero-specials-promo {
    margin-left: 0;
    width: 100%;
  }

  .hero-specials-badge {
    width: 300px;
    height: 300px;
  }

  .hero-specials-badge .badge-line--top {
    font-size: 2.2rem;
  }

  .hero-specials-badge .badge-line--bottom {
    font-size: 2.7rem;
  }
}

@media (max-width:680px) {
  .hero-specials {
    padding-top: 18px;
  }

  .hero-specials-ctas {
    gap: 12px;
  }

  .hero-specials-ctas .btn {
    width: 100%;
    max-width: 420px;
  }

  .hero-specials-tires {
    bottom: -80px;
    width: 140vw;
  }
}

/* Benefits section (features left, image right) */
.benefits-section {
  padding: 56px 0
}

.benefits-inner {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 28px;
  align-items: center
}

.benefits-features {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.benefit {
  display: flex;
  gap: 18px;
  align-items: flex-start
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 204, 38, 0.12), rgba(255, 180, 0, 0.06));
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px
}

.benefit h3 {
  margin: 0;
  color: #111;
  font-size: 1.25rem
}

.benefit .muted {
  color: var(--muted);
  margin-top: 8px
}

.benefits-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 48px rgba(2, 6, 23, 0.6)
}

/* Icon utilities */
.icon {
  width: 28px;
  height: 28px;
  display: inline-block;
  fill: currentColor
}

.social-icon {
  width: 18px;
  height: 18px;
  /*fill: currentColor*/
  color: white
}

.header-socials .social {
  color: #ffffff
}

.header-socials .social .icon {
  display: block
}

.benefit-icon .icon {
  width: 28px;
  height: 28px;
  color: var(--accent)
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 204, 38, 0.12), rgba(255, 180, 0, 0.06));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 10px;
  padding: 10px 16px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: all 0.3s ease;
  min-width: 120px;
  text-align: center;
}

.btn.primary {
  background: #ffcc26;
  color: #071428
}

.btn.primary:hover {
  background: #ffb400;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.3);
}

.btn.ghost {
  background: #ffcc26;
  color: #071428;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.btn.ghost:hover {
  background: #ffb400;
  transform: translateY(-2px);
}

.btn.small {
  padding: 8px 12px;
  font-size: 0.95rem
}

/* Sections */
.section {
  padding: 48px 0
}

.dark-section h2 {
  color: #000;
}

.grid.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 18px
}

.dark-card {
  background: linear-gradient(180deg, var(--surface), transparent);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03)
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block
}
/* Bootstrap Icons inside social links */
.header-icons a.social i.bi {
  font-size: 18px;
  line-height: 1;
  display: inline-block
}

.card-body {
  padding: 14px
}


#main-navigation .socials a.social i.bi {
  font-size: 18px;
  line-height: 1;
  display: inline-block
}
.card-body h3 {
  font-size: 1.15rem;
  margin: 0 0 8px
}

.muted {
  color: var(--muted)
}

.meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px
}

.price {
  color: var(--accent);
  font-weight: 800
}

/* Features */
.grid.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.dark-feature {
  background: var(--glass);
  padding: 16px;
  border-radius: 10px
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.service-card {
  background: linear-gradient(180deg, var(--surface), transparent);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 204, 0, 0.15);
  border-color: rgba(255, 204, 0, 0.2);
}

.service-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--panel);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  margin: 0 0 12px 0;
  color: #111;
  font-size: 1.15rem;
  font-weight: 700;
}

.service-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* About Us Section */
.about-section {
  padding: 64px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 48px;
  align-items: center;
}

.about-content h2 {
  margin: 0 0 20px 0;
  color: #111;
  font-size: 2.2rem;
}

.about-intro {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 32px;
}

.about-details h3 {
  color: var(--accent);
  font-size: 1.3rem;
  margin: 24px 0 12px 0;
}

.about-details p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.about-list li {
  color: rgba(0, 0, 0, 0.85);
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.about-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
}

.about-list strong {
  color: #111;
}

.about-image {
  width: 100%;
  height: 100%;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(2, 6, 23, 0.6);
}

/* Location Section */
.location-section {
  padding: 64px 0;
  background: var(--bg);
}

.location-section h2 {
  text-align: center;
  color: #111;
  font-size: 2.2rem;
  margin: 0 0 40px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 32px;
  align-items: start;
}

.location-map iframe {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(2, 6, 23, 0.5);
}

.location-info {
  background: linear-gradient(180deg, var(--surface), transparent);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.location-info h3 {
  color: var(--accent);
  font-size: 1.3rem;
  margin: 0 0 24px 0;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  color: #111;
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Map Section */
.map-section {
  padding: 64px 0;
  background: var(--bg);
}

.map-section h2 {
  text-align: center;
  color: #fff;
  font-size: 2.2rem;
  margin: 0 0 32px 0;
}

.map-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-container iframe {
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(2, 6, 23, 0.5);
}

/* Footer */
.dark-footer {
  background: #000;
  color: #ffffff;
  padding: 36px 0;
  border-top: 0
}

.dark-footer .footer-inner {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.dark-footer .footer-col {
  flex: 1;
}

.dark-footer .footer-col h4 {
  color: #ffffff;
}

.dark-footer .muted {
  color: rgba(255, 255, 255, 0.72)
}

.dark-footer .footer-nav a,
.dark-footer .footer-links a,
.dark-footer address a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 6px
}

.dark-footer address {
  font-style: normal;
  color: #ffffff;
  line-height: 1.6;
}

.dark-footer address strong {
  color: #ffffff;
}

.dark-footer .social-icons a {
  color: #ffffff;
}

.dark-footer .copyright {
  text-align: center;
  color: #ffffff;
  margin-top: 16px
}

/* Footer icons */
.footer-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  color: var(--accent);
  transition: transform 0.2s ease;
}

/* Footer Links Section */
.footer-links-section {
  flex: 2;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

.links-column a {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.links-column a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.links-column a:hover .footer-icon {
  transform: scale(1.1);
  color: var(--accent);
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.contact-info .footer-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Contact Info Column */
.contact-info p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin: 0 0 12px 0;
  line-height: 1.6;
}

.contact-info p strong {
  color: #ffffff;
  font-weight: 600;
}

.contact-info .hours {
  font-size: 0.85rem;
  margin-bottom: 6px;
}

/* Footer Bottom Section */
.footer-bottom {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* Payment Methods */
.payment-methods h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.payment-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.payment-icons img {
  background: white;
  padding: 8px 12px;
  border-radius: 6px;
  height: 30px;
  width: auto;
  object-fit: contain;
}

/* Social Section */
.social-section h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.social-icons-large {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-icons-large a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  color: #000;
  transition: all 0.3s ease;
}

.social-icons-large a:hover {
  background: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.3);
}

.icon-large {
  width: 28px;
  height: 28px;
}

.dark-footer .copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer form styles */
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start
}

.form-grid .col {
  min-width: 0
}

.footer-form input[type="text"],
.footer-form input[type="email"],
.footer-form input[type="tel"],
.footer-form textarea {
  background: #f1f3f5;
  /* campo gris */
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #0b1220;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: #000
}

.footer-form input::-webkit-input-placeholder,
.footer-form textarea::-webkit-input-placeholder {
  color: #000
}

.footer-form input:-ms-input-placeholder,
.footer-form textarea:-ms-input-placeholder {
  color: #000
}

.footer-form input::-ms-input-placeholder,
.footer-form textarea::-ms-input-placeholder {
  color: #000
}

.footer-form textarea {
  resize: vertical;
  width: 100%;
  box-sizing: border-box
}

.footer-form textarea {
  resize: vertical
}

.footer-form .form-actions {
  display: flex;
  justify-content: flex-start
}

.footer-form .btn.small {
  background: var(--accent);
  color: #071428
}

.sr-only {
  position: absolute;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%)
}

.form-note {
  font-size: 0.85rem
}

@media (max-width:680px) {
  .form-grid {
    grid-template-columns: 1fr
  }

  .footer-form {
    max-width: 100%
  }
}

/* Responsive */
@media (max-width:1100px) {
  .hero-inner {
    grid-template-columns: 1fr
  }

  .grid.cards {
    grid-template-columns: repeat(2, 1fr)
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .about-inner {
    grid-template-columns: 1fr
  }

  .location-grid {
    grid-template-columns: 1fr
  }

  .benefits-inner {
    grid-template-columns: 1fr
  }

  .benefits-media img {
    height: 360px
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-contact {
    display: none;
  }
}

@media (max-width:1240px) {
  .header-inner {
    grid-template-columns: 220px 1fr auto;
    gap: 16px;
  }

  .logo img {
    width: 210px;
  }

  .nav-desktop {
    gap: 12px;
  }

  .nav-desktop a {
    font-size: 0.95rem;
  }

  .header-contact {
    display: none;
  }
}

@media (max-width:680px) {
  .nav-desktop {
    display: none
  }

  .menu-toggle {
    display: inline-flex
  }

  #main-navigation {
    width: 100%;
  }

  .grid.cards {
    grid-template-columns: 1fr
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .grid.features {
    grid-template-columns: 1fr
  }

  .footer-inner {
    flex-direction: column
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .payment-icons {
    flex-wrap: wrap;
  }

  .header-socials {
    display: none
  }
}/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* About Hero Section */
.about-hero {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin: 0 0 16px 0;
    color: #111;
}

.about-hero-content .lead {
    font-size: 1.5rem;
    color: var(--accent);
    margin: 0 0 20px 0;
    font-weight: 600;
}

.about-hero-content .hero-description {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Story Section */
.story-section {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-content .intro-text {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 20px;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -48px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--bg);
}

.timeline-item h3 {
    color: var(--accent);
    font-size: 1.1rem;
    margin: 0 0 8px 0;
}

.timeline-item p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.story-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(2, 6, 23, 0.6);
}

/* Values Section */
.values-section {
    padding: 80px 0;
}

.values-section .section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: linear-gradient(180deg, var(--surface), transparent);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 204, 0, 0.15);
    border-color: rgba(255, 204, 0, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.value-icon svg {
    width: 100%;
    height: 100%;
    color: var(--accent);
}

.value-card h3 {
    color: #111;
    font-size: 1.3rem;
    margin: 0 0 12px 0;
}

.value-card p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
}

.why-choose-section .section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.why-grid {
    display: grid;
    gap: 40px;
    margin-top: 40px;
}

.why-item {
    background: linear-gradient(180deg, var(--surface), transparent);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.why-number {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(255, 204, 0, 0.3);
}

.why-item h3 {
    color: #111;
    font-size: 1.5rem;
    margin: 20px 0 16px 0;
}

.why-item>p {
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.feature-list li {
    color: var(--muted);
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.team-content .intro-text {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 204, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 204, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--muted);
    font-size: 0.9rem;
}

.team-features h3 {
    color: var(--accent);
    font-size: 1.3rem;
    margin: 30px 0 20px 0;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-list li {
    color: var(--muted);
    padding: 12px 0;
    line-height: 1.6;
}

.expertise-list strong {
    color: #111;
}

.team-image {
    position: relative;
}

.team-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(2, 6, 23, 0.6);
}

.team-caption {
    margin-top: 16px;
    text-align: center;
}

.team-caption p {
    color: var(--muted);
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
}

/* Quality Section */
.quality-section {
    padding: 80px 0;
}

.quality-section .section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.quality-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.quality-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.quality-item h3 {
    color: var(--accent);
    font-size: 1.4rem;
    margin: 0 0 16px 0;
}

.quality-item p {
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
}

.brands-showcase h4 {
    color: #111;
    font-size: 1.1rem;
    margin: 20px 0 12px 0;
}

.brands-showcase ul,
.warranty-list,
.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brands-showcase li,
.warranty-list li,
.checklist li {
    color: var(--muted);
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.brands-showcase li:before,
.warranty-list li:before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--accent);
    font-size: 1.5rem;
    line-height: 1;
}

.checklist li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.warranty-list strong {
    color: #111;
}

.quality-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(2, 6, 23, 0.6);
}

/* Community Section */
.community-section {
    padding: 80px 0;
}

.community-section .section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.community-item {
    background: linear-gradient(180deg, var(--surface), transparent);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.community-item h3 {
    color: var(--accent);
    font-size: 1.3rem;
    margin: 0 0 16px 0;
}

.community-item p {
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.7;
    margin: 0;
}

.testimonial {
    background: rgba(255, 204, 0, 0.05);
    border-left: 4px solid var(--accent);
    padding: 20px 24px;
    margin: 20px 0;
    border-radius: 8px;
}

.testimonial p {
    color: rgba(0, 0, 0, 0.9);
    font-style: italic;
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.testimonial cite {
    color: var(--accent);
    font-style: normal;
    font-size: 0.95rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg), var(--surface));
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin: 0 0 20px 0;
    color: #111;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--muted);
    margin: 0 0 40px 0;
    line-height: 1.7;
}

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

.btn.large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.cta-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

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

.info-icon {
    width: 40px;
    height: 40px;
    color: var(--accent);
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: #111;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.info-item p {
    color: var(--muted);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Styles for About Page */
@media (max-width: 1100px) {

    .story-grid,
    .team-grid,
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .community-grid {
        grid-template-columns: 1fr;
    }

    .team-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-info {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 680px) {
    .about-hero {
        padding: 60px 0 40px;
    }

    .about-hero-content h1 {
        font-size: 2rem;
    }

    .about-hero-content .lead {
        font-size: 1.2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .team-stats {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-item:before {
        left: -38px;
    }
}/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

/* Services Hero */
.services-hero {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3rem;
    margin: 0 0 16px 0;
    color: #111;
}

.services-hero-content .lead {
    font-size: 1.5rem;
    color: var(--accent);
    margin: 0 0 20px 0;
    font-weight: 600;
}

.services-hero-content .hero-description {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
}

.services-overview .section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.service-overview-card {
    background: linear-gradient(180deg, var(--surface), transparent);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.service-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 204, 0, 0.15);
    border-color: rgba(255, 204, 0, 0.2);
}

.service-overview-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-overview-card:hover img {
    transform: scale(1.05);
}

.service-overview-card h3 {
    color: #111;
    font-size: 1.15rem;
    margin: 16px 20px 8px;
}

.service-overview-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0 20px 20px;
    line-height: 1.5;
}

/* Service Detail Sections */
.service-detail {
    padding: 80px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-detail-grid.reverse {
    grid-template-columns: 1fr 1.3fr;
}

.service-detail-grid.reverse .service-detail-content {
    order: 2;
}

.service-detail-grid.reverse .service-detail-image {
    order: 1;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin: 0 0 12px 0;
    color: #111;
}

.service-tagline {
    font-size: 1.2rem;
    color: var(--accent);
    margin: 0 0 30px 0;
    font-weight: 600;
}

.service-description h3 {
    color: var(--accent);
    font-size: 1.3rem;
    margin: 30px 0 16px 0;
}

.service-description p {
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-includes,
.warning-signs,
.brand-list,
.schedule-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.service-includes li,
.brand-list li,
.schedule-list li {
    color: var(--muted);
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    line-height: 1.6;
}

.service-includes li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.3rem;
}

.brand-list li:before,
.schedule-list li:before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--accent);
    font-size: 1.5rem;
    line-height: 1;
}

.warning-signs li {
    color: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    line-height: 1.6;
}

.warning-signs li:before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: #ff9500;
    font-size: 1.2rem;
}

.service-pricing {
    background: rgba(255, 204, 0, 0.05);
    border-left: 4px solid var(--accent);
    padding: 20px 24px;
    margin-top: 30px;
    border-radius: 8px;
}

.service-pricing h4 {
    color: var(--accent);
    font-size: 1rem;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-estimate {
    color: #111;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.service-note {
    background: rgba(255, 153, 0, 0.1);
    border-left: 4px solid #ff9500;
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.service-note p {
    color: rgba(0, 0, 0, 0.9);
    margin: 0;
    line-height: 1.6;
}

.service-note strong {
    color: #ff9500;
}

.service-detail-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(2, 6, 23, 0.6);
}

/* Service Benefits */
.service-benefits {
    padding: 80px 0;
}

.benefits-grid-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-card-service {
    background: linear-gradient(180deg, var(--surface), transparent);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card-service:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 204, 0, 0.15);
    border-color: rgba(255, 204, 0, 0.2);
}

.benefit-icon-service {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.benefit-icon-service svg {
    width: 100%;
    height: 100%;
    color: var(--accent);
}

.benefit-card-service h3 {
    color: #111;
    font-size: 1.2rem;
    margin: 0 0 12px 0;
}

.benefit-card-service p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Service CTA */
.service-cta {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg), var(--surface));
}

.service-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-cta-content h2 {
    font-size: 2.5rem;
    margin: 0 0 20px 0;
    color: #111;
}

.service-cta-content>p {
    font-size: 1.2rem;
    color: var(--muted);
    margin: 0 0 40px 0;
    line-height: 1.7;
}

.service-hours {
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 204, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 204, 0, 0.1);
}

.service-hours h3 {
    color: var(--accent);
    font-size: 1.3rem;
    margin: 0 0 16px 0;
}

.service-hours p {
    color: rgba(0, 0, 0, 0.9);
    margin: 8px 0;
    font-size: 1.05rem;
}

/* Responsive Styles for Services Page */
@media (max-width: 1100px) {
    .services-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-grid,
    .service-detail-grid.reverse {
        grid-template-columns: 1fr;
    }

    .service-detail-grid.reverse .service-detail-content,
    .service-detail-grid.reverse .service-detail-image {
        order: 0;
    }

    .benefits-grid-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .services-hero {
        padding: 60px 0 40px;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content .lead {
        font-size: 1.2rem;
    }

    .services-overview-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-content h2 {
        font-size: 1.8rem;
    }

    .benefits-grid-services {
        grid-template-columns: 1fr;
    }

    .service-cta-content h2 {
        font-size: 1.8rem;
    }
}/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Hero */
.contact-hero {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin: 0 0 16px 0;
    color: #111;
}

.contact-hero-content .lead {
    font-size: 1.5rem;
    color: var(--accent);
    margin: 0 0 20px 0;
    font-weight: 600;
}

.contact-hero-content .hero-description {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Contact Methods */
.contact-methods {
    padding: 80px 0;
}

.contact-methods .section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.contact-method-card {
    background: linear-gradient(180deg, var(--surface), transparent);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 204, 0, 0.15);
    border-color: rgba(255, 204, 0, 0.2);
}

.method-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.method-icon svg {
    width: 100%;
    height: 100%;
    color: var(--accent);
}

.contact-method-card h3 {
    color: #111;
    font-size: 1.3rem;
    margin: 0 0 12px 0;
}

.method-detail {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.method-detail a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-detail a:hover {
    color: #ffb400;
}

.method-description {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper h2 {
    font-size: 2.2rem;
    margin: 0 0 12px 0;
    color: #111;
}

.form-intro {
    font-size: 1.05rem;
    color: var(--muted);
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.contact-page-form {
    background: linear-gradient(180deg, var(--surface), transparent);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    color: rgba(0, 0, 0, 0.9);
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: #111;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select {
    cursor: pointer;
}

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

.form-actions-contact {
    margin-top: 24px;
}

.form-note-contact {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 16px 0 0 0;
    line-height: 1.5;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: linear-gradient(180deg, var(--surface), transparent);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    color: var(--accent);
    font-size: 1.2rem;
    margin: 0 0 20px 0;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    color: rgba(0, 0, 0, 0.9);
    font-weight: 600;
}

.hours-item .time {
    color: var(--muted);
}

.quick-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 204, 0, 0.05);
    border-radius: 8px;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.9);
    transition: all 0.3s ease;
}

.quick-contact-item:hover {
    background: rgba(255, 204, 0, 0.1);
    transform: translateX(4px);
}

.quick-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.info-card p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.info-card .btn {
    width: 100%;
    text-align: center;
}

/* Map Section */
.contact-map-section {
    padding: 80px 0;
}

.contact-map-section .section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.map-wrapper-contact {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(2, 6, 23, 0.6);
    margin-bottom: 30px;
}

.map-wrapper-contact iframe {
    display: block;
}

.directions-info {
    text-align: center;
    padding: 30px;
    background: linear-gradient(180deg, var(--surface), transparent);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.directions-info h3 {
    color: var(--accent);
    font-size: 1.3rem;
    margin: 0 0 12px 0;
}

.directions-info p {
    color: var(--muted);
    margin: 0 0 20px 0;
    line-height: 1.6;
}

/* FAQ Section */
.contact-faq {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: linear-gradient(180deg, var(--surface), transparent);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 204, 0, 0.2);
    box-shadow: 0 8px 24px rgba(255, 204, 0, 0.1);
}

.faq-item h3 {
    color: var(--accent);
    font-size: 1.2rem;
    margin: 0 0 12px 0;
}

.faq-item p {
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Styles for Contact Page */
@media (max-width: 1100px) {
    .contact-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .contact-hero {
        padding: 60px 0 40px;
    }

    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .contact-hero-content .lead {
        font-size: 1.2rem;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-page-form {
        padding: 24px;
    }
}/* ========================================
   SHOP PAGE STYLES
   ======================================== */

/* Shop Hero */
.shop-hero {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
    text-align: center;
}

.shop-hero-content h1 {
    font-size: 3rem;
    margin: 0 0 16px 0;
    color: #111;
}

.shop-hero-content .lead {
    font-size: 1.5rem;
    color: var(--accent);
    margin: 0 0 20px 0;
    font-weight: 600;
}

.shop-hero-content .hero-description {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Category Filter */
.category-filter {
    padding: 60px 0 40px;
}

.category-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.category-btn {
    padding: 12px 28px;
    background: linear-gradient(180deg, var(--surface), transparent);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    color: rgba(0, 0, 0, 0.9);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    border-color: var(--accent);
    background: rgba(255, 204, 0, 0.1);
    color: #111;
}

.category-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}

/* Products Catalog */
.products-catalog {
    padding: 80px 0;
}

.products-grid-shop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card-shop {
    background: linear-gradient(180deg, var(--surface), transparent);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card-shop:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 204, 0, 0.15);
    border-color: rgba(255, 204, 0, 0.2);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: var(--bg);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-image-shop {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.product-image-shop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-shop:hover .product-image-shop img {
    transform: scale(1.05);
}

.product-info-shop {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info-shop h3 {
    color: #111;
    font-size: 1.1rem;
    margin: 0 0 8px 0;
}

.product-category {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-description {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.product-features li {
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.9rem;
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
}

.product-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-price {
    color: #111;
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.product-price span {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 400;
}

/* Shop Benefits */
.shop-benefits {
    padding: 80px 0;
}

.shop-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.shop-benefit-card {
    background: linear-gradient(180deg, var(--surface), transparent);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.shop-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 204, 0, 0.15);
    border-color: rgba(255, 204, 0, 0.2);
}

.benefit-icon-shop {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.benefit-icon-shop svg {
    width: 100%;
    height: 100%;
    color: var(--accent);
}

.shop-benefit-card h3 {
    color: #111;
    font-size: 1.2rem;
    margin: 0 0 12px 0;
}

.shop-benefit-card p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Tire Finder */
.tire-finder {
    padding: 80px 0;
}

.tire-finder-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.tire-finder-content h2 {
    font-size: 2.5rem;
    margin: 0 0 16px 0;
    color: #111;
}

.tire-finder-content>p {
    font-size: 1.2rem;
    color: var(--muted);
    margin: 0 0 50px 0;
    line-height: 1.7;
}

.finder-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.finder-option {
    background: linear-gradient(180deg, var(--surface), transparent);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.finder-option h3 {
    color: var(--accent);
    font-size: 1.3rem;
    margin: 0 0 8px 0;
}

.finder-option p {
    color: var(--muted);
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.finder-option .btn {
    width: 100%;
    text-align: center;
}

/* Services Included */
.services-included {
    padding: 80px 0;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(180deg, var(--surface), transparent);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.included-icon {
    width: 32px;
    height: 32px;
    color: var(--accent);
    flex-shrink: 0;
}

.included-item h3 {
    color: #111;
    font-size: 1.1rem;
    margin: 0 0 6px 0;
}

.included-item p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Styles for Shop Page */
@media (max-width: 1100px) {
    .products-grid-shop {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .finder-options {
        grid-template-columns: 1fr;
    }

    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .shop-hero {
        padding: 60px 0 40px;
    }

    .shop-hero-content h1 {
        font-size: 2rem;
    }

    .shop-hero-content .lead {
        font-size: 1.2rem;
    }

    .category-buttons {
        gap: 8px;
    }

    .category-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .products-grid-shop {
        grid-template-columns: 1fr;
    }

    .shop-benefits-grid {
        grid-template-columns: 1fr;
    }

    .tire-finder-content h2 {
        font-size: 1.8rem;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }
}
/* Search Results in Modal */
.tire-finder-results {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-height: 400px;
    overflow-y: auto;
}

.tire-finder-results.hidden {
    display: none;
}

.finder-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.finder-result-card {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.finder-result-card h4 {
    font-size: 0.95rem;
    margin: 10px 0;
    color: #111;
    line-height: 1.3;
}

.finder-result-card .price {
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}

.finder-result-card img {
    max-width: 100%;
    height: 100px;
    object-fit: contain;
    background: #fff;
    border-radius: 4px;
}

.finder-no-results {
    text-align: center;
    color: #111;
    padding: 20px;
}

/* Auth / Login Styles */
.login-register-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: var(--panel);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--glass);
}

.auth-tabs {
    display: flex;
    background: rgba(0,0,0,0.2);
}

.auth-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 20px;
    color: var(--muted);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.auth-tab.active {
    color: var(--accent);
    background: var(--panel);
    border-bottom-color: var(--accent);
}

.auth-tab:hover:not(.active) {
    color: #111;
    background: rgba(255,255,255,0.02);
}

.auth-form-container {
    padding: 40px;
    display: none;
}

.auth-form-container.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.auth-form-container h2 {
    color: #111;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.auth-form-container .text-muted {
    font-size: 0.9rem;
    margin-bottom: 30px;
}

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

.auth-form label {
    display: block;
    color: #111;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.auth-form input[type="email"],
.auth-form input[type="password"], 
.auth-form input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    color: #111;
    font-size: 1rem;
    transition: all 0.2s;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.08);
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--muted);
}

.forgot-link {
    color: var(--accent);
    text-decoration: none;
}

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

.password-hint {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 8px;
    line-height: 1.4;
}

.auth-form .btn.full-width {
    width: 100%;
    margin-top: 10px;
    padding: 15px;
}

/* =========================================
   Skeleton Loading Animation
   ========================================= */
.skeleton {
  background: #f0f0f0;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}

/* Dark mode adjustment - Bottom part (Text/Button) using #c4c4c4 */
.dark-card .skeleton {
  background: #c4c4c4;
  background: linear-gradient(90deg, #c4c4c4 25%, #e0e0e0 50%, #c4c4c4 75%);
  background-size: 200% 100%;
}

/* Dark mode adjustment - Top part (Image) using #f7f7f7 */
.dark-card .skeleton.skeleton-image {
  background: #f7f7f7;
  background: linear-gradient(90deg, #f7f7f7 25%, #ffffff 50%, #f7f7f7 75%);
  background-size: 200% 100%;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Skeleton Card Structure */
.skeleton-card {
  background: white;
  border: 1px solid #eee;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dark-card.skeleton-card {
  background: #c4c4c4; /* Match your dark card bg */
  border-color: #f2f1ed;
}

.skeleton-image {
  width: 100%;
  aspect-ratio: 4/3;
  display: block;
}

.skeleton-body {
  padding: 1.5rem;
}

.skeleton-text {
  height: 1rem;
  margin-bottom: 0.5rem;
  width: 80%;
}

.skeleton-text.short {
  width: 40%;
}

.skeleton-btn {
  height: 2.5rem;
  width: 100px;
  margin-top: 1rem;
  border-radius: 4px;
}
