/*
Theme Name: Codex Business
Theme URI: https://example.local/
Author: Codex
Description: A polished export e-bike WordPress theme with multilingual market entry points.
Version: 1.4.4
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: codex-business
*/

:root {
  --ink: #0d1513;
  --muted: #5b6863;
  --line: #d7e0db;
  --paper: #f7faf6;
  --soft: #eaf2ee;
  --teal: #0a8f7f;
  --teal-dark: #06675e;
  --gold: #d7a348;
  --white: #ffffff;
  --sale: #f6efe0;
  --carbon: #101816;
  --carbon-2: #182522;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.promo-bar {
  background: #07100e;
  color: var(--white);
  padding: 9px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 750;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(22, 33, 31, 0.08);
  background: rgba(247, 250, 246, 0.92);
  backdrop-filter: blur(16px);
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), #62b66f);
  color: var(--white);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 4px;
  font-size: 12px;
  font-weight: 800;
}

.language-switcher a {
  display: grid;
  min-width: 30px;
  min-height: 28px;
  place-items: center;
  border-radius: 6px;
  color: var(--muted);
}

.language-switcher a.active,
.language-switcher a:hover {
  background: var(--ink);
  color: var(--white);
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-menu a:hover {
  color: var(--teal-dark);
}

.button,
.wp-block-button__link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 750;
  padding: 10px 18px;
}

.button:hover,
.wp-block-button__link:hover {
  background: var(--teal-dark);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.button.whatsapp-inline {
  background: #22c55e;
}

.button.whatsapp-inline:hover {
  background: #16a34a;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--carbon);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 21, 19, 0.96) 0%, rgba(13, 21, 19, 0.86) 34%, rgba(13, 21, 19, 0.46) 62%, rgba(13, 21, 19, 0.22) 100%);
  z-index: 1;
}

.hero-carousel,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-carousel {
  z-index: 0;
}

.hero-slide {
  background-position: center right;
  background-size: cover;
  opacity: 0;
  animation: heroFade 18s infinite;
}

.slide-product {
  background-image: url("assets/images/ebike-coastal-commuter.png");
}

.slide-factory {
  background-image: url("assets/images/hero-factory.png");
  animation-delay: 6s;
}

.slide-certification {
  background-image: url("assets/images/hero-certification.png");
  animation-delay: 12s;
}

@keyframes heroFade {
  0%,
  30% {
    opacity: 1;
  }

  36%,
  94% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 96px 0 120px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
}

.hero .eyebrow {
  color: #7ee0ca;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 34px;
  line-height: 1.2;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.3;
}

.lead {
  max-width: 560px;
  color: var(--muted);
  font-size: 19px;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-proof span {
  border: 1px solid rgba(126, 224, 202, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d8fff5;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 800;
}

.hero-carousel-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-carousel-labels span {
  border-left: 2px solid #7ee0ca;
  color: rgba(255, 255, 255, 0.72);
  padding-left: 10px;
  font-size: 13px;
  font-weight: 750;
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.hero .button.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.trust-strip {
  padding: 28px 0;
  background: var(--white);
}

.section {
  padding: 84px 0;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.product-media {
  display: grid;
  min-height: 540px;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sale);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-list {
  display: grid;
  gap: 14px;
}

.product-card {
  display: flex;
  min-height: 164px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.product-card.featured {
  border-color: rgba(8, 121, 111, 0.35);
  box-shadow: 0 18px 48px rgba(8, 121, 111, 0.12);
}

.product-card p {
  color: var(--muted);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
}

.price-row strong {
  font-size: 20px;
}

.price-row a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 850;
}

.section.soft {
  background: var(--soft);
}

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

.factory-panel {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.factory-panel span {
  display: block;
  margin-bottom: 34px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.factory-panel p {
  color: var(--muted);
}

#support {
  background:
    linear-gradient(135deg, rgba(13, 21, 19, 0.98), rgba(24, 37, 34, 0.94)),
    radial-gradient(circle at top right, rgba(10, 143, 127, 0.18), transparent 34%);
  color: var(--white);
}

#support .eyebrow {
  color: #7ee0ca;
}

#support .section-head p,
#support .card p {
  color: rgba(255, 255, 255, 0.68);
}

#support .card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

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

.scenario-card {
  display: grid;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
}

.scenario-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.scenario-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.scenario-card.large img {
  height: 100%;
  min-height: 560px;
  aspect-ratio: auto;
}

.scenario-card div {
  padding: 24px;
}

.scenario-card p {
  color: var(--muted);
}

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

.section-head p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
}

.card p {
  color: var(--muted);
}

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

.case-card,
.article-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
}

.case-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
}

.case-card p,
.article-card p {
  color: var(--muted);
}

.case-card a {
  color: var(--teal-dark);
  font-weight: 850;
}

.article-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.card-tag {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(8, 121, 111, 0.1);
  color: var(--teal-dark);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.metric {
  background: var(--white);
  padding: 26px;
}

.metric strong {
  display: block;
  color: var(--teal-dark);
  font-size: 26px;
  line-height: 1;
}

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

.language-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 20px;
}

.language-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 24px;
}

.language-grid span {
  color: var(--muted);
  font-size: 14px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.cert-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.cert-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 22px;
}

.cert-card span {
  color: var(--muted);
  font-size: 14px;
}

.process-steps,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-steps article,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.process-steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--carbon);
  color: var(--white);
  font-weight: 900;
}

.process-steps p,
.faq-grid p {
  color: var(--muted);
}

.metric span {
  color: var(--muted);
  font-size: 14px;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(13, 21, 19, 0.98), rgba(6, 103, 94, 0.88)),
    var(--ink);
  color: var(--white);
  padding: 42px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: #22c55e;
  color: var(--white);
  padding: 10px 18px 10px 10px;
  box-shadow: 0 18px 42px rgba(17, 27, 24, 0.2);
  font-weight: 900;
}

.whatsapp-float:hover {
  background: #16a34a;
}

.whatsapp-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  font-size: 12px;
}

.cta p {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
}

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

.content {
  padding: 64px 0;
}

.subhero,
.product-detail-hero {
  background:
    linear-gradient(135deg, rgba(13, 21, 19, 0.98), rgba(24, 37, 34, 0.94));
  color: var(--white);
  padding: 96px 0;
}

.subhero .eyebrow,
.product-detail-hero .eyebrow {
  color: #7ee0ca;
}

.subhero .lead,
.product-detail-hero .lead {
  color: rgba(255, 255, 255, 0.74);
}

.product-archive-grid {
  display: grid;
  gap: 22px;
}

.product-tile {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.product-tile img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.product-tile > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.product-tile p {
  color: var(--muted);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.product-detail-layout img {
  width: 100%;
  min-height: 430px;
  border-radius: 8px;
  object-fit: cover;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.detail-meta span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.product-detail-hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

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

.detail-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
}

.detail-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

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

.detail-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.detail-gallery figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.detail-gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.detail-gallery figure:first-child img {
  height: 420px;
}

.detail-gallery figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.spec-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.spec-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
}

.spec-card h2 {
  margin-top: 0;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow-wrap: anywhere;
}

.spec-table tr {
  border-top: 1px solid var(--line);
}

.spec-table th,
.spec-table td {
  padding: 14px 0;
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 34%;
  color: var(--ink);
  font-size: 14px;
}

.spec-table td {
  color: var(--muted);
}

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

.detail-cta {
  margin-top: 28px;
  border-radius: 8px;
  padding: 30px;
  background: #0f1b18;
  color: var(--white);
}

.detail-cta p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.dealer-page {
  background: var(--paper);
}

.preview-page-hero {
  background: linear-gradient(135deg, #0d1513, #1d322d);
  color: var(--white);
  padding: 92px 0;
}

.preview-page-hero .lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.74);
}

.dealer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.dealer-summary {
  display: grid;
  gap: 18px;
}

.dealer-summary-card,
.quote-form,
.dealer-docs article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.dealer-summary-card {
  padding: 26px;
}

.dealer-summary-card p,
.dealer-docs p {
  color: var(--muted);
}

.dealer-checks {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dealer-checks li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.dealer-checks li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 900;
}

.quote-form {
  padding: 30px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field span {
  color: var(--ink);
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.quote-actions .button.secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

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

.dealer-docs article {
  padding: 22px;
}

@media (max-width: 820px) {
  .header-inner,
  .header-actions,
  .section-head,
  .footer-inner,
  .cta {
    align-items: start;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    gap: 14px;
    padding: 12px 0;
  }

  .header-actions {
    width: 100%;
    gap: 12px;
  }

  .nav-menu {
    gap: 14px;
    font-size: 13px;
  }

  .language-switcher {
    overflow-x: auto;
    max-width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(13, 21, 19, 0.94) 0%, rgba(13, 21, 19, 0.78) 58%, rgba(13, 21, 19, 0.52) 100%);
  }

  .hero-content {
    padding: 64px 0 82px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  h2 {
    font-size: 28px;
  }

  .lead {
    font-size: 17px;
  }

  .section {
    padding: 58px 0;
  }

  .metric {
    padding: 22px;
  }

  .metric strong {
    font-size: 24px;
  }

  .product-showcase {
    grid-template-columns: 1fr;
  }

  .product-media {
    min-height: 280px;
  }

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

  .scenario-card.large {
    grid-row: auto;
  }

  .scenario-card.large img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }

  .grid.three,
  .grid.two,
  .factory-grid,
  .case-grid,
  .article-grid,
  .detail-columns,
  .detail-gallery,
  .spec-layout,
  .trade-grid,
  .cert-grid,
  .process-steps,
  .faq-grid,
  .dealer-layout,
  .form-grid,
  .dealer-docs,
  .metric-row,
  .language-grid {
    grid-template-columns: 1fr;
  }

  .subhero,
  .product-detail-hero {
    padding: 68px 0;
  }

  .product-tile,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-tile img,
  .product-detail-layout img {
    min-height: 280px;
  }

  .detail-gallery img,
  .detail-gallery figure:first-child img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .spec-card,
  .detail-panel,
  .detail-cta,
  .quote-form {
    padding: 22px;
  }
}

@media (max-width: 480px) {
  .promo-bar {
    padding: 8px 14px;
    font-size: 12px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav-menu {
    width: 100%;
  }

  .nav-menu a {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 25px;
  }

  .hero-actions,
  .hero-proof,
  .hero-carousel-labels {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .wp-block-button__link {
    width: 100%;
  }

  .product-card,
  .card,
  .factory-panel,
  .case-card,
  .article-card,
  .detail-panel,
  .product-tile > div {
    padding: 20px;
  }

  .price-row {
    align-items: start;
    flex-direction: column;
  }

  .price-row a {
    width: 100%;
    justify-content: center;
  }

  .cta {
    padding: 28px;
  }

  .whatsapp-float {
    min-height: 48px;
    padding: 8px;
  }

  .whatsapp-float > span:last-child {
    display: none;
  }
}
