:root {
  --font-ui: "Sora", "Inter", "Segoe UI", Arial, sans-serif;
  --bg: #ffffff;
  --bg-elev: #f8f9fb;
  --bg-elev-2: #f3f4f6;
  --line: #dde1e6;
  --line-strong: #c8ced6;
  --text: #111317;
  --text-muted: #353a42;
  --text-soft: #646d78;
  --blue-premium: #1570ef;
  --blue-premium-hover: #0f5fd2;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main#contenu { order: 2; flex: 1 0 auto; }
.site-header { order: 1; }
img { max-width: 100%; height: auto; }
a { color: #0f172a; text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(var(--container), calc(100% - 2rem)); margin-inline: auto; }
.section { padding: 4rem 0; }
.section-tight { padding-top: 2.6rem; }
.section-title { margin: 0 0 .8rem; font-size: clamp(1.5rem, 2.4vw, 2.2rem); letter-spacing: -.01em; }
.home-title { margin: 0 0 .8rem; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.02em; }
.lead { margin: 0; color: var(--text-muted); max-width: 72ch; }
.muted { color: var(--text-soft); }
.eyebrow {
  color: #636b76;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 700;
  margin: 0 0 .6rem;
}

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  background: #111;
  color: #fff;
  padding: .5rem .75rem;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
  cursor: pointer;
  z-index: 2900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease, background-color .2s ease;
}
.back-to-top:hover {
  background: #151515;
}
.back-to-top.is-on-footer {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.back-to-top.is-on-footer:hover {
  background: #f2f2f2;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}
video:focus,
video:focus-visible {
  outline: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(6px);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.4rem;
  padding-right: .35rem;
}
.brand { display: inline-flex; align-items: center; min-height: 28px; }
.brand-logo { width: clamp(140px, 14vw, 190px); height: auto; display: block; }
.brand-fallback { position: absolute; left: -9999px; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(.32rem, .75vw, .62rem);
  margin-left: auto;
  flex: 0 1 auto;
  min-width: 0;
}
.main-nav > a {
  color: #f8fbff;
  font-weight: 700;
  font-size: .96rem;
  letter-spacing: .005em;
  border-radius: 999px;
  min-height: 42px;
  padding: .52rem .88rem;
  border: 1px solid transparent;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.main-nav > a:not(.btn-contact) {
  background: rgba(255, 255, 255, .02);
}
.main-nav > a:not(.btn-contact):hover,
.main-nav > a:not(.btn-contact):focus-visible {
  text-decoration: none;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .28);
  transform: translateY(-1px);
}
.main-nav > a[aria-current="page"]:not(.btn-contact) {
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(21, 112, 239, .48), rgba(16, 72, 173, .38));
  border-color: rgba(109, 167, 255, .72);
  box-shadow: 0 10px 20px rgba(7, 41, 98, .45), inset 0 0 0 1px rgba(255, 255, 255, .12);
}
.nav-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111;
  border-radius: 999px;
  padding: .68rem 1.1rem;
  font-size: .9rem;
  font-weight: 700;
  background: #000;
  color: #fff;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn:hover { text-decoration: none; background: #151515; border-color: #151515; }
.btn-outline {
  background: #000;
  color: #fff;
  border-color: #000;
}
.btn-outline:hover { background: #151515; border-color: #151515; }
.btn-small { padding: .54rem .9rem; font-size: .84rem; }
.btn-contact {
  background: #1570ef;
  color: #fff;
  border-color: #1570ef;
  box-shadow: 0 10px 20px rgba(21, 112, 239, .35);
}
.btn-contact:hover {
  background: #1f7aff;
  border-color: #1f7aff;
}
.main-nav > a.btn-contact {
  padding-inline: 1.08rem;
}
.main-nav > a.btn-contact[aria-current="page"] {
  background: linear-gradient(135deg, #1f7aff, #0d56d5);
  border-color: #6da7ff;
  box-shadow: 0 12px 24px rgba(13, 86, 213, .44), inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.home-video {
  margin-top: 0;
  border-bottom: 0;
}
.home-section {
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
}
.home-section-collection {
  padding-top: 1.35rem;
}
.home-section .section-head {
  margin-bottom: .5rem;
}
.home-section-faq {
  padding-top: 1.875rem;
  padding-bottom: 1.9rem;
}
.home-section-resellers {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.home-section-testimonials {
  padding-top: 1.9rem;
  padding-bottom: 1.7rem;
}

.tech-page-hero.section.section-tight {
  padding-top: .7rem;
  padding-bottom: .8rem;
}
.legal-hero.section.section-tight {
  padding-bottom: 0;
}
.legal-body.section {
  padding-top: 0 !important;
  margin-top: 0;
}
.legal-hero .home-title {
  margin-bottom: 0;
}
.legal-body .prose {
  margin-top: 0;
}
.legal-body .prose > :first-child {
  margin-top: 0 !important;
}
.collection-hero.section.section-tight,
.sizes-hero.section.section-tight,
.faq-hero.section.section-tight {
  padding-top: .7rem;
  padding-bottom: .8rem;
}
.collection-hero .eyebrow,
.sizes-hero .eyebrow,
.faq-hero .eyebrow {
  display: inline-block;
  margin-top: 0;
}
.sizes-hero .eyebrow {
  margin-top: .32rem;
}
.collection-hero .home-title,
.sizes-hero .home-title,
.faq-hero .home-title {
  margin-bottom: .35rem;
}
.hero-followup.section.section-tight {
  padding-top: .85rem;
}
.collection-hero.section.section-tight {
  padding-bottom: .4rem;
}
.collection-page-body.section.section-tight.hero-followup {
  padding-top: 0;
}
.collection-page-body .filters {
  margin-top: .2rem;
  margin-bottom: 30px;
}
.collection-page-body .actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .55rem;
}
.collection-filters-toggle {
  display: none;
}
.tech-page-hero a.eyebrow {
  display: inline-block;
  text-decoration: none;
  transition: color .2s ease;
}
.tech-page-hero a.eyebrow:hover,
.tech-page-hero a.eyebrow:focus-visible {
  color: #4d5562;
  text-decoration: none;
}
.bien-etre-hero .lead {
  max-width: none;
}
.video-wrap {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #000;
}
.video-wrap video {
  display: block;
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}
@media (min-width: 761px) {
  .video-wrap video {
    object-fit: contain;
    max-height: 650px;
  }
}

.home-collection {
  margin-top: .8rem;
  background: #252525;
  border-radius: 10px;
  padding: 0;
}
.collection-feature-section .section-head h2,
.collection-feature-section .section-head a,
.collection-feature-section .lead {
  color: #fff;
}
.collection-feature-section {
  background: #252525;
}
.collection-feature-section.block-surface {
  background: #252525;
  border-top-color: transparent;
  border-bottom-color: transparent;
}
.collection-banner {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  border: 0;
  margin-bottom: 1.2rem;
}
.collection-banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.collection-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}
.mosaic-tile {
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: hidden;
  border: 0;
  background: transparent;
}
.mosaic-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #252525;
}
.tile-azzurra,
.tile-linea-oro,
.tile-alpina,
.tile-linea {
  aspect-ratio: 1 / 1;
}
.mosaic-video {
  grid-column: 2;
  grid-row: 1 / span 2;
  border-radius: 4px;
  overflow: hidden;
  border: 0;
  background: #222326;
  min-height: 100%;
}
.mosaic-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.tile-ceramica,
.tile-titania,
.tile-titania-nera {
  aspect-ratio: 1 / 1;
}

.block-surface {
  background: var(--bg-elev);
  border-top: 1px solid rgba(0, 0, 0, .05);
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}
.block-surface.collection-feature-section {
  background: #252525;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .8rem;
  margin-bottom: .65rem;
}
.section-head-actions {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
}
.home-section-faq .section-head {
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.home-section-faq .section-head .section-title {
  margin: 0;
}
.home-section-faq .section-head-actions {
  flex-wrap: nowrap;
}
.home-section-faq .faq-list {
  margin-top: 20px;
}
@media (min-width: 761px) {
  .home-section-faq .section-head {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }
  .home-section-faq .section-head .section-title {
    margin: 0;
  }
  .home-section-faq .section-head-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0;
  }
}
.section-head-stack {
  justify-content: flex-start;
  margin-bottom: 1.2rem;
}

.cards-grid { margin-top: 1rem; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .9rem; }
.cards-grid-all { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}
.card-media-link {
  display: block;
}
.card-media {
  aspect-ratio: 1 / 1;
  margin: 0;
  display: block;
  background: #f7f8fa;
  border-bottom: 1px solid var(--line);
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.card-body { padding: .9rem; }
.card-body h2,
.card-body h3 { margin: .2rem 0 .45rem; font-size: 1.05rem; }
.card-ref { margin: 0; font-size: .83rem; color: var(--text-soft); }
.mini-list { margin: .65rem 0 0; padding-left: 1.1rem; }
.mini-list li { margin: .2rem 0; }

.tech-highlight { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1.4rem; align-items: center; }
.tech-highlight.reverse { grid-template-columns: .95fr 1.05fr; }
.tech-visual {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
}
.tech-visual img { display: block; width: 100%; height: 100%; object-fit: cover; }
.tech-visual .tech-app-shot {
  object-fit: contain;
  max-height: 640px;
  margin: 0 auto;
  background: #fff;
}
.icon-list { margin: .8rem 0; padding-left: 1.1rem; }
.icon-list li { margin: .42rem 0; color: var(--text-muted); }
.icon-list.compact li { margin: .24rem 0; }
.store-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: .55rem .85rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: #131722;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }

.tech-showcase {
  background: #ffffff;
  color: #12151b;
}
.tech-showcase .container {
  display: grid;
  gap: 2.2rem;
}
.home-bien-etre-section.section {
  padding-top: 1.875rem;
  padding-bottom: 1.25rem;
}
.home-bien-etre-section .container {
  gap: 1.25rem;
}
.home-bien-etre-section .section-head-stack {
  margin-bottom: 0;
}
.bien-etre-showcase {
  padding-top: .9rem;
  padding-bottom: 1.6rem;
}
.bien-etre-showcase .container {
  gap: 1.2rem;
}
.bien-etre-warning {
  padding-top: 1.4rem;
  padding-bottom: 2rem;
}
.tech-row {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.2rem;
  align-items: center;
}
.tech-copy h2 {
  margin: 0 0 .8rem;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.1;
}
.benefit-list,
.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.benefit-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: .9rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.benefit-list p {
  margin: 0;
  color: #20242b;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.28;
}
.benefit-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #9aa3ad;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #12151b;
}
.tech-media {
  position: relative;
}
.tech-media-one {
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.phone-main {
  position: relative;
  width: min(520px, 100%);
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, .20));
}
.tech-row-two {
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
}
.tech-media-two {
  padding-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}
.app-main-visual {
  width: min(560px, 100%);
  max-height: 640px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, .26));
}
.phone-stack {
  position: relative;
  min-height: 420px;
  max-width: 560px;
  margin-inline: auto;
  margin-top: 0;
  overflow: visible;
}
.phone-stack img {
  position: absolute;
  width: clamp(160px, 30vw, 260px);
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, .42));
}
.phone-left {
  left: 2%;
  top: 50%;
  transform: translateY(-50%) rotate(-10deg);
}
.phone-center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.phone-right {
  right: 2%;
  left: auto;
  top: 50%;
  transform: translateY(-50%) rotate(11deg);
}
.feature-list li {
  margin-bottom: .38rem;
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  color: #20242b;
}
.feature-list li::before {
  content: "• ";
  font-weight: 700;
}
.tech-store-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.tech-store-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-width: 170px;
  padding: .7rem 1.1rem;
  border-radius: 12px;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  font-size: 1.05rem;
  font-weight: 700;
}
.tech-store-pill:hover {
  text-decoration: none;
  background: #1a1a1a;
}
.store-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
}
.store-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.app-showcase-page {
  background: #fff;
  color: #111317;
}
.app-showcase-page.section {
  padding-top: .7rem;
  padding-bottom: 1.6rem;
}
.app-showcase-page .feature-list li,
.app-showcase-page .tech-copy h2 {
  color: #111317;
}
.app-showcase-page .tech-store-pill {
  background: #000;
  color: #fff;
  border-color: #000;
}
.app-showcase-page .tech-store-pill:hover {
  background: #1a1a1a;
}
.app-video-guides {
  padding-top: 1.1rem;
}
.app-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .9rem;
}
.app-video-card {
  border: 0;
  border-radius: 10px;
  background: transparent;
  padding: 0;
  overflow: hidden;
}
.app-video-card h3 {
  margin: 0;
  padding: .55rem .7rem;
  background: #000;
  color: #fff;
  font-size: .92rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}
.app-video-card video {
  width: 100%;
  border-radius: 0;
  display: block;
  background: #000;
}

.faq-list details {
  margin-bottom: .62rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: hidden;
}
.faq-search {
  margin: 0 0 20px;
  display: grid;
  gap: .42rem;
}
.faq-search label {
  font-size: .92rem;
  font-weight: 700;
  color: #4f5b6d;
}
.faq-search input[type="search"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  padding: .68rem .75rem;
}
.faq-search input[type="search"]:focus {
  border-color: #1570ef;
  box-shadow: 0 0 0 3px rgba(21, 112, 239, .14);
  outline: none;
}
.faq-search-status {
  margin: 0;
  min-height: 0;
  font-size: .86rem;
  color: #5d6775;
}
.faq-search-status:not(:empty) {
  margin-top: .25rem;
}
.faq-no-results {
  margin: .3rem 0 1rem;
  color: #5d6775;
}
.faq-hero.section.section-tight {
  padding-bottom: .35rem;
}
.faq-page.section.section-tight.hero-followup {
  padding-top: 0;
}
.section-cta.faq-videos-cta {
  margin: 0 0 .85rem !important;
  border: 0;
  background: transparent;
  padding: 0;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: .65rem;
}
.section-cta.faq-videos-cta p {
  margin: 0;
}
.section-cta.faq-videos-cta .btn {
  margin-top: 0;
  margin-left: 0 !important;
  align-self: flex-start !important;
  margin-bottom: 20px;
}
.faq-category h2 {
  margin-top: 0;
  margin-bottom: .7rem;
}
.faq-category {
  margin-bottom: 1.35rem;
}
.faq-category:last-of-type {
  margin-bottom: 0;
}
.sizes-back-to-product {
  margin: 0 0 .75rem;
  display: flex;
  justify-content: flex-end;
}
.sizes-hero-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .8rem;
}
.sizes-hero-head .sizes-back-to-product {
  margin: 0;
}
.sizes-back-label-short {
  display: none;
}
.contact-page.section-tight {
  padding-top: .55rem;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  padding: .72rem .85rem;
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none !important;
}
.faq-list summary::marker {
  content: "";
  font-size: 0;
}
.faq-list summary::before {
  content: "\25B6\FE0E";
  flex: 0 0 auto;
  font-family: var(--font-ui), -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.1;
  transform: translateY(.08em);
}
.faq-list details[open] summary::before {
  content: "\25BC\FE0E";
}
.faq-list details p { margin: 0; padding: 0 .85rem .85rem; color: var(--text-muted); }
.faq-list details > div {
  margin: 0;
  padding: 0 .85rem .85rem;
  color: var(--text-muted);
}
.faq-list details > div > :first-child {
  margin-top: 0;
}
.faq-list details > div > :last-child {
  margin-bottom: 0;
}
.faq-list details > div a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.map {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 430px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #f8f9fb;
  margin-top: .95rem;
}
.map-reset-control {
  border: 0;
  box-shadow: none;
  background: transparent;
}
.map-reset-view-btn {
  border: 1px solid #cfd6e2;
  border-radius: 8px;
  background: #ffffff;
  color: #0f172a;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
  padding: .5rem .58rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(15, 23, 42, .18);
}
.map-reset-view-btn:hover {
  background: #f3f6fb;
}
.resellers-page.section-tight {
  padding-top: .55rem;
}
.resellers-hero.section.section-tight {
  padding-bottom: .45rem;
}
.resellers-page .filters {
  margin-top: -10px;
  margin-bottom: .8rem;
}
.resellers-b2b-inline {
  margin: 0 0 .35rem;
  color: var(--text-muted);
}
.resellers-b2b-inline a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.resellers-page .actions {
  display: flex;
  flex-direction: row;
  gap: .55rem;
  align-items: center;
}
.resellers-page #reseller-search-form label[for="reseller-q"] {
  font-size: 1.2rem;
}
.sizes-hero.section.section-tight {
  padding-top: .7rem;
  padding-bottom: .8rem;
}
.sizes-page.section-tight {
  padding-top: .1rem;
}
.sizes-page .table-wrap {
  margin-top: .2rem;
  padding-top: .2rem;
  border-top: 0;
}
.sizes-page table caption {
  caption-side: top;
  text-align: left;
  margin: 0 0 .7rem;
  font-size: clamp(1.28rem, 2.1vw, 1.72rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: #0f172a;
}

.testimonials-carousel {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .6rem;
  align-items: center;
}
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform .28s ease;
}
.carousel-item {
  min-width: 100%;
}
.carousel-page {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
}
.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.carousel-btn:hover {
  background: #151515;
  border-color: #151515;
  transform: translateY(-1px);
}
.testimonial-avatar {
  /*width: 96px;*/
  /*height: 96px;*/
  border-radius: 10%;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
}
.testimonial {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 1rem 1.05rem 1.1rem;
  height: 100%;
}
.testimonial-head {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: .85rem;
  align-items: start;
  min-height: 136px;
}
.testimonial-meta h3 {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.15;
  color: #111317;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 12px;
}
.testimonial-role {
  margin: .28rem 0 0;
  color: var(--text-muted);
  font-size: .95rem;
}
.testimonial-rating {
  margin: .45rem 0 0;
  display: flex;
  justify-content: flex-start;
  width: auto;
  margin-top: 10px;
}
.testimonial-rating .stars {
  display: inline-flex;
  align-items: center;
  gap: .12rem;
  background: #f2f4f7;
  border-radius: 8px;
  padding: .28rem .52rem;
  color: #0f172a;
  font-size: 1.08rem;
  line-height: 1;
  letter-spacing: .05em;
}
.testimonial-comment {
  margin: 25px 0 0;
  color: #222a35;
  font-size: 1.04rem;
  line-height: 1.5;
}

.section-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 1.35rem;
}
.section-cta.compact {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
}

.filters { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: .75rem; margin: 1.1rem 0; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-size: .88rem; color: var(--text-soft); }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  padding: .66rem .7rem;
}
.field-wide { grid-column: span 3; }
.actions { align-self: end; }

.product-page.section-tight {
  padding-top: .45rem;
  padding-bottom: calc(4rem - 50px);
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.5rem;
  row-gap: .7rem;
  align-items: start;
}
.product-topline {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.product-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: .92rem;
}
.product-breadcrumb a {
  color: var(--text-soft);
}
.product-breadcrumb a:hover {
  color: #111317;
}
.product-gallery-col {
  min-width: 0;
}
.product-info-col {
  min-width: 0;
}
@media (min-width: 901px) {
  .product-gallery-col {
    position: sticky;
    top: calc(72px + 1rem);
    align-self: start;
  }
}
.product-gallery {
  position: relative;
  display: grid;
  gap: .55rem;
  min-height: 620px;
}
.product-gallery-main {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  cursor: zoom-in;
}
.product-gallery-main img {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 430px;
  max-height: 520px;
  object-fit: contain;
  display: block;
}
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: .55rem;
}
.product-thumb {
  border: 2px solid transparent;
  border-radius: 8px;
  background: #fff;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}
.product-thumb.is-active {
  border-color: #9aa3ad;
}
.product-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
}
.gallery-nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 999px;
  background: rgba(17, 19, 23, .75);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.gallery-nav.prev { left: .6rem; }
.gallery-nav.next { right: .6rem; }
.gallery-modal[hidden] { display: none; }
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
}
.gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .82);
}
.gallery-modal-inner {
  position: relative;
  width: min(1080px, calc(100% - 2rem));
  margin: 1.2rem auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  overflow: visible;
}
.gallery-modal-close {
  position: absolute;
  top: .8rem;
  right: .8rem;
  width: 44px;
  height: 44px;
  border: 1px solid #0f172a;
  border-radius: 999px;
  background: rgba(15, 23, 42, .94);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5010;
  box-shadow: 0 12px 24px rgba(15, 23, 42, .35);
}
.gallery-modal-close:hover {
  background: #000;
}
.gallery-modal-stage {
  position: relative;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}
.gallery-modal-stage img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  display: block;
  cursor: zoom-in;
  transform-origin: center;
  transition: transform .22s ease;
}
.gallery-modal-stage img.is-zoomed {
  cursor: grab;
  touch-action: none;
  user-select: none;
}
.gallery-modal-stage img.is-zoomed.is-dragging {
  cursor: grabbing;
  transition: none;
}
.gallery-modal-help {
  margin: .65rem 0 0;
  color: var(--text-soft);
  font-size: .9rem;
}
.gallery-modal-thumbs {
  margin-top: .7rem;
  display: flex;
  gap: .45rem;
  overflow-x: auto;
  padding-bottom: .25rem;
}
.gallery-modal-thumb {
  flex: 0 0 84px;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #fff;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}
.gallery-modal-thumb.is-active {
  border-color: #9aa3ad;
}
.gallery-modal-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
}

.product-info-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  border: 1px solid #e3e6eb;
  border-radius: 16px;
  padding: 1.1rem 1.2rem 1.25rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}
.product-info-panel h1 {
  margin: 0 0 .35rem;
  font-size: clamp(2rem, 2.7vw, 2.5rem);
  letter-spacing: -.02em;
}
.product-switch {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
}
.product-switch-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #111;
  background: #000;
  color: #fff;
  font-size: 1.28rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease, opacity .2s ease;
}
.product-switch-btn:hover {
  text-decoration: none;
  background: #151515;
  border-color: #151515;
  transform: translateY(-1px);
}
.product-switch-btn.is-disabled {
  opacity: .3;
  pointer-events: none;
}
.product-info-panel .lead {
  margin-bottom: .45rem;
  font-size: 1.05rem;
}
.product-rich-html {
  margin-top: .65rem;
  color: #1f2430;
}
.product-rich-html > *:first-child {
  margin-top: 0;
}
.product-rich-html > *:last-child {
  margin-bottom: 0;
}
.product-rich-html ul,
.product-rich-html ol {
  margin: .6rem 0 .6rem 1.1rem;
}
.product-rich-html p {
  margin: .45rem 0;
}
.product-rich-html h3 {
  margin-bottom: .22rem;
}
.product-info-panel h2 {
  margin: 1rem 0 .45rem;
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  letter-spacing: -.015em;
}
.product-list {
  color: #1f2430;
}
.product-size-guide-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-cta {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}
.btn-cta-primary,
.btn-cta-secondary {
  min-height: 54px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.btn-cta-primary {
  background: linear-gradient(180deg, #0f172a 0%, #000 100%);
  border: 1px solid #0f172a;
  color: #fff;
  box-shadow: 0 8px 16px rgba(15, 23, 42, .25);
}
.btn-cta-primary:hover {
  background: linear-gradient(180deg, #1e293b 0%, #0a0a0a 100%);
}
.btn-cta-secondary {
  background: #fff;
  border: 1px solid #111;
  color: #111;
}
.btn-cta-secondary:hover {
  background: #f4f4f5;
}
.gallery-placeholder {
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  text-align: center;
  color: var(--text-soft);
  padding: 3rem 1rem;
}

.product-specs-section {
  padding-top: .9rem;
  padding-bottom: 0;
  scroll-margin-top: 96px;
}
.product-specs-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.product-related-section {
  padding-top: 20px;
}
.product-specs-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}
.product-specs-panel .section-title {
  margin-bottom: .75rem;
}
.product-specs-table th {
  width: 260px;
  font-weight: 700;
  color: #111317;
}
.product-specs-table td {
  color: #242b36;
}
.product-list-inline {
  margin: 0;
  list-style: none;
  padding-left: 0;
}
.product-list-inline li {
  margin: .25rem 0;
}
.product-kit-notes {
  margin: .55rem 0 0;
  color: var(--text-soft);
}

.table-wrap {
  overflow-x: auto;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 2px solid #d9dde4;
}
.resellers-page .table-wrap {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}
.resellers-page #resellers-table caption {
  margin: .75rem 0 .75rem;
}
table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
}
th, td { text-align: left; padding: .65rem .72rem; border-bottom: 1px solid var(--line); }
th { background: #f6f7f9; }
#resellers-table caption {
  caption-side: top;
  text-align: left;
  margin: 0 0 .75rem;
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -.015em;
  color: #0f172a;
}

.notice {
  margin-top: 1.1rem;
  border: 1px solid var(--line);
  border-left: 3px solid #0f172a;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #fff;
  padding: .9rem 1rem;
}

#resellers-table tbody tr:nth-child(even) { background: #fafbfc; }
#resellers-table tbody td { vertical-align: top; }
.reseller-links {
  display: grid;
  gap: .3rem;
}
.reseller-links a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
}
.reseller-link-icon {
  width: 1.15rem;
  height: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: .62rem;
  line-height: 1;
  color: #fff;
  background: #0f172a;
  font-weight: 800;
}
.reseller-link-icon.icon-facebook { background: #1877f2; }
.reseller-link-icon.icon-instagram { background: #e1306c; }
.reseller-link-icon.icon-tiktok { background: #111111; }
.reseller-link-icon.icon-map {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}
.map-focus-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  gap: .42rem;
  padding: .26rem .54rem;
  border: 1px solid #000;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: .84rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.map-focus-link:hover {
  text-decoration: none;
  background: #f3f4f6;
  border-color: #000;
  transform: translateY(-1px);
}
#resellers-table tbody td[data-label="Carte"] {
  vertical-align: middle;
}

@media (max-width: 760px) {
  #resellers-table {
    border: 0;
    background: transparent;
  }
  #resellers-table caption {
    text-align: left;
    margin-bottom: .65rem;
    font-size: 1.35rem;
    font-weight: 800;
  }
  #resellers-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
  #resellers-table tbody {
    display: grid;
    gap: .75rem;
  }
  #resellers-table tbody tr {
    display: block;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: .4rem .65rem;
  }
  #resellers-table tbody tr:nth-child(even) {
    background: #fff;
  }
  #resellers-table tbody td {
    display: grid;
    grid-template-columns: minmax(94px, 112px) minmax(0, 1fr);
    gap: .55rem;
    align-items: start;
    padding: .42rem 0;
    border-bottom: 1px dashed var(--line);
    word-break: break-word;
  }
  #resellers-table tbody td:last-child {
    border-bottom: 0;
  }
  #resellers-table tbody td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #4f5b6d;
  }
  #resellers-table tbody td[data-label="Carte"] {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  #resellers-table tbody td[data-label="Carte"]::before {
    content: none;
  }
  #resellers-table tbody td[data-label="Carte"] .map-focus-link {
    width: 75%;
    justify-content: center;
    margin-inline: auto;
  }
  #resellers-table tbody td.is-empty {
    display: none;
  }
  #resellers-table tbody td.before-map {
    border-bottom: 0;
  }
  #resellers-table tbody td[colspan] {
    display: block;
    border-bottom: 0;
  }
  #resellers-table tbody td[colspan]::before {
    content: none;
  }
}

.contact-wrap { display: grid; grid-template-columns: .95fr 1.05fr; gap: 1.25rem; align-items: start; }
.card-premium {
  border: 1px solid #dce3ee;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
  padding: 1.35rem;
}
.contact-copy h1 {
  margin-top: 0;
  margin-bottom: .65rem;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  letter-spacing: -.02em;
}
.contact-copy .lead {
  font-size: 1.1rem;
  line-height: 1.5;
}
.contact-points {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}
.contact-points li {
  margin: .35rem 0;
  color: var(--text-muted);
}
.contact-copy {
  position: sticky;
  top: 92px;
}
.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
.field-full { grid-column: 1 / -1; }
.checkbox label { display: flex; align-items: flex-start; gap: .5rem; }
.honeypot { position: absolute; left: -9999px; }
.form-feedback { min-height: 1.4rem; margin: 0; }
.form-feedback.error { color: #b42318; }
.form-feedback.success { color: #067647; }
.contact-form .field label {
  font-weight: 650;
  color: #4f5b6d;
}
.contact-form .field input:not([type="checkbox"]):not([type="radio"]),
.contact-form .field select,
.contact-form .field textarea {
  border-radius: 12px;
  border: 1px solid #cfd8e6;
  min-height: 46px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.contact-form .field input:not([type="checkbox"]):not([type="radio"]):focus,
.contact-form .field select:focus,
.contact-form .field textarea:focus {
  border-color: #1570ef;
  box-shadow: 0 0 0 4px rgba(21, 112, 239, .14);
  outline: none;
}
.contact-form .field.checkbox {
  margin-top: .1rem;
}
.contact-form .field.checkbox label {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .96rem;
  line-height: 1.35;
  color: #445063;
  font-weight: 600;
}
.contact-form .field.checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: #0f172a;
  flex: 0 0 18px;
}
.contact-form .field textarea {
  min-height: 140px;
}
.form-legal-note {
  grid-column: 1 / -1;
  margin: .05rem 0 .35rem;
  max-width: none;
}
.contact-submit-btn {
  min-height: 52px;
  width: 100%;
  border-radius: 14px;
  background: #000;
  border-color: #000;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .01em;
}
.contact-submit-btn:hover {
  background: #151515;
  border-color: #151515;
}

.not-found-page { min-height: 62vh; display: flex; align-items: center; }
.not-found-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 2rem;
}

.seo-baseline {
  order: 5;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 0;
  background: #000;
  padding: .65rem 0;
}
.seo-baseline .seo-baseline-inner {
  color: rgba(255, 255, 255, .7);
  font-size: .76rem;
  line-height: 1.32;
}
.seo-baseline .seo-baseline-inner h1,
.seo-baseline .seo-baseline-inner h2,
.seo-baseline .seo-baseline-inner h3,
.seo-baseline .seo-baseline-inner h4,
.seo-baseline .seo-baseline-inner h5,
.seo-baseline .seo-baseline-inner h6 {
  margin: 0 0 .3rem;
  font-size: .84rem;
  line-height: 1.25;
  font-weight: 700;
}
.seo-baseline .seo-baseline-inner p,
.seo-baseline .seo-baseline-inner li {
  margin: 0 0 .22rem;
}
.seo-baseline .seo-baseline-inner ul,
.seo-baseline .seo-baseline-inner ol {
  margin: 0 0 .25rem;
  padding-left: 1rem;
}
.seo-baseline a {
  color: rgba(255, 255, 255, .72);
  text-decoration-color: rgba(255, 255, 255, .35);
}
.seo-baseline a:hover {
  color: rgba(255, 255, 255, .85);
}
.seo-baseline .seo-baseline-inner > *:first-child { margin-top: 0; }
.seo-baseline .seo-baseline-inner > *:last-child { margin-bottom: 0; }

.site-footer {
  order: 4;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  background: #000;
  color: #fff;
  padding: 2rem 0;
}
.site-footer a { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.85fr);
  gap: 2.25rem;
}
#newsletter {
  width: 100%;
  max-width: 460px;
}
.footer-nav-group {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4rem;
  width: max-content;
  margin-inline: auto;
}
.footer-nav-column {
  display: grid;
  gap: 1.35rem;
}
.footer-grid h2 {
  margin-top: 0;
  margin-bottom: .7rem;
  font-size: 1.4rem;
  letter-spacing: -.01em;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: .75rem;
}
.footer-logo {
  width: clamp(150px, 14vw, 200px);
  height: auto;
  display: block;
}
.newsletter-form {
  margin-top: 1rem;
  display: grid;
  gap: .55rem;
  max-width: 460px;
}
.newsletter-form label {
  color: #fff;
  font-weight: 700;
}
.newsletter-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .6rem;
}
.newsletter-row input[type="email"] {
  border: 1px solid #505050;
  border-radius: 999px;
  background: #3f3f41;
  color: #fff;
  padding: .72rem .95rem;
}
.newsletter-row input[type="email"]::placeholder {
  color: #d2d2d2;
}
.newsletter-form .btn {
  border-color: #5a5a5a;
  background: #5a5a5d;
  color: #fff;
}
.newsletter-form .btn:hover {
  background: #6a6a6d;
}
.newsletter-consent {
  color: #c7c7c7;
  font-size: .82rem;
  display: flex;
  align-items: flex-start;
  gap: .45rem;
}
.newsletter-feedback {
  margin: 0;
  font-size: .85rem;
}
.newsletter-feedback.error {
  color: #fda29b;
}
.newsletter-unsubscribe-link {
  margin: 0;
  font-size: .82rem;
}
.newsletter-unsubscribe-link a {
  color: #d1d8e7;
  text-decoration: underline;
}
.newsletter-unsubscribe-link a:hover {
  color: #fff;
}
.newsletter-unsubscribe-box .contact-form {
  margin: 1rem auto;
  max-width: 620px;
}
.footer-socials {
  margin-top: .7rem;
  display: flex;
  gap: .55rem;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #5a5a5d;
  color: #fff;
  font-weight: 700;
  text-transform: lowercase;
}
.footer-socials a:hover {
  text-decoration: none;
  background: #6a6a6d;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
}
.footer-links li { margin: 0; }
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  width: 100%;
  min-height: 38px;
  padding: .35rem .65rem;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  background: rgba(255, 255, 255, .03);
  color: #f6f7fb;
  font-weight: 600;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.footer-links a::before {
  content: "\2197\FE0E";
  font-size: .96rem;
  line-height: 1;
  opacity: .75;
  flex: 0 0 auto;
  font-family: var(--font-ui), -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 700;
}
.footer-links a:hover {
  text-decoration: none;
  background: rgba(21, 112, 239, .18);
  border-color: rgba(21, 112, 239, .45);
  transform: translateX(2px);
}
.footer-links a[aria-current="page"] {
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(21, 112, 239, .48), rgba(16, 72, 173, .38));
  border-color: rgba(109, 167, 255, .72);
  box-shadow: 0 8px 18px rgba(7, 41, 98, .32), inset 0 0 0 1px rgba(255, 255, 255, .1);
}

@media (min-width: 992px) {
  .footer-links {
    gap: .5rem;
  }
  .footer-links a {
    display: inline;
    width: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-weight: 500;
    opacity: .94;
    transition: opacity .2s ease, text-decoration-color .2s ease;
  }
  .footer-links a::before {
    content: none;
  }
  .footer-links a:hover {
    background: transparent;
    border: 0;
    transform: none;
    text-decoration: underline;
    opacity: .78;
  }
  .footer-links a[aria-current="page"] {
    background: transparent;
    border: 0;
    box-shadow: none;
    color: #fff;
    font-weight: 700;
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}

@media (max-width: 1020px) {
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .carousel-page { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .tech-highlight,
  .tech-highlight.reverse,
  .product-grid,
  .contact-wrap,
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav-group {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .tech-row,
  .tech-row-two { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .product-gallery {
    min-height: auto;
  }
  .product-gallery-main img {
    min-height: 320px;
    max-height: 420px;
  }
  .product-cta {
    grid-template-columns: 1fr;
  }
  .product-topline {
    align-items: center;
    flex-wrap: nowrap;
    gap: .45rem;
  }
  .product-breadcrumb {
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .product-switch-btn {
    width: 30px;
    height: 30px;
    font-size: 1.12rem;
  }
  .product-specs-table th,
  .product-specs-table td {
    display: block;
    width: 100%;
  }
  .product-specs-table th {
    border-bottom: 0;
    padding-bottom: .2rem;
  }
  .product-specs-table td {
    padding-top: .2rem;
  }
  .tech-media-one {
    min-height: 300px;
  }
  .phone-main {
    width: min(420px, 100%);
    max-height: 300px;
  }
  .phone-stack {
    min-height: 400px;
    max-width: 460px;
    margin-top: 0;
  }
  .app-main-visual {
    width: min(420px, 100%);
    max-height: 520px;
  }
  .phone-left { left: 0; }
  .phone-center { left: 50%; top: 50%; transform: translate(-50%, -50%); }
  .phone-right { right: 0; left: auto; }
  .filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field-wide,
  .actions { grid-column: span 2; }
  .collection-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mosaic-video {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 4 / 5.2;
  }
}

@media (max-width: 760px) {
  @supports (-webkit-touch-callout: none) {
    input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="submit"]):not([type="button"]),
    select,
    textarea {
      font-size: 16px !important;
    }
  }
  .collection-filters-toggle {
    display: inline-flex;
    margin: .2rem 0 .75rem;
  }
  .collection-page-body .filters {
    display: none;
    margin-top: 0;
  }
  .collection-page-body .filters.is-open {
    display: grid;
  }
  .tech-page-hero.section.section-tight {
    padding-top: .7rem;
    padding-bottom: .8rem;
  }
  .tech-page-hero .eyebrow {
    margin-bottom: .35rem;
  }
  .tech-page-hero .home-title {
    margin-bottom: .35rem;
  }
  .tech-page-hero .lead {
    margin-bottom: 0;
  }
  .site-header {
    background: rgba(0, 0, 0, .98);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }
  .header-inner {
    min-height: 64px;
    gap: .75rem;
  }
  .brand-logo {
    width: clamp(128px, 40vw, 170px);
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    margin-left: auto;
    min-width: 78px;
    min-height: 38px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    color: #fff;
    font-weight: 700;
    font-size: .84rem;
    letter-spacing: .01em;
    padding: .35rem .85rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .28);
  }
  .nav-toggle-icon {
    font-size: .95rem;
    line-height: 1;
    transform: translateY(-1px);
  }
  .nav-toggle[aria-expanded="true"] {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .55);
  }
  .main-nav {
    display: none;
    position: fixed;
    left: .75rem;
    right: .75rem;
    top: 72px;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 16px;
    background: rgba(8, 10, 14, .98);
    backdrop-filter: blur(10px);
    padding: .55rem;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 26px 44px rgba(0, 0, 0, .45);
    z-index: 3200;
  }
  .main-nav > a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: .3rem .65rem;
    border-radius: 10px;
    color: #fff !important;
    -webkit-text-fill-color: #fff;
    opacity: 1;
    font-size: 1.02rem;
    font-weight: 700;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .35);
  }
  .main-nav > a:visited {
    color: #fff !important;
    -webkit-text-fill-color: #fff;
  }
  .main-nav > a:not(.btn-contact) {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    opacity: 1 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }
  .main-nav > a:not(.btn-contact):link,
  .main-nav > a:not(.btn-contact):visited,
  .main-nav > a:not(.btn-contact):hover,
  .main-nav > a:not(.btn-contact):focus-visible,
  .main-nav > a:not(.btn-contact)[aria-current="page"] {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    opacity: 1 !important;
  }
  body.nav-open #main-nav.main-nav > a:not(.btn-contact),
  #main-nav.main-nav.open > a:not(.btn-contact),
  #main-nav.main-nav > a:not(.btn-contact) {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    opacity: 1 !important;
  }
  .main-nav > a:last-child {
    border-bottom: 0;
  }
  .main-nav > a:hover,
  .main-nav > a:focus-visible {
    text-decoration: none;
    background: rgba(255, 255, 255, .08);
  }
  .main-nav > a[aria-current="page"] {
    color: #fff !important;
    -webkit-text-fill-color: #fff;
    background: rgba(255, 255, 255, .12);
    text-decoration: none;
  }
  .main-nav .btn-contact {
    margin-top: .4rem;
    min-height: 46px;
    border-radius: 12px;
    background: #1570ef;
    border-color: #1570ef;
    color: #fff;
    justify-content: center;
    font-size: .98rem;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(21, 112, 239, .34);
  }
  .main-nav .btn-contact:hover {
    background: #2b84ff;
    border-color: #2b84ff;
  }
  .main-nav.open { display: flex; }
  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 64px 0 0 0;
    background: rgba(0, 0, 0, .45);
    z-index: 2900;
    pointer-events: none;
  }
  .cards-grid,
  .cards-grid-all,
  .contact-form,
  .filters,
  .product-grid { grid-template-columns: 1fr; }
  .home-section,
  .home-section-collection,
  .home-section-faq,
  .home-section-resellers,
  .home-section-testimonials {
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
  }
  .card-premium { padding: 1rem; border-radius: 14px; }
  .contact-copy { position: static; top: auto; }
  .collection-mosaic { grid-template-columns: 1fr; }
  .collection-banner {
    margin-bottom: .85rem;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
  }
  .collection-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 46%;
  }
  .tech-store-links {
    justify-content: center;
  }
  .mosaic-video {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }
  .carousel-page { grid-template-columns: 1fr; }
  .testimonial {
    padding: .95rem;
  }
  .testimonial-avatar {
    width: 88px;
    height: 156px;
    border-radius: 12px;
    object-position: center top;
  }
  .testimonial-head {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: .68rem;
    min-height: auto;
  }
  .testimonial-meta h3 {
    font-size: 1.22rem;
    line-height: 1.08;
    margin-bottom: .36rem;
  }
  .testimonial-role {
    margin-top: 0;
    margin-bottom: .46rem;
    font-size: .9rem;
  }
  .testimonial-rating {
    margin-top: .15rem;
  }
  .testimonial-comment {
    margin-top: 14px;
    font-size: 1rem;
  }
  .field-wide,
  .actions,
  .field-full { grid-column: auto; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .home-section-faq .section-head-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: .45rem;
  }
  .home-section-faq .section-head {
    align-items: flex-start !important;
  }
  .home-section-faq .section-head .section-title {
    width: 100%;
    text-align: left;
  }
  .home-section-faq .section-head-actions .btn {
    width: 100%;
    min-height: 42px;
    padding: .5rem .45rem;
    font-size: .84rem;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }
  .section-cta.compact { flex-direction: column; align-items: flex-start; }
  .newsletter-row { grid-template-columns: 1fr; }
  .sizes-hero-head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: .45rem;
  }
  .sizes-back-to-product .btn {
    min-height: 30px;
    padding: .34rem .62rem;
    font-size: .74rem;
    line-height: 1.1;
    white-space: nowrap;
  }
  .sizes-back-label-full {
    display: none;
  }
  .sizes-back-label-short {
    display: inline;
  }
  .app-video-grid {
    grid-template-columns: 1fr;
  }
  .product-thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: .5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-bottom: .2rem;
  }
  .product-thumb {
    flex: 0 0 78px;
    scroll-snap-align: start;
  }
  .footer-grid h2 {
    font-size: 1.4rem;
    margin-bottom: .55rem;
  }
  .footer-links {
    gap: .4rem;
  }
  .footer-links a {
    min-height: 44px;
    padding: .55rem .75rem;
    font-size: 1.02rem;
    border-radius: 12px;
  }
  .gallery-modal-inner {
    width: calc(100% - 1rem);
    margin: 0 auto;
    padding: 1rem .72rem .8rem;
  }
  .gallery-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem 0;
  }
  .gallery-modal-close {
    top: .5rem;
    right: .5rem;
    width: 40px;
    height: 40px;
    font-size: 1.55rem;
  }
  .gallery-nav {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }
  .gallery-modal-thumb {
    flex-basis: 72px;
  }
}

.lm-widget {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: min(360px, calc(100vw - 2rem));
  background: #fff;
  border: 1px solid #d8deea;
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, .2);
  z-index: 3100;
  display: none;
}

.lm-widget.is-open {
  display: block;
}

.lm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .7rem .8rem;
  border-bottom: 1px solid #e4e9f1;
  font-size: .9rem;
  font-weight: 700;
}

.lm-header-main {
  display: flex;
  align-items: center;
  gap: .55rem;
  min-width: 0;
}

.lm-header-main span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lm-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #d9e0ec;
  flex: 0 0 28px;
}

.lm-close {
  border: 0;
  background: transparent;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: #475569;
}

.lm-body {
  padding: .85rem;
}

.lm-typing {
  margin: 0;
  color: #334155;
  font-size: .92rem;
  font-weight: 400;
  line-height: 1.3;
  display: inline-flex;
  align-items: center;
  gap: .06rem;
}

.lm-typing-dots {
  display: inline-flex;
  align-items: flex-end;
  gap: 1px;
  margin-left: 10px;
  line-height: 1;
}

.lm-typing-dots span {
  display: inline-block;
  font-size: 1.95rem;
  line-height: .8;
  font-weight: 800;
  animation: lmTypingWave 1.1s ease-in-out infinite;
  opacity: .45;
}

.lm-typing-dots span:nth-child(2) {
  animation-delay: .12s;
}

.lm-typing-dots span:nth-child(3) {
  animation-delay: .24s;
}

@keyframes lmTypingWave {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: .45;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.lm-title {
  margin: 0 0 .8rem;
  font-weight: 600;
  font-size: .95rem;
}

.lm-title-plain {
  font-weight: 400;
}

.lm-title-intro {
  font-size: .9rem;
  line-height: 1.45;
  font-weight: 400;
  white-space: pre-line;
}

.lm-intro-line {
  display: inline-block;
}

.lm-actions {
  display: grid;
  gap: .5rem;
}

.lm-choice {
  opacity: 0;
  transform: scale(.9) translateY(6px);
  transition: transform .22s ease, opacity .22s ease;
  pointer-events: none;
}

.lm-choice.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.lm-btn {
  width: 100%;
  border: 1px solid #d0d7e4;
  border-radius: 10px;
  background: #fff;
  color: #111827;
  font-size: .88rem;
  line-height: 1.35;
  text-align: left;
  padding: .55rem .62rem;
  cursor: pointer;
}

.lm-btn:hover {
  background: #f8fafc;
}

.lm-btn-primary {
  background: #1570ef;
  border-color: #1570ef;
  color: #fff;
}

.lm-btn-primary:hover {
  background: #0f5fd2;
}

.lm-form {
  display: grid;
  gap: .55rem;
}

.lm-form-inline {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: .5rem;
}

.lm-form-inline .lm-input {
  min-width: 0;
}

.lm-form-inline .lm-btn {
  width: auto;
  min-width: 130px;
  text-align: center;
  justify-content: center;
  white-space: nowrap;
}

.lm-input {
  width: 100%;
  border: 1px solid #d0d7e4;
  border-radius: 10px;
  padding: .58rem .65rem;
  font: inherit;
}

.lm-feedback {
  margin: .55rem 0 0;
  font-size: .84rem;
  color: #0f766e;
}

.lm-feedback.is-error {
  color: #b91c1c;
}

@media (max-width: 760px) {
  .lm-widget {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: .6rem;
    width: min(420px, calc(100vw - 1.2rem));
  }
}
