/* ============================================================
   GV Sales — editorial redesign
   ============================================================ */
:root {
  --bg: #f5f5f7;
  --bg-alt: #ffffff;
  --bg-soft: #f0f1f3;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-dark: #111214;
  --border: rgba(15, 23, 42, 0.09);
  --border-strong: rgba(15, 23, 42, 0.16);
  --text: #111214;
  --text-dim: #5f6672;
  --text-soft: #8a9099;
  --brand: #1c7c54;
  --brand-strong: #0f5d3b;
  --brand-soft: #dceee6;
  --brand-glow: #eef7f2;
  --accent: #d9e6ff;
  --shadow-sm: 0 12px 30px rgba(17, 18, 20, 0.06);
  --shadow-md: 0 24px 60px rgba(17, 18, 20, 0.1);
  --shadow-lg: 0 36px 90px rgba(17, 18, 20, 0.14);
  --radius-sm: 16px;
  --radius: 24px;
  --radius-lg: 36px;
  --max-w: 1240px;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top left, rgba(28, 124, 84, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(115, 147, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #fbfbfc 0%, var(--bg) 18%, #f3f4f6 100%);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--brand-strong);
  text-decoration: none;
}

a:hover {
  color: var(--brand);
}

main {
  overflow: clip;
}

.container {
  width: min(var(--max-w), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 48px 0;
}

.section-alt {
  padding: 48px 0;
}

.section-alt .section-panel,
.section-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.section-shell {
  padding: 38px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head h2,
.section-head h1,
section h2,
section h1 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.section-head p,
.section-copy,
.lede {
  color: var(--text-dim);
}

.section-head p {
  margin: 0;
  max-width: 560px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(28, 124, 84, 0.1);
}

.text-center {
  text-align: center;
}

.hero {
  position: relative;
  padding: 34px 0 36px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 54px;
  min-height: 540px;
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(28, 124, 84, 0.22), transparent 34%),
    radial-gradient(circle at 80% 18%, rgba(157, 182, 255, 0.28), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 250, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: end;
}

.hero-copy {
  max-width: 720px;
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(3rem, 6.6vw, 5.7rem);
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero p.lede {
  max-width: 620px;
  margin: 0 0 28px;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.hero-display {
  position: relative;
  display: grid;
  gap: 16px;
  align-self: stretch;
}

.glass-card,
.hero-stat,
.feature-card,
.card,
.filter-panel,
.info-card,
.contact-card,
.detail-sidebar,
.legal-panel {
  backdrop-filter: saturate(130%) blur(18px);
}

.hero-card {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(17, 18, 20, 0.08);
}

.hero-card.primary {
  min-height: 270px;
  display: grid;
  align-content: space-between;
}

.hero-kicker {
  color: var(--text-soft);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-metric {
  display: flex;
  gap: 14px;
  align-items: center;
}

.hero-metric strong {
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.hero-metric span {
  color: var(--text-dim);
  max-width: 170px;
  font-size: 0.96rem;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hero-mini {
  min-height: 142px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.hero-mini strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.hero-mini p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.94rem;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--text);
  color: #fff;
  box-shadow: 0 12px 26px rgba(17, 18, 20, 0.16);
}

.btn-primary:hover {
  background: #000;
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border-color: rgba(15, 23, 42, 0.1);
}

.btn-secondary:hover {
  border-color: rgba(15, 23, 42, 0.2);
  background: #fff;
  color: var(--text);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border-color: rgba(15, 23, 42, 0.1);
}

.btn-full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  min-height: 66px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(17, 18, 20, 0.06);
  backdrop-filter: saturate(140%) blur(18px);
  transition:
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.site-header.is-scrolled .container {
  box-shadow: 0 18px 44px rgba(17, 18, 20, 0.1);
  background: rgba(255, 255, 255, 0.84);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 1.28rem;
}

.brand-mark strong {
  color: var(--brand);
}

.brand .sub {
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

nav.main {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(245, 245, 247, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

nav.main a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.18s ease, color 0.18s ease;
}

nav.main a:hover,
nav.main a.active {
  background: #fff;
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switcher {
  display: flex;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(245, 245, 247, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.lang-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lang-switcher a.active,
.lang-switcher a:hover {
  background: #fff;
  color: var(--text);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(245, 245, 247, 0.9);
  color: var(--text);
  cursor: pointer;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card,
.feature-card,
.filter-panel,
.info-card,
.contact-card,
.detail-sidebar,
.legal-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.card {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.card:hover,
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 23, 42, 0.14);
}

.card .icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #eff4f1);
  font-size: 1.35rem;
}

.card h3,
.feature-card h3,
.product-card .name,
.contact-card h2,
.detail-sidebar h2,
.legal-panel h1,
.legal-panel h2 {
  margin: 0 0 10px;
  letter-spacing: -0.04em;
}

.card p,
.feature-card p,
.contact-card p,
.info-card p,
.legal-panel p {
  margin: 0;
  color: var(--text-dim);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.feature-card.large {
  min-height: 300px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at top left, rgba(28, 124, 84, 0.14), transparent 40%),
    #fff;
}

.feature-card.large p {
  max-width: 500px;
}

.feature-stack {
  display: grid;
  gap: 20px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  padding: 22px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  letter-spacing: -0.06em;
}

.stat-card span {
  color: var(--text-dim);
}

.catalog-header {
  display: grid;
  gap: 28px;
}

.catalog-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.catalog-intro h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.catalog-intro p {
  margin: 10px 0 0;
  max-width: 540px;
  color: var(--text-dim);
  font-size: 1.02rem;
}

.filter-panel form {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.filter-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dim);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.product-card a {
  display: block;
  color: inherit;
}

.product-card .img-wrap {
  aspect-ratio: 1.2;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(28, 124, 84, 0.08), transparent 40%),
    linear-gradient(180deg, #f5f7f8, #e9edf0);
}

.product-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .img-wrap img {
  transform: scale(1.04);
}

.product-card .body {
  padding: 24px;
}

.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-new {
  background: #dfeee6;
  color: var(--brand-strong);
}

.badge-semi {
  background: #e7eefb;
  color: #355796;
}

.badge-used {
  background: #eceef2;
  color: #5f6672;
}

.product-card .name {
  font-size: 1.28rem;
  line-height: 1.06;
}

.product-card .meta {
  display: flex;
  gap: 10px 14px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.product-card .price {
  margin-top: 18px;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.empty-state {
  padding: 26px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 30px;
}

.detail-gallery {
  display: grid;
  gap: 14px;
}

.detail-main-image,
.detail-thumb {
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(28, 124, 84, 0.08), transparent 40%),
    linear-gradient(180deg, #f5f7f8, #e9edf0);
  border: 1px solid var(--border);
}

.detail-main-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.detail-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.breadcrumbs a {
  color: inherit;
}

.detail-sidebar h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.detail-summary {
  color: var(--text-dim);
  font-size: 1rem;
}

.detail-price {
  margin: 0 0 22px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.spec-table td {
  padding: 13px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.95rem;
}

.spec-table td:first-child {
  color: var(--text-dim);
}

.spec-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.detail-description {
  margin-top: 26px;
  padding: 32px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.detail-description h2 {
  margin-bottom: 14px;
  font-size: 1.7rem;
}

.detail-description .copy {
  color: var(--text-dim);
  line-height: 1.85;
}

.form {
  display: grid;
  gap: 18px;
}

.form .row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dim);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font: inherit;
  font-size: 0.97rem;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

textarea {
  min-height: 170px;
  padding: 16px 18px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: rgba(17, 18, 20, 0.22);
  box-shadow: 0 0 0 5px rgba(17, 18, 20, 0.05);
  background: #fff;
}

.alert {
  padding: 16px 18px;
  border-radius: 18px;
  font-size: 0.95rem;
}

.alert-success {
  background: #e8f4ed;
  border: 1px solid #cde4d6;
  color: var(--brand-strong);
}

.alert-error {
  background: #fce9e9;
  border: 1px solid #f1c7c7;
  color: #9d3131;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 28px;
}

.contact-card h2 {
  font-size: 1.65rem;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.contact-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-item a {
  font-size: 1.02rem;
}

.about-story {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 22px;
}

.about-story .feature-card {
  min-height: 280px;
}

.legal-panel {
  max-width: 860px;
  margin: 0 auto;
  padding: 38px;
}

.legal-panel h1 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  margin-bottom: 12px;
}

.legal-panel h2 {
  margin-top: 28px;
  font-size: 1.28rem;
}

.site-footer {
  margin-top: 80px;
  padding: 0 0 26px;
}

.footer-shell {
  padding: 36px;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 248, 250, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer-top h4 {
  margin: 0 0 14px;
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-top ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-top li + li {
  margin-top: 10px;
}

.footer-top a {
  color: var(--text-dim);
}

.footer-about {
  max-width: 360px;
  color: var(--text-dim);
}

.copy {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text-soft);
  font-size: 0.86rem;
}

.copy .credit a {
  color: var(--text-dim);
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(24px);
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner .text {
  color: var(--text-dim);
  font-size: 0.92rem;
}

.cookie-banner .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hidden {
  display: none !important;
}

@media (max-width: 1080px) {
  .hero-panel {
    padding: 40px;
    min-height: auto;
  }

  .hero-grid,
  .feature-grid,
  .detail-shell,
  .contact-layout,
  .about-story,
  .footer-top,
  .catalog-intro {
    grid-template-columns: 1fr;
  }

  .hero-display {
    max-width: 620px;
  }

  .filter-panel form,
  .stats-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .site-header .container {
    width: min(var(--max-w), calc(100% - 24px));
    padding-inline: 14px;
  }

  nav.main {
    position: fixed;
    top: 84px;
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
  }

  nav.main.open {
    display: flex;
  }

  nav.main a {
    min-height: 44px;
    padding: 0 12px;
  }

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

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

  .site-header {
    padding-top: 10px;
  }

  .hero-panel,
  .section-shell,
  .card,
  .feature-card,
  .filter-panel,
  .info-card,
  .contact-card,
  .detail-sidebar,
  .detail-description,
  .footer-shell,
  .legal-panel {
    padding: 24px;
  }

  .hero-mini-grid,
  .detail-thumbs,
  .form .row {
    grid-template-columns: 1fr;
  }

  .cta-row,
  .copy,
  .cookie-banner,
  .header-actions {
    align-items: stretch;
  }

  .lang-switcher {
    display: none;
  }
}


/* === Botão flutuante WhatsApp (todas as páginas) === */
.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background:#25D366;
  color:#fff;
  padding:.85rem 1.1rem;
  border-radius:999px;
  font-weight:600;
  font-size:.95rem;
  line-height:1;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(37,211,102,.35),0 4px 10px rgba(0,0,0,.2);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.wa-float:hover{
  background:#1ebe5d;
  transform:translateY(-2px);
  box-shadow:0 14px 36px rgba(37,211,102,.45),0 6px 14px rgba(0,0,0,.25);
}
.wa-float:focus-visible{
  outline:3px solid #fff;
  outline-offset:2px;
}
.wa-float svg{display:block;flex-shrink:0}
.wa-float__label{white-space:nowrap}

@media (max-width:560px){
  .wa-float{padding:.85rem;border-radius:50%}
  .wa-float__label{display:none}
}
