@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f5;
  --text: #0f0f10;
  --muted: #6f6f74;
  --line: rgba(15, 15, 16, 0.09);
  --line-strong: rgba(255, 255, 255, 0.12);
  --black: #000000;
  --red: #ab212f;
  --red-dark: #8c1b26;
  --green: #0b8d52;
  --green-soft: rgba(11, 141, 82, 0.12);
  --radius: 6px;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Jost", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container-wide {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 42px);
}

.container-narrow {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 32px);
}

.site-header {
  background: var(--black);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 30;
}

.top-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding-top: 0;
  padding-bottom: 0;
}

.brand {
  position: relative;
}

.brand img {
  width: auto;
  height: clamp(98px, 8.6vw, 132px);
  filter: none;
}

.footer-logo {
  width: auto;
  height: clamp(120px, 12vw, 190px);
  filter: none;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 7px 12px;
  width: min(100%, 500px);
  margin-left: clamp(18px, 3vw, 42px);
  margin-right: clamp(18px, 3vw, 42px);
}

.search-form svg {
  width: 15px;
  height: 15px;
  fill: rgba(255, 255, 255, 0.5);
  flex: 0 0 auto;
}

.search-form input {
  border: 0;
  background: transparent;
  outline: 0;
  color: #fff;
  width: 100%;
}

.search-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

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

.icon-button,
.icon-link {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  transition: color 0.2s ease;
}

.icon-link:hover,
.icon-button:hover,
.main-nav a:hover {
  color: #fff;
}

.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap svg,
.icon-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.icon-link span:last-child,
.distributor-link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cta-button,
.secondary-button,
.ghost-button,
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: var(--radius);
  padding: 12px 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cta-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.whatsapp-button:hover {
  transform: translateY(-1px);
}

.cta-button {
  background: var(--red);
  color: #fff;
  border: 0;
}

.cta-button:hover {
  background: var(--red-dark);
}

.ghost-button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.secondary-button {
  background: transparent;
  border: 1px solid rgba(15, 15, 16, 0.15);
  color: var(--text);
}

.secondary-button:hover {
  background: var(--black);
  color: #fff;
}

.whatsapp-button {
  border: 2px solid #25d366;
  color: #25d366;
}

.whatsapp-button:hover {
  background: #25d366;
  color: #fff;
}

.distributor-link {
  background: var(--red);
  color: #fff;
  padding: 9px 15px;
  border-radius: var(--radius);
}

.mobile-search {
  padding-bottom: 0;
}

.main-nav {
  border-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: -30px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 12px 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.menu-toggle .menu-close {
  display: none;
}

.menu-toggle.is-open .menu-open {
  display: none;
}

.menu-toggle.is-open .menu-close {
  display: inline;
}

.menu-list {
  list-style: none;
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 0;
  padding: 0;
  margin: 0;
}

.menu-list a {
  display: block;
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
}

.menu-list a.active {
  color: #fff;
  border-bottom-color: var(--red);
}

.hero-banner-section,
.highlight-strip,
.features-section,
.site-footer,
.details-dark,
.internal-hero {
  background: var(--black);
  color: #fff;
}

.hero-banner-section {
  background: transparent;
  padding: 0;
  overflow: hidden;
}

.home-hero-banner,
.home-hero-picture {
  display: block;
  width: 100%;
}

.home-hero-picture img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-carousel {
  width: 100%;
  border-radius: 0;
  background: transparent;
  max-width: none;
  margin: 0;
}

.hero-banner-section .highlight-track {
  align-items: stretch;
  background: transparent;
}

.hero-banner-section .highlight-track a,
.hero-slide {
  position: relative;
  display: block;
  width: 100vw;
  aspect-ratio: 3 / 1;
  min-height: 0;
  background: #111;
}

.hero-carousel .highlight-track img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.42);
}

.hero-arrow span {
  display: block;
  font-size: 42px;
  line-height: 1;
  transform: translateY(-2px);
}

.hero-arrow-prev {
  left: clamp(12px, 2vw, 26px);
}

.hero-arrow-next {
  right: clamp(12px, 2vw, 26px);
}

.hero-banner-section .highlight-dots {
  bottom: 18px;
}

.hero-banner-section + .about-section {
  margin-top: 0;
}

.about-section {
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: clamp(60px, 9vw, 132px) 0;
}

.about-section h2,
.section-title h2,
.cta-section h2,
.internal-hero h1,
.contact-card h2,
.not-found h1,
.empty-state h2 {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-section h2 {
  font-size: clamp(22px, 2.6vw, 34px);
}

.about-title {
  font-weight: 500;
}

.about-title span {
  font-weight: 800;
}

.about-section p,
.internal-hero p,
.product-description,
.contact-card p,
.contact-card a,
.empty-state p,
.not-found p {
  color: var(--muted);
  line-height: 1.8;
}

.category-showcase {
  padding: 44px 0 64px;
}

.bordered-showcase {
  border-top: 1px solid var(--line);
}

.section-header {
  margin-bottom: 28px;
}

.section-header p {
  margin: 0;
  font-size: clamp(28px, 3.8vw, 58px);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-weight: 300;
}

.section-header strong {
  font-weight: 800;
}

.showcase-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.showcase-grid-left {
  grid-template-columns: minmax(270px, 320px) 1fr;
}

.showcase-grid-right {
  grid-template-columns: 1fr minmax(270px, 320px);
}

.showcase-image {
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 100%;
}

.showcase-dark {
  background: var(--black);
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-image-electric img {
  object-position: center 52%;
}

.showcase-image-charcoal img {
  object-position: center center;
}

.products-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.products-rail-wrap {
  position: relative;
  min-width: 0;
}

.products-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 2px 8px;
}

.products-rail::-webkit-scrollbar {
  display: none;
}

.products-rail-item {
  min-width: 0;
}

.products-rail .compact-card {
  border-right: 1px solid var(--line);
  padding-right: 6px;
}

.products-rail-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 15, 16, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font-size: 30px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.products-rail-arrow:hover {
  background: #fff;
}

.products-rail-arrow-prev {
  left: -14px;
}

.products-rail-arrow-next {
  right: -14px;
}

.product-card {
  position: relative;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-2px);
}

.product-card-link {
  display: block;
  height: 100%;
}

.compact-card {
  border-right: 1px solid var(--line);
  padding-right: 6px;
}

.showcase-grid-right .products-grid-3 .product-card,
.products-grid-charcoal-home .product-card {
  border-right: 1px solid var(--line);
  padding-right: 6px;
}

.showcase-grid-right .products-grid-3 .product-card:last-child,
.products-grid-charcoal-home .product-card:last-child {
  border-right: 0;
  padding-right: 0;
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-block;
  padding: 8px 10px;
  background: var(--red);
  color: #fff;
  border-radius: 4px;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
}

.product-slider {
  position: relative;
  background: #fff;
}

.product-slider-stage {
  position: relative;
  height: clamp(210px, 22vw, 300px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y;
}

.product-slider-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.compact-card .product-slider-stage {
  height: clamp(240px, 24vw, 330px);
}

.compact-card .product-slider-stage img {
  padding: 0;
}

.product-slider-stage img.is-active {
  opacity: 1;
}

.slider-dots,
.highlight-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.slider-dots button,
.highlight-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(15, 15, 16, 0.2);
}

.slider-dots button.is-active {
  background: #080808;
}

.product-copy {
  padding: 16px 16px 18px;
}

.eyebrow {
  display: block;
  margin-bottom: 6px;
  color: #8f8f96;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-copy h3,
.product-summary h1 {
  margin: 0 0 12px;
  text-transform: uppercase;
  line-height: 1.18;
}

.product-copy h3 {
  font-size: 14px;
  letter-spacing: 0.02em;
}

.price,
.product-price {
  margin: 0 0 6px;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.product-price.quote-price {
  margin-top: 4px;
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}

.meta,
.product-meta {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.meta-highlight,
.product-meta-highlight {
  color: var(--red);
  font-weight: 700;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.tag-green {
  border-color: rgba(171, 33, 47, 0.22);
  color: var(--red);
  background: rgba(171, 33, 47, 0.08);
}

.collection-grid .product-card {
  min-height: 100%;
}

.collection-grid .product-copy {
  padding: 18px 18px 20px;
}

.collection-grid .eyebrow {
  font-size: 10px;
}

.collection-grid .product-copy h3 {
  font-size: 16px;
}

.collection-grid .price {
  font-size: clamp(28px, 2.4vw, 40px);
}

.charcoal-collection-grid {
  gap: 18px;
}

.charcoal-collection-grid .product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.charcoal-collection-grid .product-slider-stage {
  height: 230px;
}

.charcoal-collection-grid .product-slider-stage img {
  padding: 16px;
}

.charcoal-collection-grid .product-copy {
  padding: 16px 16px 18px;
}

.charcoal-collection-grid .product-copy h3 {
  font-size: 14px;
}

.charcoal-collection-grid .price {
  font-size: 22px;
}

.charcoal-collection-grid .meta,
.charcoal-collection-grid .meta-highlight {
  font-size: 10px;
}

.charcoal-collection-grid .card-inline-cta {
  width: 100%;
  justify-content: center;
}

.charcoal-card .card-inline-cta {
  display: inline-flex;
  margin-top: 14px;
  background: var(--red);
  color: #fff;
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.highlight-strip {
  padding: 56px 0 72px;
}

.highlight-carousel:not(.hero-carousel) {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  max-width: 1120px;
  margin: 0 auto;
}

.highlight-carousel.hero-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  width: 100%;
  max-width: none;
  margin: 0;
}

.highlight-track {
  display: flex;
  transition: transform 0.45s ease;
}

.highlight-track a {
  flex: 0 0 100%;
}

.highlight-dots button {
  background: rgba(255, 255, 255, 0.3);
}

.highlight-dots button.is-active {
  background: #fff;
}

.cta-section {
  text-align: center;
  padding: clamp(72px, 8vw, 120px) 0;
}

.cta-section p {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cta-section-light {
  background: #fff;
}

.site-footer {
  padding: 48px 0 28px;
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-top {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social span {
  font-size: 16px;
  font-weight: 700;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(171, 33, 47, 0.7);
  border-radius: 999px;
  color: var(--red);
  font-size: 12px;
}

.footer-social a:hover {
  background: var(--red);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid h3 {
  margin: 0 0 18px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
}

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

.footer-grid li,
.footer-grid p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

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

.footer-contact-block {
  margin-top: 18px;
}

.footer-bottom {
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.24);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.footer-bottom span:last-child {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
}

.internal-hero {
  text-align: center;
  padding: clamp(42px, 6vw, 82px) 0;
}

.internal-hero h1 {
  font-size: clamp(26px, 3vw, 42px);
}

.internal-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.banner-section,
.products-section,
.contact-section,
.specs-section {
  padding: clamp(34px, 5vw, 72px) 0;
}

.content-page-section {
  padding: clamp(34px, 5vw, 72px) 0;
}

.content-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
}

.content-page-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
}

.content-page-lead {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
}

.content-page-block + .content-page-block {
  margin-top: 24px;
}

.content-page-block h2,
.content-page-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.content-page-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.content-page-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.content-page-list li + li {
  margin-top: 10px;
}

.content-page-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.collection-banner-section {
  padding-top: 0;
  padding-bottom: 0;
}

.collection-banner {
  display: block;
  width: 100%;
}

.empty-state,
.not-found {
  text-align: center;
  padding: 100px 0;
}

.breadcrumb-bar {
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 16px;
  padding-bottom: 16px;
  color: #898990;
  font-size: 11px;
}

.breadcrumb strong {
  color: var(--text);
}

.product-section {
  padding: clamp(30px, 5vw, 64px) 0;
}

.product-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 72px);
}

.gallery-stage {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.gallery-main-image {
  width: 100%;
  height: clamp(260px, 30vw, 420px);
  object-fit: contain;
  touch-action: pan-y;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-top: 14px;
}

.gallery-thumbs button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  padding: 4px;
}

.gallery-thumbs button.is-active {
  border-color: var(--text);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-summary h1 {
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 0.02em;
}

.cta-stack {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
}

.full-width {
  width: 100%;
}

.details-dark,
.features-section {
  padding: clamp(56px, 7vw, 90px) 0;
}

.section-title {
  margin-bottom: 28px;
}

.section-title.centered {
  text-align: center;
}

.section-title.centered h2::after {
  content: "";
  display: block;
  width: 68px;
  height: 4px;
  background: var(--red);
  margin: 14px auto 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1060px;
  margin: 0 auto;
}

.detail-item {
  display: flex;
  gap: 16px;
}

.detail-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-top: 4px;
}

.detail-icon::before,
.detail-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(171, 33, 47, 0.9));
  transform: translate(-50%, -50%);
}

.detail-icon::before {
  width: 18px;
  height: 2px;
}

.detail-icon::after {
  width: 2px;
  height: 18px;
}

.detail-item:hover .detail-icon::before,
.detail-item:hover .detail-icon::after {
  background: linear-gradient(180deg, #ffffff, #d33a48);
}

.detail-item h3,
.feature-card h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.detail-item p,
.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.full-banner img {
  width: 100%;
}

.full-banner.full-banner-contained {
  background: #f6f4f1;
  padding: clamp(28px, 4vw, 52px) 0;
}

.full-banner.full-banner-contained img {
  display: block;
  width: min(100%, 1100px);
  max-height: min(70vh, 760px);
  margin: 0 auto;
  object-fit: contain;
}

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

.feature-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 22px;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.spec-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.spec-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  background: #fff;
}

.contact-card-wide {
  grid-column: span 2;
}

.contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(171, 33, 47, 0.14);
  margin: 0 auto 18px;
}

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

.contact-card a:hover {
  color: var(--text);
}

.mobile-search-toggle {
  display: none;
}

@media (max-width: 1180px) {
  .products-grid-3,
  .feature-grid,
  .footer-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .showcase-grid-left,
  .showcase-grid-right {
    grid-template-columns: 1fr;
  }

  .compact-card {
    border-right: 0;
    padding-right: 0;
  }

  .products-rail {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

  .desktop-large-only {
    display: none;
  }
}

@media (max-width: 920px) {
  .site-header {
    position: sticky;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  }

  .top-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 14px;
  }

  .brand {
    align-self: center;
  }

  .brand img {
    height: 82px;
  }

  .header-actions {
    justify-content: flex-end;
    gap: 14px;
  }

  .desktop-search,
  .distributor-link,
  .hide-on-mobile {
    display: none;
  }

  .mobile-search-toggle,
  .menu-toggle {
    display: inline-flex;
  }

  .nav-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav {
    margin-top: 0;
  }

  .mobile-search {
    padding: 0 0 12px;
  }

  .mobile-search .container-wide {
    padding-top: 0;
  }

  .mobile-search .search-form {
    width: 100%;
    margin: 0;
  }

  .menu-list {
    display: none;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .menu-list.is-open {
    display: flex;
  }

  .menu-list a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 0;
  }

  .menu-list a.active {
    border-bottom-color: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .hero-banner-section {
    padding: 0;
  }

  .home-hero-picture img {
    width: 100%;
  }

  .hero-banner-section .highlight-track a,
  .hero-slide {
    aspect-ratio: 3 / 1;
    min-height: 0;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
  }

  .hero-arrow span {
    font-size: 32px;
  }

  .products-grid-3,
  .products-grid-2,
  .products-grid-charcoal-home,
  .detail-grid,
  .spec-list,
  .product-layout,
  .content-page-layout {
    grid-template-columns: 1fr;
  }

  .products-rail-wrap {
    overflow: visible;
  }

  .products-rail {
    grid-auto-columns: 100%;
    padding-bottom: 4px;
  }

  .products-rail .compact-card {
    border-right: 0;
    padding-right: 0;
  }

  .products-rail-arrow {
    display: none;
  }

  .charcoal-collection-grid {
    grid-template-columns: 1fr;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .desktop-only {
    display: none;
  }

  .section-header {
    margin-bottom: 22px;
  }

  .section-header p {
    font-size: clamp(30px, 10vw, 46px);
    line-height: 0.98;
  }

  .product-card {
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
  }

  .showcase-grid-right .products-grid-3 .product-card,
  .products-grid-charcoal-home .product-card {
    border-right: 0;
    padding-right: 0;
  }

  .product-slider-stage,
  .compact-card .product-slider-stage,
  .charcoal-collection-grid .product-slider-stage {
    height: clamp(230px, 70vw, 360px);
  }

  .product-copy {
    padding: 14px 4px 4px;
  }

  .price,
  .product-price {
    font-size: clamp(28px, 9vw, 38px);
  }

  .gallery-stage {
    padding: 10px;
  }

  .gallery-main-image {
    height: clamp(280px, 82vw, 430px);
  }

  .product-summary h1 {
    font-size: clamp(30px, 11vw, 44px);
  }

  .detail-item {
    gap: 12px;
  }

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

@media (max-width: 640px) {
  .container-wide,
  .container-narrow {
    padding-left: 18px;
    padding-right: 18px;
  }

  .top-header {
    padding-top: 6px;
    padding-bottom: 4px;
  }

  .brand img {
    height: 72px;
  }

  .footer-logo {
    height: 118px;
  }

  .header-actions {
    gap: 14px;
  }

  .icon-button,
  .icon-link {
    min-width: 34px;
    min-height: 34px;
    justify-content: center;
  }

  .menu-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.78);
  }

  .icon-link span:last-child {
    display: none;
  }

  .about-section {
    padding: 46px 0 52px;
  }

  .about-section p {
    font-size: 15px;
    line-height: 1.75;
  }

  .category-showcase {
    padding: 38px 0 48px;
  }

  .highlight-strip {
    padding: 32px 0 48px;
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
  }

  .hero-arrow span {
    font-size: 26px;
  }

  .hero-arrow-prev {
    left: 8px;
  }

  .hero-arrow-next {
    right: 8px;
  }

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

  .footer-top,
  .footer-bottom {
    align-items: center;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

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

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

@media (max-width: 430px) {
  .top-header {
    grid-template-columns: 1fr auto;
  }

  .brand img {
    height: 64px;
  }

  .section-header p {
    font-size: clamp(28px, 12vw, 40px);
  }

  .product-slider-stage,
  .compact-card .product-slider-stage,
  .charcoal-collection-grid .product-slider-stage {
    height: clamp(220px, 78vw, 330px);
  }

  .cta-button,
  .secondary-button,
  .ghost-button,
  .whatsapp-button {
    width: 100%;
    min-height: 50px;
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* Responsividade refinada para tablets e celulares */
@media (min-width: 921px) and (max-width: 1180px) {
  .container-wide {
    padding-left: clamp(22px, 3vw, 34px);
    padding-right: clamp(22px, 3vw, 34px);
  }

  .top-header {
    gap: 14px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand img {
    height: clamp(78px, 8vw, 96px);
  }

  .search-form {
    width: min(100%, 430px);
    margin-left: clamp(10px, 2vw, 24px);
    margin-right: clamp(10px, 2vw, 24px);
  }

  .header-actions {
    gap: 12px;
  }

  .icon-link span:last-child {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .distributor-link {
    min-height: 42px;
    padding: 8px 12px;
    font-size: 9px;
  }

  .main-nav {
    margin-top: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-inner {
    justify-content: flex-start;
  }

  .menu-list {
    min-width: max-content;
  }

  .menu-list a {
    padding: 12px 14px;
    white-space: nowrap;
  }

  .showcase-image {
    max-height: 420px;
  }

  .products-grid-3,
  .products-grid-charcoal-home,
  .charcoal-collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-rail {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

  .product-slider-stage,
  .compact-card .product-slider-stage {
    height: clamp(260px, 34vw, 360px);
  }
}

@media (min-width: 641px) and (max-width: 920px) {
  .container-wide {
    padding-left: 26px;
    padding-right: 26px;
  }

  .top-header {
    grid-template-columns: auto 1fr;
    padding-top: 8px;
    padding-bottom: 6px;
  }

  .brand img {
    height: 88px;
  }

  .header-actions {
    gap: 16px;
  }

  .icon-button,
  .icon-link {
    min-width: 42px;
    min-height: 42px;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
  }

  .products-grid-3,
  .products-grid-2,
  .products-grid-charcoal-home,
  .charcoal-collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .detail-grid,
  .spec-list,
  .product-layout,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    padding: 0;
  }

  .product-copy {
    padding: 18px;
  }

  .product-slider-stage,
  .compact-card .product-slider-stage,
  .charcoal-collection-grid .product-slider-stage {
    height: clamp(260px, 42vw, 370px);
  }

  .product-section {
    padding-top: 36px;
  }

  .gallery-main-image {
    height: clamp(360px, 62vw, 520px);
  }

  .product-summary {
    max-width: 720px;
    margin: 0 auto;
  }

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

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    position: sticky;
  }

  .top-header {
    grid-template-columns: minmax(112px, 1fr) auto;
    gap: 6px 10px;
  }

  .brand img {
    height: 58px;
  }

  .header-actions {
    gap: 8px;
  }

  .icon-button,
  .icon-link {
    min-width: 38px;
    min-height: 38px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
  }

  .icon-wrap svg,
  .icon-button svg {
    width: 17px;
    height: 17px;
  }

  .main-nav {
    margin-top: 0;
  }

  .menu-toggle {
    min-height: 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .menu-list a {
    padding: 14px 0;
    font-size: 10px;
  }

  .mobile-search {
    padding-bottom: 10px;
  }

  .mobile-search .search-form {
    min-height: 44px;
  }

  .home-hero-picture img {
    width: 100%;
    min-height: 0;
  }

  .about-section {
    text-align: left;
  }

  .about-title {
    font-size: clamp(23px, 8vw, 32px);
    line-height: 1.08;
  }

  .section-header p {
    line-height: 1.03;
    letter-spacing: -0.045em;
  }

  .products-grid-3,
  .products-grid-2,
  .products-grid-charcoal-home,
  .charcoal-collection-grid {
    gap: 22px;
  }

  .product-card,
  .charcoal-collection-grid .product-card {
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.04);
  }

  .product-copy {
    padding: 18px;
  }

  .badge {
    top: 12px;
    left: 12px;
    font-size: 8px;
  }

  .product-section {
    padding-top: 24px;
  }

  .breadcrumb {
    gap: 7px;
    font-size: 10px;
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .product-layout {
    gap: 24px;
  }

  .gallery-stage {
    border-radius: 10px;
  }

  .gallery-thumbs {
    gap: 8px;
    padding-bottom: 4px;
  }

  .gallery-thumbs button {
    flex-basis: 64px;
    width: 64px;
    height: 64px;
  }

  .details-dark,
  .features-section {
    padding: 44px 0;
  }

  .detail-grid {
    gap: 24px;
  }

  .detail-item {
    align-items: flex-start;
  }

  .feature-card {
    padding: 18px;
  }

  .full-banner.full-banner-contained {
    padding: 22px 0;
  }

  .cta-section {
    padding: 56px 0;
  }
}

@media (max-width: 380px) {
  .container-wide,
  .container-narrow {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand img {
    height: 52px;
  }

  .header-actions {
    gap: 6px;
  }

  .icon-button,
  .icon-link {
    min-width: 34px;
    min-height: 34px;
  }

  .product-slider-stage,
  .compact-card .product-slider-stage,
  .charcoal-collection-grid .product-slider-stage {
    height: clamp(210px, 76vw, 300px);
  }
}

/* Ajustes finais de responsividade, banners e controles solicitados */
.section-header p {
  font-size: clamp(24px, 3.05vw, 46px);
}

.collection-banner-section {
  background: #000;
  overflow: hidden;
}

.collection-banner {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  object-position: center;
}

.full-banner {
  background: #050505;
  overflow: hidden;
}

.full-banner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.full-banner:not(.full-banner-contained) img {
  aspect-ratio: 3 / 1;
}

.full-banner.full-banner-contained img {
  max-height: min(58vh, 620px);
}

.product-slider-stage,
.gallery-stage {
  position: relative;
}

.product-slide-arrow,
.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(15, 15, 16, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.product-slide-arrow:hover,
.gallery-arrow:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-50%) scale(1.04);
}

.product-slide-arrow-prev,
.gallery-arrow-prev {
  left: 10px;
}

.product-slide-arrow-next,
.gallery-arrow-next {
  right: 10px;
}

.product-slider .slider-dots {
  bottom: 10px;
}

.manual-download-button::before {
  content: "↓";
  margin-right: 8px;
  font-size: 15px;
  line-height: 1;
}

.footer-grid {
  grid-template-columns: 1fr 1fr minmax(220px, 1.2fr) minmax(260px, 1.35fr);
  align-items: start;
}

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

.footer-grid li,
.footer-grid p,
.footer-grid a {
  overflow-wrap: anywhere;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .section-header p {
    font-size: clamp(24px, 5vw, 40px);
  }
}

@media (max-width: 920px) {
  .collection-banner {
    height: clamp(260px, 48vw, 430px);
    aspect-ratio: auto;
  }

  .full-banner:not(.full-banner-contained) img {
    height: clamp(260px, 48vw, 430px);
    aspect-ratio: auto;
  }

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

@media (max-width: 640px) {
  .section-header p {
    font-size: clamp(24px, 8.6vw, 34px);
    line-height: 1.04;
  }

  .collection-banner {
    height: clamp(290px, 76vw, 460px);
    object-position: center;
  }

  .full-banner:not(.full-banner-contained) img {
    height: clamp(260px, 70vw, 420px);
  }

  .full-banner.full-banner-contained img {
    max-height: 460px;
    padding: 0 12px;
  }

  .product-slide-arrow,
  .gallery-arrow {
    width: 32px;
    height: 32px;
    font-size: 24px;
  }

  .product-slide-arrow-prev,
  .gallery-arrow-prev {
    left: 8px;
  }

  .product-slide-arrow-next,
  .gallery-arrow-next {
    right: 8px;
  }

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

/* Home sem cantos arredondados nas fotos e cards de produto */
#produtos .showcase-image,
#produtos .product-card,
#produtos .charcoal-collection-grid .product-card,
#produtos .product-slider,
#produtos .product-slider-stage,
#produtos .product-slider-stage img {
  border-radius: 0;
}

#produtos .product-card {
  overflow: hidden;
}

#produtos .product-card-cooktop-pratice .product-slider-stage img {
  transform: scale(1.24);
}

/* Logo maior sem aumentar a altura do cabeçalho */
.site-header .brand {
  display: flex;
  align-items: center;
  width: clamp(128px, 10.5vw, 168px);
  min-width: clamp(128px, 10.5vw, 168px);
  overflow: visible;
}

.site-header .brand img {
  transform: scale(1.55);
  transform-origin: left center;
}

@media (max-width: 920px) {
  .site-header .brand {
    width: 104px;
    min-width: 104px;
  }

  .site-header .brand img {
    transform: scale(1.34);
  }
}

@media (max-width: 430px) {
  .site-header .brand {
    width: 92px;
    min-width: 92px;
  }

  .site-header .brand img {
    transform: scale(1.22);
  }
}
