/* ============================================================
   Armoir — vitrine style system
   Design tokens replicados de armoir.co (fr-fr), fonte de heading
   substituída (Sweet Sans Pro é fonte paga da OH no Type Co — não
   redistribuída aqui) por Poppins Bold, visualmente próxima.
   ============================================================ */

:root {
  --color-navy: #001489;
  --color-navy-dark: #000f66;
  --color-bg: #fafafa;
  --color-bg-alt: #f2f1ee;
  --color-white: #ffffff;
  --color-text: #1a1a2e;
  --color-text-muted: #5c5c6e;
  --color-border: #e3e2dd;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --container-max: 1280px;
  --header-h: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

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

/* ---------- Announcement bar ---------- */
.announcement-bar {
  background: var(--color-navy);
  color: var(--color-white);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.3px;
  padding: 9px 16px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
}
.site-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.site-nav {
  display: flex;
  gap: 28px;
}
.site-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #212121;
}
.site-logo {
  justify-self: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 2px;
  color: var(--color-navy);
}
.site-header__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12.5px;
  color: var(--color-navy);
}
.site-header__right .icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}
.hamburger { display: none; }

@media (max-width: 860px) {
  .site-nav { display: none; }
  .site-header__right .lang-label { display: none; }
  .hamburger {
    display: inline-flex;
    justify-self: start;
    background: none;
    border: 0;
    width: 24px;
    height: 24px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }
  .hamburger span { display: block; width: 100%; height: 1.5px; background: var(--color-navy); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: 0;
  transition: opacity .15s ease;
}
.btn:hover { opacity: 0.88; }
.btn-primary { background: var(--color-navy); color: var(--color-white); }
.btn-outline { background: var(--color-white); color: var(--color-navy); border-color: var(--color-navy); }
.btn-block { width: 100%; }
.btn[disabled], .btn.is-disabled { opacity: .55; cursor: not-allowed; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1324 / 868;
  min-height: 520px;
  max-height: 920px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
@media (max-width: 700px) {
  .hero { aspect-ratio: auto; min-height: 88vh; max-height: none; }
}
.hero img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,0) 55%);
  z-index: 1;
}
.hero__content {
  position: relative; z-index: 2;
  color: #fff;
  padding: 56px 24px;
  max-width: 480px;
}
.hero__rating { display: flex; align-items: center; gap: 8px; font-size: 14px; margin-bottom: 14px; }
.hero__rating .stars { color: #ffd45e; letter-spacing: 1px; }
.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 0.5px;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.hero__desc { font-size: 15px; line-height: 1.6; margin: 0 0 26px; max-width: 400px; }

/* ---------- Press strip ---------- */
.press-strip {
  padding: 28px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
  opacity: .82;
}
.press-strip img, .press-strip span { max-height: 26px; }
.press-strip .press-word {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 700;
}

/* ---------- Section heading ---------- */
.section-heading {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 8px 0 22px;
}
.tab-row {
  display: flex; justify-content: center; gap: 28px; margin-bottom: 34px;
  font-family: var(--font-heading); font-size: 13px; letter-spacing: 0.4px; text-transform: uppercase;
}
.tab-row a { padding-bottom: 6px; color: var(--color-text-muted); }
.tab-row a.active { color: var(--color-navy); border-bottom: 2px solid var(--color-navy); }

/* ---------- Product grid / cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 24px 56px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.product-grid[hidden] { display: none; }
@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 16px 40px; } }

.product-card { display: block; }
.product-card__media {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--color-bg-alt);
  overflow: hidden;
  margin-bottom: 12px;
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-card__media img { transform: scale(1.03); }
.product-card__badge {
  position: absolute; top: 14px; left: 14px;
  background: #f6f2e9; color: var(--color-navy);
  font-family: var(--font-body); font-size: 12px; font-weight: 400; letter-spacing: .3px; text-transform: uppercase;
  padding: 6px 10px;
}
.product-card__badge.is-out { color: #6b6b6b; }
.product-card__title { font-size: 14px; margin: 0 0 6px; font-weight: 400; color: var(--color-navy); }
.product-card__rating { font-size: 12px; color: var(--color-text-muted); margin-bottom: 4px; }
.product-card__rating .stars { color: var(--color-navy); }
.product-card__price { font-size: 14px; font-weight: 400; color: #626262; }

/* ---------- Split feature ---------- */
.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}
.split-feature__text { padding: 48px; max-width: 420px; margin: 0 auto; text-align: center; }
.split-feature__text h2 {
  font-family: var(--font-heading); font-weight: 700; font-size: 24px; letter-spacing: .3px;
  text-transform: uppercase; margin: 0 0 16px;
}
.split-feature__text p { color: var(--color-text-muted); font-size: 15px; line-height: 1.7; margin: 0 0 20px; }
.split-feature img { width: 100%; height: 100%; object-fit: cover; }
.split-feature.reverse { grid-template-columns: 1fr 1fr; }
.split-feature.reverse .split-feature__text { order: 2; }
@media (max-width: 800px) {
  .split-feature, .split-feature.reverse { grid-template-columns: 1fr; }
  .split-feature__text { order: initial !important; padding: 36px 24px; }
  .split-feature img { aspect-ratio: 4/3; }
}

/* dark navy variant */
.split-feature.dark { background: var(--color-navy); color: #fff; }
.split-feature.dark .split-feature__text p { color: rgba(255,255,255,.75); }
.split-feature.dark .split-feature__text h2 { color: #fff; }

/* ---------- Trust badges row ---------- */
.trust-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  max-width: 900px; margin: 0 auto; padding: 56px 24px; text-align: center;
}
.trust-row__item svg { width: 34px; height: 34px; margin-bottom: 14px; color: var(--color-navy); }
.trust-row__item h3 { font-family: var(--font-heading); font-size: 14px; letter-spacing: .3px; text-transform: uppercase; margin: 0 0 6px; }
.trust-row__item p { font-size: 13.5px; color: var(--color-text-muted); margin: 0; }
@media (max-width: 700px) { .trust-row { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Image carousel (scroll-snap) ---------- */
.carousel { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 24px 20px; }
.carousel::-webkit-scrollbar { display: none; }
.carousel__item { flex: 0 0 auto; width: 340px; aspect-ratio: 3/4; scroll-snap-align: start; overflow: hidden; }
.carousel__item img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 560px) { .carousel__item { width: 78vw; } }
.carousel-dots { display: flex; justify-content: center; align-items: center; gap: 8px; padding: 4px 0 32px; }
.carousel-dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%; background: var(--color-border); cursor: pointer; }
.carousel-dots button.active { background: var(--color-navy); width: 8px; height: 8px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-navy); color: #fff; padding: 64px 24px 24px; margin-top: 60px; }
.site-footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand__logo { width: 40px; height: 40px; margin-bottom: 20px; }
.footer-col h4 { font-family: var(--font-heading); font-size: 13px; letter-spacing: .5px; text-transform: uppercase; margin: 0 0 18px; }
.footer-col li { margin-bottom: 12px; font-size: 14px; color: rgba(255,255,255,.85); }
.footer-newsletter p { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.6; margin: 0 0 18px; max-width: 320px; }
.footer-newsletter form { display: flex; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 8px; margin-bottom: 18px; max-width: 320px; }
.footer-newsletter input { background: none; border: 0; color: #fff; flex: 1; font-size: 14px; outline: none; }
.footer-newsletter button { background: none; border: 0; color: #fff; font-family: var(--font-heading); font-size: 12px; letter-spacing: .4px; text-transform: uppercase; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { width: 28px; height: 28px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.footer-bottom { max-width: var(--container-max); margin: 48px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 12.5px; color: rgba(255,255,255,.7); }
.footer-lang-select { border: 1px solid rgba(255,255,255,.35); padding: 6px 12px; font-size: 12.5px; color: #fff; background: none; }
.footer-pay { display: flex; gap: 8px; opacity: .8; }
.footer-pay span { border: 1px solid rgba(255,255,255,.3); border-radius: 3px; padding: 2px 6px; font-size: 10px; }
@media (max-width: 780px) { .site-footer .container { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================================
   PDP
   ============================================================ */
.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 48px 0 0;
}
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; gap: 0; padding: 0; } }

.pdp-gallery__main {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--color-bg-alt);
  overflow: hidden;
}
.pdp-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.pdp-gallery__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.85); border: 0; width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--color-navy);
}
.pdp-gallery__arrow.prev { left: 14px; }
.pdp-gallery__arrow.next { right: 14px; }
.pdp-gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; padding: 0 0 4px; }
.pdp-gallery__thumbs img { width: 78px; height: 96px; object-fit: cover; flex: 0 0 auto; cursor: pointer; opacity: .65; border: 1px solid transparent; }
.pdp-gallery__thumbs img.active { opacity: 1; border-color: var(--color-navy); }
@media (max-width: 900px) { .pdp-gallery__thumbs { padding: 0 16px 16px; } .pdp-gallery__main { aspect-ratio: 1/1; } }

.pdp-info { padding: 32px 0 56px; }
@media (max-width: 900px) { .pdp-info { padding: 24px 20px 48px; } }
.pdp-info h1 { font-family: var(--font-heading); font-size: 26px; letter-spacing: .3px; text-transform: uppercase; margin: 0 0 10px; }
.pdp-rating { font-size: 13.5px; color: var(--color-text-muted); margin-bottom: 14px; }
.pdp-rating .stars { color: var(--color-navy); }
.pdp-price { font-size: 20px; font-weight: 600; margin-bottom: 22px; }

.pdp-color-label { font-size: 12.5px; letter-spacing: .3px; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 10px; }
.pdp-swatches { display: flex; gap: 8px; margin-bottom: 26px; flex-wrap: wrap; }
.pdp-swatch { width: 44px; height: 44px; border: 1px solid transparent; overflow: hidden; padding: 1px; }
.pdp-swatch.active { border: 1.5px solid var(--color-navy); }
.pdp-swatch img { width: 100%; height: 100%; object-fit: cover; }

.pdp-upsell {
  border: 1px solid var(--color-border); background: var(--color-bg-alt);
  padding: 18px; display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 18px;
}
.pdp-upsell__body { flex: 1; font-size: 14px; }
.pdp-upsell__head { margin-bottom: 6px; }
.pdp-upsell__save {
  display: inline-block; color: #2a9d5c; background: rgba(42,157,92,.12);
  font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 999px; margin-left: 6px;
}
.pdp-upsell__title { display: block; font-size: 15px; margin-top: 2px; }
.pdp-upsell__check {
  flex: 0 0 auto; width: 24px; height: 24px; border: 1px solid var(--color-border); background: #fff;
  display: flex; align-items: center; justify-content: center; padding: 0; color: transparent;
}
.pdp-upsell__check svg { width: 13px; height: 13px; }
.pdp-upsell[data-checked] .pdp-upsell__check { background: var(--color-navy); border-color: var(--color-navy); color: #fff; }
.pdp-upsell__expand { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--color-border); }
.pdp-upsell__price { margin-bottom: 12px; }
.pdp-upsell__price-new { font-size: 17px; font-weight: 600; margin-right: 10px; }
.pdp-upsell__price-old { font-size: 14px; color: #a3443f; text-decoration: line-through; }
.pdp-upsell .pdp-color-label { margin-bottom: 8px; }
.pdp-upsell .pdp-swatches { margin-bottom: 0; }
.pdp-swatch--sm { width: 36px; height: 36px; border: 1px solid transparent; background: none; padding: 1px; cursor: pointer; overflow: hidden; }
.pdp-swatch--sm.active { border-color: var(--color-navy); }

.pdp-atc { position: relative; margin-bottom: 20px; }
.pdp-atc .btn { justify-content: space-between; }

.pdp-trust { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; margin-bottom: 18px; }
.pdp-trust li { display: flex; align-items: center; gap: 8px; }
.pdp-delivery { font-size: 13.5px; color: var(--color-text-muted); margin-bottom: 8px; }
.pdp-airline-trigger {
  background: none; border: 0; padding: 0; cursor: pointer; font: inherit;
  font-size: 12.5px; text-decoration: underline; color: var(--color-navy);
  display: inline-flex; align-items: center; gap: 5px; margin-bottom: 28px;
}
.pdp-airline-trigger::before { content: '\25B8'; text-decoration: none; font-size: 10px; }

/* ---------- Airline compatibility modal (slide-in panel) ---------- */
.airline-modal { position: fixed; inset: 0; z-index: 200; }
.airline-modal[hidden] { display: none; }
.airline-modal__backdrop { position: absolute; inset: 0; background: rgba(10, 12, 30, .55); }
.airline-modal__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(560px, 100%);
  background: #fff; overflow-y: auto; padding: 40px 44px 60px;
  box-shadow: -12px 0 32px rgba(0,0,0,.18);
}
.airline-modal__close {
  position: absolute; top: 28px; right: 32px; background: none; border: 0; font-size: 26px;
  line-height: 1; cursor: pointer; color: var(--color-text); width: 32px; height: 32px;
}
.airline-modal__panel h2 {
  font-family: var(--font-heading); font-weight: 700; font-size: 22px; letter-spacing: .3px;
  text-transform: uppercase; margin: 0 40px 20px 0; line-height: 1.3;
}
.airline-modal__panel p { font-size: 14.5px; line-height: 1.7; color: var(--color-text-muted); margin: 0 0 14px; }
.airline-modal__head {
  display: flex; justify-content: space-between; font-family: var(--font-heading);
  font-size: 11.5px; letter-spacing: .4px; text-transform: uppercase; color: var(--color-text-muted);
  padding: 18px 4px 10px; border-bottom: 1px solid var(--color-border);
}
.airline-modal__region {
  background: var(--color-navy); color: #fff; font-weight: 700; font-size: 15px;
  padding: 12px 16px; margin-top: 18px;
}
.airline-modal__row {
  display: flex; align-items: center; justify-content: space-between; padding: 13px 16px;
  border-bottom: 1px solid var(--color-border); font-size: 14.5px; color: var(--color-navy); font-weight: 500;
}
.airline-modal__row svg { width: 16px; height: 16px; color: var(--color-navy); flex: 0 0 auto; }
@media (max-width: 600px) {
  .airline-modal__panel { width: 100%; padding: 32px 22px 48px; }
}

.pdp-accordion { border-top: 1px solid var(--color-border); }
.pdp-accordion__item { border-bottom: 1px solid var(--color-border); }
.pdp-accordion__item summary {
  list-style: none; cursor: pointer; padding: 16px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 14.5px; font-weight: 500;
}
.pdp-accordion__item summary::-webkit-details-marker { display: none; }
.pdp-accordion__item summary::after { content: '+'; font-size: 18px; color: var(--color-text-muted); }
.pdp-accordion__item[open] summary::after { content: '–'; }
.pdp-accordion__body { padding: 0 0 20px; font-size: 14px; color: var(--color-text-muted); line-height: 1.7; }
.pdp-accordion__body h5 { color: var(--color-text); font-size: 13px; text-transform: uppercase; letter-spacing: .3px; margin: 14px 0 6px; }
.pdp-accordion__body ul { padding-left: 18px; list-style: disc; }
.pdp-accordion__body li { margin-bottom: 4px; }

.mobile-atc-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: var(--color-navy); color: #fff; padding: 14px 20px;
  display: none; align-items: center; justify-content: space-between; font-family: var(--font-heading); font-size: 13px; letter-spacing: .4px; text-transform: uppercase;
}
@media (max-width: 900px) { .mobile-atc-bar { display: flex; } body { padding-bottom: 62px; } }

/* ---------- Reviews ---------- */
.reviews { max-width: 760px; margin: 0 auto; padding: 40px 24px 60px; }
.reviews__summary { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; font-size: 15px; }
.reviews__summary .stars { color: var(--color-navy); font-size: 18px; }
.review-card { border-top: 1px solid var(--color-border); padding: 20px 0; }
.review-card__head { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.review-card__verified { color: #2a9d5c; font-size: 12px; font-weight: 400; }
.review-card__date { font-size: 12px; color: var(--color-text-muted); margin-bottom: 8px; }
.review-card .stars { color: var(--color-navy); font-size: 13px; display: block; margin-bottom: 8px; }
.review-card p { font-size: 14px; line-height: 1.6; margin: 0; }

/* ---------- Generic content pages ---------- */
.page-content { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.page-content h1 { font-family: var(--font-heading); font-size: 28px; text-transform: uppercase; margin: 0 0 24px; }
.page-content h2 { font-family: var(--font-heading); font-size: 18px; text-transform: uppercase; margin: 32px 0 12px; }
.page-content p, .page-content li { font-size: 15px; line-height: 1.75; color: var(--color-text-muted); }
.page-content ul { padding-left: 20px; list-style: disc; margin-bottom: 16px; }
.page-content a { text-decoration: underline; color: var(--color-navy); }

.legal-banner { background: var(--color-bg-alt); border: 1px solid var(--color-border); padding: 20px 22px; margin-bottom: 28px; }
.legal-banner strong { display: block; margin-bottom: 6px; font-family: var(--font-heading); font-size: 13px; text-transform: uppercase; }

/* small toast for disabled buy button */
.toast {
  position: fixed; left: 50%; bottom: 90px; transform: translateX(-50%) translateY(12px);
  background: var(--color-navy); color: #fff; font-size: 13px; padding: 10px 18px;
  opacity: 0; pointer-events: none; transition: all .25s ease; z-index: 60; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* mobile nav drawer */
.mobile-nav { position: fixed; inset: 0; background: var(--color-bg); z-index: 100; padding: 24px; transform: translateX(-100%); transition: transform .25s ease; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav__close { background: none; border: 0; font-size: 22px; margin-bottom: 30px; }
.mobile-nav a { display: block; font-family: var(--font-heading); font-size: 20px; text-transform: uppercase; padding: 14px 0; border-bottom: 1px solid var(--color-border); color: var(--color-navy); }
