/* iCBL-inspired theme — Paddle Shift MA */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --bg: #000000;
  --bg-2: #0a0a0a;
  --bg-3: #141414;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.6);
  --border: #2a2a2a;
  --accent: #c8102e;
  --max: 1400px;
}

html { font-size: 62.5%; }
body {
  font-family: var(--font);
  font-size: 1.6rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ─── HEADER (iCBL two-row layout) ─── */
.header {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.5rem 4rem 1rem;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0.3rem;
}

.header__logo {
  display: flex;
  justify-content: center;
  line-height: 0;
}

.header__logo img {
  height: 48px !important;
  max-height: 48px !important;
  width: auto !important;
  max-width: 160px !important;
  object-fit: contain;
}

.header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.6rem;
  flex-wrap: wrap;
}

.header__menu > a,
.nav-dropdown__trigger {
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.2s;
}

.header__menu > a:hover,
.nav-dropdown__trigger:hover { opacity: 0.65; }

.header__menu > a.is-active,
.nav-dropdown__trigger.is-active {
  border-bottom-color: #fff;
}

.chevron {
  width: 1rem;
  height: 0.6rem;
  margin-top: 0.15rem;
}

.nav-dropdown { position: relative; }

.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 1.4rem);
  left: 50%;
  transform: translateX(-50%);
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  padding: 2rem 2.5rem;
  min-width: 36rem;
  z-index: 100;
  gap: 3rem;
}

.nav-dropdown:hover .nav-dropdown__menu { display: flex; }

.nav-dropdown__col h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #fff;
}

.nav-dropdown__col a {
  display: block;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.7rem;
  text-decoration: none;
}

.nav-dropdown__col a:hover { color: #fff; }

.menu-btn {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.4rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 2rem 0 0;
  gap: 1.5rem;
  border-top: 1px solid #2a2a2a;
  margin-top: 1.5rem;
}

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

.mobile-menu a {
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
}

#contact,
#contact-whatsapp,
#about,
#why-choose,
#faq,
#product {
  scroll-margin-top: 6rem;
  scroll-margin-bottom: 6rem;
}

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  min-height: 42rem;
  max-height: 75vh;
  background: var(--bg-2);
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.hero__slide.is-active { opacity: 1; pointer-events: auto; }

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.hero__content {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 90%;
}

.hero__content h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero__counter {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.4rem;
  z-index: 3;
  letter-spacing: 0.06em;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
}

.hero__arrow-icon {
  width: 1.6rem;
  height: 1.6rem;
}

.hero__arrow:hover {
  background: rgba(0, 0, 0, 0.65);
  border-color: rgba(255, 255, 255, 0.85);
}

.hero__arrow--prev {
  left: 3rem;
  transform: translateY(-50%);
}

.hero__arrow--next {
  right: 3rem;
  transform: translateY(-50%);
}

.hero__arrow--prev:hover { transform: translateY(-50%) translateX(-3px); }
.hero__arrow--next:hover { transform: translateY(-50%) translateX(3px); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.85; }
.btn--white { background: #fff; color: #000; }
.btn--black { background: #fff; color: #000; width: 100%; text-align: center; border: none; }

/* ─── QUICK LINKS ─── */
.quick-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--border);
}

.quick-card {
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.quick-card:last-child { border-right: none; }
.quick-card:hover { background: var(--bg-3); }

.quick-card__img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-3);
}
.quick-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.quick-card:hover img { transform: scale(1.04); }

.quick-card__title {
  display: block;
  padding: 1.5rem 1rem 0.3rem;
  font-size: 1.5rem;
  font-weight: 500;
}
.quick-card__link {
  display: block;
  padding-bottom: 1.8rem;
  font-size: 1.3rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

/* ─── SECTIONS ─── */
.section { padding: 6rem 0; }
.section--gray { background: var(--bg-2); }
.section__title {
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* Shop by make */
.make-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.make-card {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: block;
}
.make-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.make-card:hover img { transform: scale(1.05); }

.make-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.make-card__overlay h3 {
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.make-card__overlay p { font-size: 1.4rem; margin-top: 0.6rem; opacity: 0.9; }

/* Collection carousel */
.collection { border-top: 1px solid var(--border); padding: 5rem 0; }

.carousel { position: relative; }
.carousel__track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0.5rem 0;
}
.carousel__track::-webkit-scrollbar { display: none; }

.product-card {
  flex: 0 0 calc(25% - 1.5rem);
  min-width: 26rem;
  scroll-snap-align: start;
}
.product-card__img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-3);
  margin-bottom: 1.2rem;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover img { transform: scale(1.04); }
.product-card h3 { font-size: 1.6rem; font-weight: 500; margin-bottom: 0.5rem; line-height: 1.3; color: var(--text); }
.product-card p { font-size: 1.4rem; color: var(--muted); line-height: 1.4; }

.carousel__arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-3);
  color: var(--text);
  font-size: 2.2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.carousel__arrow--prev { left: -2rem; }
.carousel__arrow--next { right: -2rem; }
.carousel__arrow:hover { background: #222; }

.carousel__counter {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.4rem;
  color: var(--muted);
}

/* Why shop */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
.why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.4rem;
  line-height: 1.4;
  color: var(--text);
}
.why-card p { font-size: 1.5rem; color: var(--muted); line-height: 1.65; }

/* Newsletter */
.newsletter {
  text-align: center;
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}
.newsletter h2 { font-size: 2.4rem; font-weight: 400; margin-bottom: 1rem; color: var(--text); }
.newsletter p { color: var(--muted); font-size: 1.5rem; margin-bottom: 2.5rem; }

.newsletter__form {
  display: flex;
  max-width: 48rem;
  margin: 0 auto;
}
.newsletter__form input {
  flex: 1;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--bg-3);
  color: var(--text);
  font-size: 1.5rem;
  border-right: none;
}
.newsletter__form button {
  padding: 1.2rem 2.5rem;
  background: #fff;
  color: #000;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Footer */
.footer { background: var(--bg); border-top: 1px solid var(--border); }
.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 5rem 0;
}
.footer__col h4 { font-size: 1.5rem; font-weight: 600; margin-bottom: 1.5rem; color: var(--text); }
.footer__col li { margin-bottom: 0.8rem; font-size: 1.4rem; color: var(--muted); }
.footer__col a { color: var(--muted); }
.footer__col a:hover { text-decoration: underline; color: var(--text); }

.footer__payments {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  font-size: 1.3rem;
  color: var(--muted);
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__bottom {
  text-align: center;
  padding: 2rem 0 4rem;
  font-size: 1.3rem;
  color: var(--muted);
}

/* ─── PRODUCT PAGE ─── */
.breadcrumb { font-size: 1.3rem; color: var(--muted); padding: 1.2rem 0 1.6rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { text-decoration: underline; }

.product {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 4rem;
  align-items: start;
}

.product__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  position: static;
  order: 1;
  width: 100%;
}

.product__thumbs {
  order: 2;
}

body.product-page { padding-bottom: 7rem; }

.product__buy {
  position: static;
  order: 2;
  align-self: stretch;
  z-index: 1;
  max-height: none;
  overflow: visible;
  scroll-margin-top: 9rem;
  width: 100%;
}

.product__head {
  margin-bottom: 1.6rem;
}

.product__content {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 3rem;
}

.product__thumbs { display: flex; flex-direction: column; gap: 1rem; }
.product__thumb {
  width: 8rem;
  height: 8rem;
  border: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}
.product__thumb.is-active { border: 2px solid #fff; }
.product__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product__main {
  order: 1;
  border: 1px solid var(--border);
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-3);
  max-height: min(52rem, 72vh);
  margin: 0 auto;
  width: 100%;
}
.product__main img { width: 100%; height: 100%; object-fit: contain; }

.product__title { font-size: 2.8rem; font-weight: 400; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 0.6rem; color: var(--text); }
.product__subtitle { font-size: 1.4rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.5; }
.product__reviews { font-size: 1.3rem; margin-bottom: 1.2rem; padding-bottom: 0; border-bottom: none; }

.product__label { font-size: 1.4rem; display: block; margin-bottom: 1rem; }
.product__swatches { display: flex; gap: 1rem; margin-bottom: 2.5rem; }
.swatch {
  width: 5.6rem;
  height: 5.6rem;
  border: 1px solid var(--border);
  padding: 3px;
  cursor: pointer;
  overflow: hidden;
}
.swatch.is-active { border: 2px solid #fff; }
.swatch img { width: 100%; height: 100%; object-fit: cover; }
.swatch__color { display: block; width: 100%; height: 100%; }
.swatch__color--noir { background: #1a1a1a; }
.swatch__color--rouge { background: #b91c1c; }
.swatch__color--argent { background: linear-gradient(135deg, #ddd, #888); }

.product__price { margin-bottom: 1.2rem; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.price-badge { background: #c8102e; color: #fff; font-size: 1.2rem; padding: 0.4rem 1rem; font-weight: 600; }
.price-current { font-size: 2.4rem; font-weight: 500; color: var(--text); }
.price-old { font-size: 1.6rem; color: var(--muted); text-decoration: line-through; }

.product__form label { display: block; font-size: 1.2rem; margin: 0 0 0.4rem; }
.product__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.2rem;
}
.product__form-field { margin-bottom: 1rem; }
.product__form-field--full { grid-column: 1 / -1; }
.product__form input,
.product__form select,
.product__form textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 1.4rem;
  font-family: inherit;
}
.product__form .btn--black { margin-top: 1.4rem; padding: 1.4rem; font-size: 1.4rem; }

.product__color-label {
  display: block;
  font-size: 1.2rem;
  margin: 0 0 0.8rem;
}

.product__colors {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.product__color-option {
  position: relative;
  width: 4.8rem;
  height: 4.8rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.product__color-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.product__color-option--black {
  background: #1a1a1a;
  border-color: #b0b0b0;
}

.product__color-option--gray {
  background: #8a8a8a;
  border-color: #fff;
}

.product__color-option--red {
  background: #c8102e;
  border-color: #fff;
}

.product__color-option:has(input:checked) {
  box-shadow: 0 0 0 2px var(--accent);
}

.product__color-option--black:has(input:checked) {
  border-color: #e8e8e8;
}

.product__color-option--gray:has(input:checked),
.product__color-option--red:has(input:checked) {
  border-color: #fff;
}

.product__color-option:has(input:focus-visible) {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.btn--full { width: 100%; }
.product__cod { text-align: center; margin-top: 1.2rem; font-size: 1.3rem; color: var(--muted); }

.product__error {
  display: none;
  text-align: center;
  margin-top: 1rem;
  font-size: 1.35rem;
  color: #f87171;
}
.product__error.is-visible { display: block; }

.product__field-error {
  display: none;
  margin: 0.4rem 0 0;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #f87171;
}
.product__field-error.is-visible { display: block; }

.product__form input.is-invalid,
.product__form textarea.is-invalid {
  border-color: #f87171;
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.35);
}

.product__colors.is-invalid {
  outline: 2px solid #f87171;
  outline-offset: 4px;
}

.product__compat-badge {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  margin-bottom: 0;
  background: rgba(200, 16, 46, 0.12);
  border: 1px solid rgba(200, 16, 46, 0.35);
}
.product__compat-badge--compact p { font-size: 1.3rem; }
.product__compat-icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
}
.product__compat-badge p {
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}

.product__about {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
  font-size: 1.5rem;
  line-height: 1.75;
  color: var(--muted);
}
.product__about p { margin-bottom: 1.4rem; }
.product__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.product__features li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.4rem;
  color: var(--text);
}
.product__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--accent);
  border-radius: 50%;
}

.product__order {
  padding: 2rem;
  margin-bottom: 0;
  background: var(--bg-3);
  border: 2px solid rgba(200, 16, 46, 0.45);
  box-shadow: 0 1.2rem 4rem rgba(0, 0, 0, 0.35);
}
.product__order-title {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.product__order-hint {
  font-size: 1.3rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.product__details { margin-top: 0; padding-top: 2rem; border-top: 1px solid var(--border); font-size: 1.5rem; line-height: 1.7; }
.product__details h3 { font-size: 1.6rem; margin: 2rem 0 1rem; font-weight: 600; color: var(--text); }
.product__details ul { padding-left: 2rem; margin-bottom: 1rem; }

.product-compat {
  padding: 5rem 0 6rem;
  border-top: 1px solid var(--border);
}
.product-compat__inner { max-width: 72rem; }
.product-compat__text {
  font-size: 1.6rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 1.5rem 0 2rem;
}
.product-compat__brands {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--text);
  padding: 2rem;
  background: var(--bg-3);
  border-left: 3px solid var(--accent);
}

.fitment { padding: 5rem 0; border-top: 1px solid var(--border); }
.fitment__item { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.fitment__item strong { font-size: 1.6rem; }
.fitment__item span { color: var(--muted); margin-left: 1rem; }
.fitment__item p { color: var(--muted); margin-top: 0.5rem; font-size: 1.4rem; }

.success-msg { display: none; text-align: center; padding: 2.4rem 2rem; font-size: 1.5rem; }
.success-msg.is-visible {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 16rem;
  padding: 3rem 2rem;
}
.success-msg__icon {
  width: 5.6rem;
  height: 5.6rem;
  margin-bottom: 1.6rem;
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.15);
  color: var(--accent);
  font-size: 2.8rem;
  line-height: 5.6rem;
  font-weight: 500;
}
.success-msg__title {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.8rem;
}
.success-msg p { color: var(--muted); line-height: 1.6; max-width: 28rem; }

.product__order.is-complete {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 22rem;
}
.product__order.is-complete .product__order-title,
.product__order.is-complete .product__order-hint {
  display: none;
}

body.product-page.order-complete {
  padding-bottom: 0;
}

/* Floating WhatsApp button */
.floating-whatsapp {
  position: fixed;
  right: 1.6rem;
  bottom: calc(1.6rem + env(safe-area-inset-bottom));
  z-index: 950;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.floating-whatsapp:hover {
  background: #20bd5a;
  transform: scale(1.06);
  box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.45);
}

.floating-whatsapp svg {
  width: 3rem;
  height: 3rem;
  fill: currentColor;
}

body.product-page .floating-whatsapp {
  bottom: calc(8rem + env(safe-area-inset-bottom));
}

body.product-page.order-complete .floating-whatsapp {
  bottom: calc(1.6rem + env(safe-area-inset-bottom));
}

.product-order-bar {
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 1rem 2rem calc(1rem + env(safe-area-inset-bottom));
  background: rgba(10, 10, 10, 0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.25s ease;
  pointer-events: none;
}
.product-order-bar.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.product-order-bar__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.product-order-bar__price { display: flex; align-items: baseline; gap: 0.8rem; flex-shrink: 0; }
.product-order-bar__current { font-size: 2rem; font-weight: 500; color: var(--text); }
.footer__whatsapp-link {
  color: var(--muted);
  text-decoration: none;
}
.footer__whatsapp-link:hover {
  color: var(--text);
  text-decoration: underline;
}
.product-order-bar__btn {
  flex: 1;
  max-width: 22rem;
  text-align: center;
  padding: 1.2rem 1.6rem !important;
  font-size: 1.3rem !important;
  white-space: nowrap;
}

/* ─── HOMEPAGE SECTIONS ─── */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding: 2.2rem 0;
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 2.4rem;
}

.trust-strip__inner span:not(.trust-strip__dot) {
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.trust-strip__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.section--dark { background: var(--bg-2); }
.container--narrow { max-width: 84rem; }

.section__eyebrow {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.section__title--left { text-align: left; margin-bottom: 2.4rem; }

.prose {
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1.85;
}

.prose p + p { margin-top: 1.6rem; }

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 4.8rem;
  height: 4.8rem;
  margin: 0 auto 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: #fff;
}

.feature-card__icon svg {
  width: 2.2rem;
  height: 2.2rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  color: var(--text);
}

.feature-card p {
  font-size: 1.4rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Featured product */
.featured-product {
  border-top: none;
  border-bottom: 1px solid var(--border);
}

.featured-product--top {
  padding-top: 7rem;
}

.featured-product__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.featured-product__media {
  background: var(--bg-3);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-product__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.featured-product__title {
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--text);
}

.featured-product__text {
  font-size: 1.6rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 52rem;
}

.featured-product .section__eyebrow { text-align: left; }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 3rem 2.5rem;
}

.review-card__stars {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.6rem;
}

.review-card__text {
  font-size: 1.5rem;
  color: var(--muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 2rem;
}

.review-card__author {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 2rem 0;
  font-size: 1.6rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: opacity 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 2rem;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:hover { opacity: 0.75; }

.faq-item p {
  padding: 0 0 2rem;
  font-size: 1.5rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 72rem;
}

/* About brand */
.about-brand__grid {
  display: grid;
  grid-template-columns: 28rem 1fr;
  gap: 6rem;
  align-items: start;
}

.about-brand__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  border: 1px solid var(--border);
  background: var(--bg-2);
  aspect-ratio: 1;
}

.about-brand__logo img {
  height: 80px !important;
  max-height: 80px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain;
}

.about-brand .section__eyebrow { text-align: left; }

/* Footer extras */
.footer__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.footer__note {
  font-size: 1.4rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.footer__policies {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.footer__policy h5 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.footer__policy p {
  font-size: 1.3rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── BLOG ─── */
.blog-hero {
  position: relative;
  padding: 10rem 0 8rem;
  text-align: center;
  overflow: hidden;
}

.blog-hero__bg {
  position: absolute;
  inset: 0;
  background: url("../images/homepage7.jpeg?v=1") center / cover no-repeat;
  filter: blur(6px);
  transform: scale(1.08);
}

.blog-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.92) 100%);
}

.blog-hero__content {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
}

.blog-hero h1 {
  font-size: clamp(3.6rem, 6vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.blog-hero p {
  font-size: 1.7rem;
  color: var(--muted);
  line-height: 1.75;
}

.blog-search {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.blog-search__form {
  display: flex;
  max-width: 56rem;
  margin: 0 auto;
  border: 1px solid var(--border);
  background: var(--bg-3);
}

.blog-search__form input {
  flex: 1;
  padding: 1.4rem 1.8rem;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  font-family: inherit;
}

.blog-search__form input::placeholder { color: rgba(255,255,255,0.35); }

.blog-search__form button {
  padding: 0 1.8rem;
  color: var(--text);
  display: flex;
  align-items: center;
  border-left: 1px solid var(--border);
}

.blog-search__form button svg {
  width: 2rem;
  height: 2rem;
}

.blog-categories {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.blog-categories__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.blog-cat-btn {
  padding: 0.9rem 1.8rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 1.3rem;
  color: var(--muted);
  background: var(--bg-3);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.blog-cat-btn:hover,
.blog-cat-btn.is-active {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(200, 16, 46, 0.12);
}

.blog-featured__card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  background: #111;
  border: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-featured__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.blog-featured__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-featured__card:hover .blog-featured__image img {
  transform: scale(1.03);
}

.blog-featured__body {
  padding: 3rem 3rem 3rem 0;
}

.blog-featured__body h2 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.4rem;
}

.blog-featured__body h2 a:hover { opacity: 0.8; }

.blog-featured__body p {
  font-size: 1.5rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.blog-card {
  background: #111;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.blog-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.04);
}

.blog-card__body {
  padding: 2rem;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}

.blog-card__category {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-card__read,
.blog-card__date {
  color: rgba(255, 255, 255, 0.4);
}

.blog-card h3 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 1rem;
}

.blog-card h3 a:hover { opacity: 0.8; }

.blog-card__body > p {
  font-size: 1.4rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.6rem;
}

.blog-link {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.35rem;
  transition: opacity 0.2s;
}

.blog-link:hover { opacity: 0.7; }

.blog-empty {
  text-align: center;
  color: var(--muted);
  font-size: 1.5rem;
  padding: 4rem 0;
}

.blog-tags {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.blog-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 90rem;
  margin: 0 auto;
}

.blog-tag {
  padding: 0.8rem 1.6rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 1.3rem;
  color: var(--muted);
  background: var(--bg-3);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.blog-tag:hover,
.blog-tag.is-active {
  border-color: var(--text);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.blog-newsletter {
  border-top: 1px solid var(--border);
}

/* Article page */
.article-page {
  padding-bottom: 6rem;
}

.article__header {
  max-width: 80rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.article__meta {
  justify-content: center;
  margin-bottom: 1.6rem;
}

.article__title {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.6rem;
}

.article__excerpt {
  font-size: 1.7rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 64rem;
  margin: 0 auto;
}

.article__hero-img {
  max-width: 100rem;
  margin: 0 auto 4rem;
  border: 1px solid var(--border);
  background: var(--bg-3);
}

.article__hero-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.article__content {
  max-width: 72rem;
  margin: 0 auto;
}

.article__content h2 {
  font-size: 2rem;
  font-weight: 500;
  color: var(--text);
  margin: 3rem 0 1.2rem;
}

.article__content ul {
  padding-left: 2rem;
  margin: 1rem 0;
}

.article__content li {
  margin-bottom: 0.6rem;
}

.article__content a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.article__cta {
  max-width: 72rem;
  margin: 4rem auto 0;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

/* Placeholder */
.placeholder {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 1.4rem;
}

/* ─── LANGUAGE SWITCHER & RTL ─── */
.lang-switcher {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
}

.lang-switcher__inline {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  max-width: 20rem;
}

.lang-switcher__dropdown {
  display: none;
  position: relative;
}

.lang-switcher__btn,
.lang-switcher__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.55rem;
  min-width: 3.2rem;
  min-height: 3.2rem;
  color: var(--muted);
  border: 1px solid var(--border);
  background: var(--bg-3);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.lang-switcher__btn-flag,
.lang-switcher__toggle-flag,
.lang-switcher__option-flag {
  font-size: 1.8rem;
  line-height: 1;
}

.lang-switcher__btn:hover,
.lang-switcher__btn.is-active,
.lang-switcher__toggle:hover,
.lang-switcher.is-open .lang-switcher__toggle {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(200, 16, 46, 0.12);
}

.lang-switcher__toggle {
  gap: 0.35rem;
  padding: 0.45rem 0.65rem;
}

.lang-switcher__chevron {
  width: 0;
  height: 0;
  border-left: 0.45rem solid transparent;
  border-right: 0.45rem solid transparent;
  border-top: 0.5rem solid var(--muted);
  transition: transform 0.2s;
}

.lang-switcher.is-open .lang-switcher__chevron {
  transform: rotate(180deg);
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 16rem;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  background: rgba(14, 14, 14, 0.98);
  border: 1px solid var(--border);
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.5);
  z-index: 1100;
}

.lang-switcher__menu[hidden] {
  display: none;
}

.lang-switcher__option {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  padding: 0.9rem 1rem;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font-size: 1.4rem;
  border-radius: 0.2rem;
  transition: background 0.2s;
}

.lang-switcher__option:hover,
.lang-switcher__option.is-active {
  background: rgba(200, 16, 46, 0.14);
}

.lang-switcher__option-label {
  flex: 1;
  line-height: 1.3;
}

[dir="rtl"] .header__top { flex-direction: row-reverse; }
[dir="rtl"] .lang-switcher { left: auto; right: 0; }
[dir="rtl"] .lang-switcher__menu { left: auto; right: 0; }
[dir="rtl"] .lang-switcher__option { text-align: right; flex-direction: row-reverse; }
[dir="rtl"] .menu-btn { right: auto; left: 0; }
[dir="rtl"] .header__menu { direction: rtl; }
[dir="rtl"] .featured-product__body { padding: 3rem 0 3rem 3rem; }
[dir="rtl"] .section__title--left { text-align: right; }
[dir="rtl"] .breadcrumb { direction: rtl; }
[dir="rtl"] .product__gallery { direction: rtl; }
[dir="rtl"] .faq-item summary { flex-direction: row-reverse; }
[dir="rtl"] .blog-featured__body { padding: 3rem 0 3rem 3rem; }

@media (max-width: 750px) {
  .lang-switcher__inline {
    display: none;
  }

  .lang-switcher__dropdown {
    display: block;
  }

  .lang-switcher {
    max-width: none;
  }

  .lang-switcher__toggle {
    min-width: 4.4rem;
    min-height: 4.4rem;
    padding: 0.55rem 0.75rem;
  }

  .lang-switcher__toggle-flag,
  .lang-switcher__option-flag {
    font-size: 2rem;
  }

  .lang-switcher__menu {
    min-width: 17rem;
  }

  .lang-switcher__option {
    padding: 1rem 1.1rem;
    font-size: 1.5rem;
  }
}

@media (min-width: 991px) {
  .product {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 4rem;
    align-items: start;
  }

  .product__gallery {
    grid-template-columns: 8rem 1fr;
    gap: 1.2rem;
    max-width: none;
    margin: 0;
    position: sticky;
    top: 9rem;
    align-self: start;
  }

  .product__main {
    order: 2;
    grid-column: 2;
    grid-row: 1;
    max-height: 48rem;
    margin: 0;
  }

  .product__thumbs {
    order: 1;
    grid-column: 1;
    grid-row: 1;
    flex-direction: column;
    overflow-x: visible;
    overflow-y: auto;
    max-height: 48rem;
  }

  .product__buy {
    max-width: none;
    margin: 0;
    order: 2;
  }
}

@media (max-width: 990px) {
  .container { padding: 0 2.5rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__inner { gap: 1.2rem 1.6rem; }
  .featured-product__grid { grid-template-columns: 1fr; gap: 3rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-brand__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-brand__logo { aspect-ratio: auto; padding: 3rem; }
  .footer__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__policies { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured__card { grid-template-columns: 1fr; }
  .blog-featured__body { padding: 2.5rem; }
  .quick-links { grid-template-columns: repeat(2, 1fr); }
  .make-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .product-card { flex: 0 0 calc(50% - 1rem); }
  .product { grid-template-columns: 1fr; gap: 2rem; }
  .product__gallery { position: static; grid-template-columns: 1fr; order: 1; }
  .product__buy { position: static; order: 2; max-height: none; overflow: visible; }
  .product__main { order: 1; aspect-ratio: 16 / 11; max-height: 32rem; }
  .product__thumbs { order: 2; flex-direction: row; overflow-x: auto; }
  .product__form-grid { grid-template-columns: 1fr; gap: 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .carousel__arrow { display: none; }
}

@media (max-width: 750px) {
  .header { padding: 0.4rem 2rem 0.8rem; }
  .header__menu { display: none; }
  .menu-btn { display: block; }
  .header__logo img {
    height: 38px !important;
    max-height: 38px !important;
    max-width: 130px !important;
  }
  .hero__arrow {
    width: 4.2rem;
    height: 4.2rem;
  }
  .hero__arrow--prev { left: 1.2rem; }
  .hero__arrow--next { right: 1.2rem; }
  .hero__arrow-icon { width: 1.4rem; height: 1.4rem; }
  .why-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer__grid--4 { grid-template-columns: 1fr; }
  .section__title--left { text-align: center; }
  .about-brand .section__eyebrow,
  .featured-product .section__eyebrow { text-align: center; }
  .product-card { flex: 0 0 80%; }
  .newsletter__form { flex-direction: column; }
  .newsletter__form input { border-right: 1px solid var(--border); }
  .product__title { font-size: 2.4rem; }
  .product__order.is-complete {
    min-height: auto;
    padding: 3rem 2rem 3.5rem;
    margin-bottom: 1rem;
  }
  .success-msg.is-visible {
    min-height: 18rem;
    padding: 2rem 1.5rem 3rem;
  }
  .success-msg__title { font-size: 2.8rem; }
  .success-msg__icon {
    width: 6.4rem;
    height: 6.4rem;
    line-height: 6.4rem;
    font-size: 3.2rem;
  }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-hero { padding: 7rem 0 5rem; }
  .blog-categories__list { justify-content: flex-start; }
}
