﻿@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,400&family=Syne:wght@600;700;800&display=swap");

:root {
  --bg: #f8f7f4;
  --surface: #fff;
  --surface-alt: #eef7ff;
  --text: #17212f;
  --muted: #526071;
  --line: #e5e7eb;
  --brand: #f97316;
  --brand-dark: #d65d10;
  --ink: #101828;
  --shadow: 0 20px 50px rgba(16, 24, 40, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --container: 1180px;
  --font-body: "DM Sans", sans-serif;
  --font-display: "Syne", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.08), transparent 28%), linear-gradient(180deg, #fcfbf8 0%, var(--bg) 100%);
  line-height: 1.65;
  overflow-x: hidden;
  word-wrap: break-word;
}

img,
.hero-visual,
.post-card img,
.product-card img,
.listing-card img,
.logo img,
.article-cover {
  display: block;
  max-width: 100%;
  opacity: 0;
  transform: translateY(10px);
  animation: imageFadeIn 0.85s ease forwards;
  will-change: opacity, transform;
}

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

p {
  margin: 0 0 1rem;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 247, 244, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(208, 213, 221, 0.72);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo img {
  width: auto;
  max-width: 220px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  object-position: left center;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(208, 213, 221, 0.95);
  border-radius: 14px;
  background: var(--surface);
  align-items: center;
  justify-content: center;
  gap: 0.26rem;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}

.main-nav a,
.nav-menu-button {
  appearance: none;
  -webkit-appearance: none;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  box-shadow: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-menu-button:not(.active) {
  background: transparent !important;
  color: var(--muted);
}

.main-nav a:hover,
.main-nav a.active,
.nav-menu-button:hover,
.nav-menu-button.active {
  background: var(--surface);
  color: var(--ink);
}

.brand-menu-panel {
  padding: 0 0 1rem;
}

.brand-menu-shell {
  padding: 1.3rem 1.4rem 1.5rem;
  background: #152129;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 22px 48px rgba(7, 12, 16, 0.28);
}

.brand-menu-head {
  margin-bottom: 1.2rem;
}

.brand-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.brand-tab {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.2rem 0;
  position: relative;
}

.brand-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3rem;
  height: 2px;
  background: transparent;
}

.brand-tab.active,
.brand-tab:hover {
  color: #f5b560;
}

.brand-tab.active::after,
.brand-tab:hover::after {
  background: #f5b560;
}

.brand-hero {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.brand-badge {
  min-width: 220px;
  padding: 1.4rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  border-radius: 10px;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem 1.1rem;
}

.model-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-height: 54px;
  padding: 0.45rem 0.6rem 0.75rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
}

.model-link small {
  color: #f5b560;
  font-size: 0.72rem;
  font-weight: 700;
}

.model-link:hover {
  color: #f5b560;
  border-color: #f5b560;
}

.hero {
  padding: 4rem 0 2.5rem;
}

.hero-slider-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(242, 173, 15, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(135deg, #18242c 0%, #22313b 42%, #101820 100%);
  box-shadow: var(--shadow);
}

.hero-slider-track {
  position: relative;
  min-height: 520px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  padding: 3rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(4%);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  pointer-events: none;
}

.hero-slide .hero-grid {
  min-height: 460px;
  position: relative;
  z-index: 1;
}

.hero-slide h1,
.hero-slide p {
  color: #f7fafc;
}

.hero-slide .hero-grid > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-slide p {
  color: #d7e0ea;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(242, 173, 15, 0.14);
  border: 1px solid rgba(242, 173, 15, 0.38);
  color: #ffd688;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-brand-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1rem;
}

.hero-brand-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e5edf5;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-slider .button.secondary,
.hero-slider .button {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.hero-slider .button:not(.secondary) {
  background: #f2ad0f;
  color: #101820;
}

.hero-slider .hero-visual {
  position: relative;
}

.hero-slider .hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 10%;
  background: radial-gradient(circle, rgba(242, 173, 15, 0.28), transparent 64%);
  filter: blur(10px);
}

.hero-slider .hero-visual img {
  position: relative;
  z-index: 1;
  max-height: 360px;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

.hero-slider-control {
  position: absolute;
  top: auto;
  bottom: 1.15rem;
  transform: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 2;
}

.hero-slider-prev {
  left: 1.1rem;
}

.hero-slider-next {
  right: 1.1rem;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1.45rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
  z-index: 2;
}

.hero-slider-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 33, 47, 0.22);
  cursor: pointer;
}

.hero-slider-dot.is-active {
  background: var(--brand);
}

.hero-grid,
.card-grid,
.product-grid,
.article-grid,
.footer-grid,
.listing-grid,
.category-grid,
.article-layout {
  display: grid;
  gap: 1.25rem;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.hero h1,
.page-hero h1,
.article-hero h1,
.section-head h2,
.footer-title,
.listing-card h3,
.post-card h3,
.category-card h3 {
  font-family: var(--font-display);
}

.hero h1,
.page-hero h1,
.article-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.price-row {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #fff7ed;
  color: #9a3412;
  font-weight: 800;
  font-size: 0.95rem;
}

.card-actions,
.empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.brand-landing-card .tag-row {
  margin-top: 0.85rem;
}

.brand-landing-card .tag {
  text-decoration: none;
}

.brand-landing-card .tag:hover {
  background: #fff7ed;
  color: #9a3412;
}

.identity-note {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hours-note {
  margin: 0;
  color: #667085;
  font-size: 0.92rem;
}

.model-empty {
  grid-column: 1 / -1;
  color: #d0d5dd;
  margin: 0;
}

.model-empty a {
  color: #f5b560;
}

.legal-list {
  padding-left: 1.1rem;
}

.legal-list li {
  margin-bottom: 0.45rem;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  color: #667085;
  font-size: 0.88rem;
  align-items: center;
}

.blog-topic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0 0.35rem;
}

.blog-topic-row .tag {
  text-decoration: none;
}

.blog-topic-row .tag:hover {
  background: #fff7ed;
  color: #c2410c;
}

.blog-hero-actions,
.blog-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  padding: 1.15rem;
  background: var(--surface);
  border: 1px solid rgba(208, 213, 221, 0.8);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.blog-featured-media {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  min-height: 260px;
  background: #0f172a;
}

.blog-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.35rem 0.55rem 0.35rem 0;
}

.blog-featured-content h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1.15;
}

.blog-featured-content h2 a {
  color: inherit;
  text-decoration: none;
}

.blog-featured-content h2 a:hover {
  color: var(--brand);
}

.blog-checklist {
  margin: 0.85rem 0 1.2rem;
  padding-left: 1.15rem;
  color: var(--muted);
}

.blog-checklist li {
  margin-bottom: 0.35rem;
}

.blog-cta {
  margin-top: 1.75rem;
  padding: 1.25rem 1.3rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #e2e8f0;
}

.blog-cta h3 {
  margin: 0 0 0.45rem;
  color: #fff;
  font-family: var(--font-display);
}

.blog-cta p {
  margin: 0;
  color: #cbd5e1;
}

.blog-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem 1.6rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #111827 0%, #1f2937 55%, #7c2d12 140%);
  color: #e5e7eb;
  box-shadow: var(--shadow);
}

.blog-cta-band h2 {
  margin: 0 0 0.45rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}

.blog-cta-band p {
  margin: 0;
  color: #d1d5db;
  max-width: 52ch;
}

.blog-cta-band .blog-cta-actions {
  margin-top: 0;
  justify-content: flex-end;
}

.sidebar-card .button,
.sidebar-card .button.secondary {
  width: 100%;
  margin-top: 0.65rem;
}

.hero p,
.page-hero p,
.article-hero p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-slide p {
  color: #dce5ef;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero-slide {
  padding: 3rem 3rem 4.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.3rem;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(249, 115, 22, 0.22);
}

.button.secondary {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-visual img,
.post-card,
.product-card,
.sidebar-card,
.listing-card,
.category-card,
.article-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-visual img {
  border-radius: var(--radius-xl);
}

.section {
  padding: 2rem 0 4rem;
}

.trust-section {
  padding: 1.25rem 0 0.5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid rgba(208, 213, 221, 0.75);
  border-radius: 18px;
}

.trust-item img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 1;
  transform: none;
  animation: none;
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
}

.trust-item span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

.brand-logo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: stretch;
}

.brand-logo-strip a,
.brand-logo-strip .brand-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 1px solid rgba(208, 213, 221, 0.75);
  border-radius: 14px;
}

.brand-logo-strip img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 42px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  opacity: 1;
  transform: none;
  animation: none;
}

.promo-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.promo-banner {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(208, 213, 221, 0.75);
  background: var(--surface);
}

.promo-banner img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 1;
  transform: none;
  animation: none;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-grid,
.listing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-grid,
.article-layout {
  grid-template-columns: minmax(0, 2fr) minmax(290px, 1fr);
}

.category-card,
.post-card,
.product-card,
.sidebar-card,
.listing-card,
.article-card {
  background: var(--surface);
  border: 1px solid rgba(208, 213, 221, 0.75);
}

.category-card,
.sidebar-card {
  padding: 1.2rem;
}

.post-card,
.product-card,
.listing-card,
.article-card {
  overflow: hidden;
}

.post-card img,
.product-card img,
.listing-card img,
.article-cover {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.post-card-content,
.product-card-content,
.listing-card-content,
.article-body {
  padding: 1.1rem 1.1rem 1.2rem;
}

.post-card-content h3,
.listing-card-content h3,
.category-card h3,
.sidebar-card h3 {
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.article-body {
  min-width: 0;
}

.article-body h2 {
  margin: 1.8rem 0 0.8rem;
  font-size: 1.55rem;
}

.article-body ul,
.article-body ol {
  padding-left: 1.2rem;
  margin: 0 0 1rem;
}

.article-body li {
  margin-bottom: 0.55rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.tag {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--surface-alt);
  color: #0b66c3;
  font-size: 0.82rem;
  font-weight: 700;
}

.page-hero,
.article-hero {
  padding: 3.1rem 0 2rem;
}

.breadcrumb {
  display: inline-flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  color: #667085;
  font-size: 0.94rem;
}

.sidebar-stack {
  display: grid;
  gap: 1.1rem;
}

.inline-link {
  color: #0b66c3;
  font-weight: 700;
}

.info-box {
  margin: 1.4rem 0;
  padding: 1.1rem 1.15rem;
  border-radius: 18px;
  background: #fff7ed;
  border: 1px solid #fdba74;
}

.info-box p {
  margin: 0.45rem 0 0;
}

.results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.3rem 0 1rem;
}

.results-count {
  color: #667085;
  font-size: 0.95rem;
}

.empty-state {
  padding: 1.5rem;
  background: #fff7ed;
  border: 1px dashed #fdba74;
  border-radius: 20px;
  color: #9a3412;
}

.site-footer {
  padding: 2.4rem 0 3rem;
  background: #111827;
  color: #fff;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 1.5rem;
  align-items: stretch;
}

.footer-shell > .footer-grid {
  min-width: 0;
}

.footer-shell > .footer-map {
  width: 100%;
  min-width: 0;
}

.footer-grid {
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  align-items: start;
  height: 100%;
}

.footer-brand {
  display: grid;
  gap: 0.85rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  padding: 0.55rem 0.75rem;
  border-radius: 14px;
  background: #fff;
}

.footer-logo img {
  width: auto;
  max-width: 170px;
  max-height: 48px;
  object-fit: contain;
  opacity: 1;
  transform: none;
  animation: none;
}

.footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.site-footer p,
.site-footer a {
  color: #d0d5dd;
}

.site-footer a:hover {
  color: #fff;
}

.copyright {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #98a2b3;
  font-size: 0.94rem;
}

.footer-map {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0b1220;
  min-height: 100%;
  height: 100%;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  filter: grayscale(0.15);
}

.quick-part-section {
  padding-top: 0.4rem;
}

.quick-part-bar {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) repeat(3, minmax(0, 1fr)) auto;
  gap: 1rem;
  align-items: end;
  padding: 1.15rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(208, 213, 221, 0.85);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.quick-part-title {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.2rem;
}

.quick-part-title span {
  color: #c2410c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-part-title strong {
  color: #17212f;
  font-size: 1.15rem;
  line-height: 1.2;
}

.quick-part-field {
  display: grid;
  gap: 0.35rem;
}

.quick-part-field span {
  color: #98a2b3;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quick-part-field select,
.quick-part-field input {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border: 1px solid #d0d5dd;
  border-radius: 12px;
  background: #fff;
  color: #17212f;
  font: inherit;
}

.quick-part-field select:focus,
.quick-part-field input:focus {
  outline: none;
  border-color: #fdba74;
  box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.18);
}

.quick-part-submit {
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 0;
  border-radius: 12px;
  background: #25d366;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.28);
}

.quick-part-submit:hover {
  background: #1fbe5a;
}

.contact-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 1.25rem;
  align-items: start;
}

.contact-info-panel,
.contact-map-panel {
  background: var(--surface);
  border: 1px solid rgba(208, 213, 221, 0.75);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
}

.contact-info-panel {
  display: grid;
  gap: 1.35rem;
  text-align: left;
}

.contact-info-item {
  display: grid;
  gap: 0.45rem;
  justify-items: start;
}

.contact-label {
  color: #98a2b3;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-info-item > a:not(.button),
.contact-info-item p {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
}

.contact-info-item .button {
  margin-top: 0.35rem;
}

.whatsapp-btn {
  background: #25d366 !important;
  color: #fff !important;
}

.whatsapp-btn:hover {
  background: #1fbe5a !important;
}

.contact-map-panel h2 {
  margin: 0 0 0.85rem;
  font-size: 1.2rem;
}

.contact-layout {
  display: grid;
  gap: 1.25rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card,
.contact-map-card {
  background: var(--surface);
  border: 1px solid rgba(208, 213, 221, 0.75);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.contact-card-wide {
  grid-column: 1 / -1;
}

.contact-card h2,
.contact-map-card h2 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
}

.contact-card p {
  margin-bottom: 1rem;
  color: var(--muted);
}

.contact-card a:not(.button) {
  color: var(--ink);
  font-weight: 700;
}

.contact-map {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(208, 213, 221, 0.8);
  min-height: 360px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.float-contact {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 40;
  display: grid;
  gap: 0.7rem;
}

.float-btn {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(16, 24, 40, 0.28);
}

.float-whatsapp {
  background: #25d366;
}

.float-whatsapp img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 1;
  transform: none;
  animation: none;
}

.float-call {
  background: #f2ad0f;
  color: #101820;
}

.float-call svg {
  width: 24px;
  height: 24px;
}

@keyframes imageFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@media (max-width: 1024px) {
  .container {
    width: min(var(--container), calc(100% - 1.5rem));
  }

  .trust-grid,
  .brand-logo-strip,
  .promo-banner-grid,
  .hero-grid,
  .category-grid,
  .card-grid,
  .product-grid,
  .article-grid,
  .footer-grid,
  .listing-grid,
  .article-layout,
  .contact-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-part-bar {
    grid-template-columns: 1fr 1fr;
  }

  .quick-part-title,
  .quick-part-submit {
    grid-column: 1 / -1;
  }

  .hero-grid > :first-child,
  .article-grid > :first-child,
  .footer-grid > :first-child,
  .article-layout > :first-child {
    grid-column: 1 / -1;
  }

  .model-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 1rem));
  }

  .header-inner {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .logo img {
  width: auto;
  max-width: 220px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  object-position: left center;
}

  .main-nav {
    display: none;
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.6rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    border: 1px solid rgba(208, 213, 221, 0.72);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a,
  .nav-menu-button {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    font-size: 0.93rem;
    padding: 0.7rem 0.9rem;
  }

  .brand-menu-shell {
    padding: 1rem 0.9rem 1.1rem;
  }

  .brand-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    scrollbar-width: none;
  }

  .brand-tabs::-webkit-scrollbar {
    display: none;
  }

  .brand-badge {
    width: 100%;
    min-width: 0;
    padding: 0.9rem 1rem;
    font-size: 1.05rem;
  }

  .model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .model-link {
    min-height: 48px;
    font-size: 0.92rem;
    padding: 0.35rem 0.45rem 0.65rem;
  }

  .hero,
  .page-hero,
  .article-hero {
    padding-top: 1.8rem;
  }

  .footer-shell {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 42%);
    gap: 1rem;
  }

  .blog-featured,
  .blog-cta-band,
  .trust-grid,
  .brand-logo-strip,
  .promo-banner-grid,
  .hero-grid,
  .category-grid,
  .card-grid,
  .product-grid,
  .article-grid,
  .footer-grid,
  .listing-grid,
  .article-layout,
  .contact-split {
    grid-template-columns: 1fr;
  }

  .blog-cta-band .blog-cta-actions {
    justify-content: flex-start;
  }

  .hero h1,
  .page-hero h1,
  .article-hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
    line-height: 1.12;
  }

  .hero p,
  .page-hero p,
  .article-hero p,
  .listing-card-content p,
  .post-card-content p,
  .category-card p,
  .sidebar-card p {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .contact-card-wide {
    grid-column: auto;
  }

  .contact-split,
  .quick-part-bar {
    grid-template-columns: 1fr;
  }

  .quick-part-submit {
    width: 100%;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 280px;
    height: 280px;
  }

  .footer-map,
  .footer-map iframe {
    min-height: 200px;
    height: 100%;
  }

  .float-contact {
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .float-btn {
    width: 52px;
    height: 52px;
  }

  .hero-slider-track {
    min-height: 0;
  }

  .hero-slide {
    padding: 2rem 1.5rem 4.75rem;
  }

  .hero-slide .hero-grid {
    min-height: 0;
  }

  .hero-slide::after {
    inset: 14px;
  }

  .hero-actions .button,
  .product-card .button,
  .listing-card .button,
  .sidebar-card .button {
    width: 100%;
  }

  .section-head,
  .results-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 1.5rem 0 3rem;
  }

  .post-card-content,
  .listing-card-content,
  .article-body,
  .category-card,
  .sidebar-card {
    padding: 1rem;
  }

  .breadcrumb {
    gap: 0.35rem;
    font-size: 0.88rem;
  }

  .results-count {
    font-size: 0.9rem;
  }
}

@media (max-width: 560px) {
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-map,
  .footer-map iframe {
    min-height: 200px;
    height: 200px;
  }

  .site-header {
    position: static;
  }

  .container {
    width: calc(100% - 0.9rem);
  }

  .hero {
    padding: 1.25rem 0 1.5rem;
  }

  .hero-slide {
    padding: 1.2rem 1.2rem 4.75rem;
  }

  .hero-brand-strip {
    gap: 0.45rem;
  }

  .hero-brand-strip span {
    min-height: 32px;
    font-size: 0.82rem;
    padding: 0.38rem 0.72rem;
  }

  .hero-slider-control {
    top: auto;
    bottom: 1rem;
    transform: none;
    width: 44px;
    height: 44px;
  }

  .hero-slider-prev {
    left: 1rem;
  }

  .hero-slider-next {
    right: 1rem;
  }

  .page-hero,
  .article-hero {
    padding: 1.4rem 0 1.1rem;
  }

  .hero h1,
  .page-hero h1,
  .article-hero h1 {
    font-size: clamp(1.65rem, 9vw, 2.15rem);
  }

  .main-nav {
    gap: 0.55rem;
  }

  .main-nav a,
  .nav-menu-button {
    font-size: 0.89rem;
    padding: 0.68rem 0.8rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .brand-menu-panel {
    padding-bottom: 0.8rem;
  }

  .brand-menu-shell {
    border-radius: 0 0 20px 20px;
  }

  .model-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .hero-visual img,
  .post-card,
  .listing-card,
  .category-card,
  .article-card,
  .sidebar-card {
    border-radius: 18px;
  }

  .tag {
    font-size: 0.76rem;
    padding: 0.32rem 0.62rem;
  }

  .button,
  .button.secondary {
    min-height: 48px;
    font-size: 0.94rem;
  }

  .article-body h2 {
    font-size: 1.28rem;
    margin: 1.35rem 0 0.7rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .copyright {
    font-size: 0.86rem;
  }
}

@media (max-width: 400px) {
  .logo img {
  width: auto;
  max-width: 220px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  object-position: left center;
}

  .container {
    width: calc(100% - 0.75rem);
  }

  .main-nav a,
  .nav-menu-button {
    font-size: 0.85rem;
    padding: 0.62rem 0.72rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .post-card-content,
  .listing-card-content,
  .article-body,
  .category-card,
  .sidebar-card {
    padding: 0.9rem;
  }
}
