:root {
  --bg: #070709;
  --bg-2: #0d0f14;
  --panel: #11131a;
  --line: rgba(255, 255, 255, 0.08);
  --text: #eef0f4;
  --muted: rgba(238, 240, 244, 0.66);
  --orange: #ff6b1a;
  --orange-2: #ff9444;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius: 16px;
  --radius-sm: 12px;
  --font-body:
    "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-display: "Sekuya", "Oswald", serif;
  --shell: min(1180px, calc(100% - 40px));
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.02em;
  background:
    radial-gradient(
      1200px 700px at 20% -10%,
      rgba(255, 107, 26, 0.12),
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 100% 0%,
      rgba(255, 148, 68, 0.08),
      transparent 50%
    ),
    var(--bg);
  color: var(--text);
  line-height: 1.45;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--orange-2);
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--orange);
  color: #0a0a0c;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 9999;
  font-weight: 600;
}

.skip-link:focus {
  left: 10px;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

@media (max-width: 600px) {
  .shell h1,
  .shell h2,
  .shell h3 {
    word-break: break-all;
  }
}

h1,
h2,
h3,
.h-display {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 0.35em;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1em;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(7, 7, 9, 0.92),
    rgba(7, 7, 9, 0.65)
  );
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: conic-gradient(
    from 210deg,
    var(--orange),
    #2a1206,
    var(--orange-2),
    var(--orange)
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 12px 40px rgba(255, 107, 26, 0.25);
  position: relative;
  overflow: hidden;
}

.brand__mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 8px;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, 0.35),
      transparent 45%
    ),
    #0a0a0c;
  opacity: 0.9;
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__uci {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
}

.brand__full {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle {
  margin-left: auto;
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  position: relative;
}

.nav-toggle__bar {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    top 0.25s ease;
}

.nav-toggle__bar:nth-child(1) {
  top: 16px;
}
.nav-toggle__bar:nth-child(2) {
  top: 22px;
}
.nav-toggle__bar:nth-child(3) {
  top: 28px;
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}
.site-header.is-nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.site-header.is-nav-open .nav-toggle__bar:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.site-header__cluster {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  justify-content: flex-end;
}

.nav__list {
  list-style: none;
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.nav__link {
  text-decoration: none;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  padding: 5px;
  border-radius: 999px;
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav__link:hover {
  color: #fff;
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__link.is-active {
  color: #fff;
}

.uci-search {
  position: relative;
  width: min(260px, 34vw);
}

.uci-search__input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 12px 14px 12px 40px;
  outline: none;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
  background-image: linear-gradient(90deg, transparent, transparent);
}

.uci-search__input:focus {
  border-color: rgba(255, 107, 26, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.12);
}

.uci-search::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  transform: translateY(-50%);
  pointer-events: none;
}

.uci-search::after {
  content: "";
  position: absolute;
  left: 26px;
  top: calc(50% + 6px);
  width: 7px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(45deg);
  pointer-events: none;
}

.uci-search__suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(13, 15, 20, 0.96);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 80;
}

.uci-search__item {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.uci-search__item:hover {
  background: rgba(255, 107, 26, 0.08);
}

.uci-search__title {
  color: #fff;
  font-weight: 600;
}

.uci-search__meta {
  color: var(--muted);
  font-size: 0.85rem;
}

.site-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header__tools-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.site-tools-toggle {
  display: none;
}

@media (min-width: 1201px) {
  .site-tools-toggle {
    display: none !important;
  }
  .site-tools {
    display: flex !important;
    position: static;
    width: auto;
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    min-width: 0;
  }
}

.tool {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.tool:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 107, 26, 0.45);
  box-shadow: 0 14px 40px rgba(255, 107, 26, 0.12);
}

button.tool.tool--iconbtn {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  font: inherit;
}

.tool__icon--chevron {
  width: 10px;
  height: 10px;
  margin-top: -3px;
  border-right: 2px solid rgba(255, 255, 255, 0.88);
  border-bottom: 2px solid rgba(255, 255, 255, 0.88);
  transform: rotate(45deg);
  transition:
    transform 0.2s ease,
    margin 0.2s ease;
  background: transparent !important;
  mask: none !important;
  -webkit-mask: none !important;
}

.site-tools-toggle[aria-expanded="true"] .tool__icon--chevron {
  transform: rotate(225deg);
  margin-top: 3px;
}

.tool__icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.55));
  mask: radial-gradient(circle, #000 60%, transparent 62%) center/18px 18px
    no-repeat;
}

.tool__icon.tool__icon--svg {
  mask: none;
  -webkit-mask: none;
  background: none;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.88);
}

.tool__icon.tool__icon--svg svg {
  width: 22px;
  height: 22px;
  display: block;
}

.uci-pill {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #ff3d00);
  color: #0a0a0c;
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  padding: 0 6px;
  box-shadow: 0 10px 30px rgba(255, 107, 26, 0.35);
}

@media (max-width: 1200px) {
  .site-tools-toggle {
    display: grid;
  }
  .site-tools {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 90;
    box-sizing: border-box;
    width: max-content;
    min-width: 0;
    max-width: calc(100vw - 24px);
    padding: 8px 10px;
    gap: 8px;
    background: rgba(13, 15, 20, 0.98);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }
  .site-tools.is-open {
    display: flex;
  }
  .site-tools .tool {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    margin-inline: auto;
    display: grid;
    place-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0;
    overflow: visible;
  }
  .site-tools .tool > .tool__icon {
    margin: 0;
    justify-self: center;
    align-self: center;
  }
  .site-tools .tool--cart .tool__icon--svg {
    position: relative;
    top: 2px;
  }
}

@media (max-width: 991px) {
  .nav-toggle {
    display: inline-block;
  }
  .site-header__cluster {
    position: fixed;
    inset: 72px 14px auto 14px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(10, 12, 16, 0.96);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .site-header__cluster.is-open {
    display: flex;
  }
  .nav__list {
    flex-direction: column;
    gap: 4px;
  }
  .uci-search {
    width: 100%;
  }
  .site-header__tools-wrap {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .site-tools-toggle {
    display: none !important;
  }
  .site-tools {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    position: static;
    right: auto;
    left: auto;
    width: 100%;
    margin-top: 10px;
    padding: 0;
    min-width: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .site-tools .tool {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    margin-inline: 0;
  }
  .site-tools .tool--cart .tool__icon--svg {
    top: 0;
  }
}

.uci-lock {
  overflow: hidden;
}

.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 22px;
  font-family: var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 120deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0)
  );
  transform: rotate(0deg);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.btn:hover::before {
  opacity: 1;
  animation: uci-spin 2.6s linear infinite;
}

@keyframes uci-spin {
  to {
    transform: rotate(360deg);
  }
}

.btn--primary {
  color: #0a0a0c;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 18px 60px rgba(255, 107, 26, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgba(255, 107, 26, 0.35);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid var(--line);
}

.btn--ghost:hover {
  border-color: rgba(255, 107, 26, 0.45);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: min(92vh, 900px);
  overflow: clip;
  border-bottom: 1px solid var(--line);
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1.1s ease,
    transform 8s linear;
}

.hero__slide.is-on {
  opacity: 1;
  transform: scale(1);
}

.hero__slide picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 600px at 20% 20%,
      rgba(255, 107, 26, 0.22),
      transparent 55%
    ),
    linear-gradient(120deg, rgba(7, 7, 9, 0.15), rgba(7, 7, 9, 0.82));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  min-height: min(92vh, 900px);
  display: grid;
  align-content: end;
  padding: 120px 0 72px;
}

.hero__kicker {
  font-family: var(--font-display);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.hero__title span {
  display: inline-block;
  animation: uci-rise 0.9s ease both;
}

.hero__title span:nth-child(2) {
  animation-delay: 0.08s;
}

@keyframes uci-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__sub {
  max-width: 52ch;
  font-size: 1.1rem;
  margin: 14px 0 22px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__dots {
  position: absolute;
  right: 18px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  cursor: pointer;
}

.hero__dot.is-active {
  background: var(--orange);
  border-color: rgba(255, 107, 26, 0.8);
  box-shadow: 0 0 0 6px rgba(255, 107, 26, 0.12);
}

.section {
  padding: 72px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
  flex-wrap: wrap;
  min-width: 0;
}

.section__head h2 {
  min-width: 0;
}

.link-arrow {
  text-decoration: none;
  color: var(--orange-2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.link-arrow:hover {
  color: #fff;
}

.grid-products {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.card-product {
  grid-column: span 4;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(0);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.card-product:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 26, 0.35);
}

.grid-products.grid-products--museum {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}

.grid-products.grid-products--museum .card-product {
  grid-column: auto;
  min-width: 0;
  width: 100%;
}

.card-product__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #0a0b10;
}

.card-product__media picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.card-product__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.001);
  transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card-product:hover .card-product__media img {
  transform: scale(1.08);
}

.card-product__badges {
  position: absolute;
  left: 12px;
  top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 7, 9, 0.65);
  backdrop-filter: blur(10px);
}

.badge--hot {
  border-color: rgba(255, 107, 26, 0.45);
  color: #fff;
}

.card-product__body {
  padding: 16px 16px 18px;
  display: grid;
  gap: 10px;
}

.price {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: #fff;
}

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

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn--sm {
  padding: 10px 14px;
  font-size: 0.78rem;
}

.grid-cats {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.cat-card {
  grid-column: span 3;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  min-height: 150px;
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  isolation: isolate;
}

.cat-card picture,
.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transform: scale(1.02);
  transition:
    transform 0.65s ease,
    opacity 0.35s ease;
  z-index: 0;
}

.cat-card:hover img {
  transform: scale(1.12);
  opacity: 0.75;
}

.cat-card__label {
  position: relative;
  z-index: 1;
  padding: 16px;
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.65);
}

.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 26, 0.22),
    rgba(7, 7, 9, 0.82)
  );
  z-index: 0;
}

.grid-why {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.why {
  grid-column: span 4;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.why__title {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.grid-reviews {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.review {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  grid-template-columns: minmax(72px, 108px) minmax(0, 1fr);
  align-items: stretch;
}

.review__photo {
  position: relative;
  overflow: hidden;
  min-width: 0;
  aspect-ratio: 4 / 5;
  background: #0a0b10;
}

.review__photo picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.review__photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
  transition: transform 0.65s ease;
}

.review:hover .review__photo img {
  transform: scale(1.06);
}

.review__body {
  padding: 16px;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

#contenu {
  padding-bottom: 3rem;
}

.site-footer {
  margin-top: 2.5rem;
  padding: 56px 0 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(
      800px 400px at 10% 0%,
      rgba(255, 107, 26, 0.1),
      transparent 55%
    ),
    #050507;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 22px;
  padding-bottom: 34px;
}

.footer-brand {
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-title {
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0 0 10px;
  color: #fff;
}

.footer-title--spaced {
  margin-top: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
}

.footer-links--social a {
  word-break: break-word;
}

.footer-social-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 100%;
  line-height: 1.35;
}

.footer-social-link__icon {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--orange-2);
  opacity: 0.95;
}

.footer-social-link__icon svg {
  display: block;
}

.footer-social-link:hover .footer-social-link__icon {
  color: #fff;
}

.footer-social-link__label {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-address,
.footer-meta {
  color: var(--muted);
  margin: 0 0 10px;
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pay {
  margin: 0;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.pay img {
  height: 28px;
  width: auto;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 0 22px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
}

.uci-cookie {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 120;
}

.uci-cookie__inner {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(10, 12, 16, 0.92);
  backdrop-filter: blur(14px);
  padding: 14px 14px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}

.uci-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.uci-chat {
  position: fixed;
  right: 16px;
  bottom: 20px;
  width: min(380px, calc(100vw - 32px));
  z-index: 135;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(10, 12, 16, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  max-height: min(520px, calc(100vh - 190px));
}

.uci-chat[hidden] {
  display: none !important;
}

.uci-chat__head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.uci-chat__sub {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 4px;
}

.uci-chat__close {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  cursor: pointer;
}

.uci-chat__log {
  padding: 12px;
  overflow: auto;
  display: grid;
  gap: 10px;
}

.uci-chat__msg {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.95rem;
}

.uci-chat__msg--user {
  margin-left: 18px;
  background: rgba(255, 107, 26, 0.12);
  border-color: rgba(255, 107, 26, 0.25);
  color: #fff;
}

.uci-chat__msg--bot {
  margin-right: 18px;
}

.uci-chat__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.uci-chat__input {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 12px 12px;
  outline: none;
}

.uci-toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translate3d(-50%, 10px, 0);
  z-index: 200;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 107, 26, 0.35);
  background: rgba(10, 12, 16, 0.92);
  color: #fff;
  opacity: 0;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  max-width: min(560px, calc(100vw - 28px));
  text-align: center;
}

.uci-toast.is-visible {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

/* boutique */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.chip {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  padding: 10px 12px;
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.chip.is-on {
  border-color: rgba(255, 107, 26, 0.55);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.1);
}

/* tables */
.uci-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.uci-table th,
.uci-table td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  color: var(--muted);
}

.uci-table th {
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

@media (max-width: 600px) {
  .uci-product-delivery {
    width: 100%;
    min-width: 0;
  }
  .uci-product-delivery .uci-table thead {
    display: none;
  }
  .uci-product-delivery .uci-table tbody tr {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 14px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
  }
  .uci-product-delivery .uci-table tbody td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
  }
  .uci-product-delivery .uci-table tbody td:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .uci-product-delivery .uci-table tbody td[data-label]::before {
    content: attr(data-label);
    display: block;
    color: #fff;
    font-family: var(--font-display);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.72rem;
    margin-bottom: 6px;
  }
}

/* modal */
.uci-modal[hidden] {
  display: none;
}

.uci-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 18px;
}

.uci-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.uci-modal__panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(86vh, 900px);
  overflow: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(10, 12, 16, 0.96);
  box-shadow: var(--shadow);
  padding: 16px;
}

.uci-modal__close {
  position: sticky;
  top: 0;
  float: right;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  cursor: pointer;
}

[data-quick-modal] .layout-split > .uci-zoom {
  max-width: 500px;
  width: 100%;
}

/* layout helpers */
.layout-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding-top: 1rem;
  padding-bottom: 1.25rem;
}

.articles-toolbar__row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.articles-toolbar__col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.articles-toolbar__col--sort {
  flex: 0 1 280px;
  min-width: 200px;
}

.articles-toolbar__col--search {
  flex: 1 1 320px;
  min-width: 220px;
}

.articles-toolbar__field-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.articles-toolbar__control {
  width: 100%;
  border-radius: 14px;
  min-height: 48px;
  box-sizing: border-box;
}

[data-articles-grid].grid-products > .card-product {
  grid-column: span 6;
}

@media (max-width: 660px) {
  [data-articles-grid].grid-products > .card-product {
    grid-column: span 12;
  }
  .articles-toolbar__row {
    flex-direction: column;
    align-items: stretch;
  }
  .articles-toolbar__col--sort,
  .articles-toolbar__col--search {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
  }
}

.contact-messenger {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  overflow: hidden;
  padding: 4px;
  margin: 0 0 1em;
  border-radius: 18px;
}

.page-hero {
  padding: 46px 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 991px) {
  .card-product {
    grid-column: span 6;
  }
  .cat-card {
    grid-column: span 6;
  }
  .why {
    grid-column: span 6;
  }
  .review {
    grid-template-columns: minmax(72px, 96px) minmax(0, 1fr);
  }
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .layout-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .card-product {
    grid-column: span 12;
  }
  .cat-card {
    grid-column: span 12;
  }
  .why {
    grid-column: span 12;
  }
  .review {
    grid-template-columns: 1fr;
  }
  .review__photo {
    aspect-ratio: 16 / 9;
    max-height: 320px;
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

/* motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

.uci-zoom {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a0b10;
}

.uci-zoom picture,
.uci-zoom img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.001);
  transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.uci-zoom:hover img {
  transform: scale(1.07);
}

.thumb {
  border: 1px solid var(--line);
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  width: 92px;
}

.thumb img {
  display: block;
}

.thumb.is-active {
  outline: 2px solid rgba(255, 107, 26, 0.65);
  outline-offset: 2px;
}

.tl {
  display: grid;
  gap: 12px;
  margin: 12px 0 18px;
  padding-left: 14px;
  border-left: 2px solid rgba(255, 107, 26, 0.35);
}

.tl__year {
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-2);
  margin-bottom: 6px;
}

.article .uci-zoom {
  margin-bottom: 16px;
}

.article h1 {
  margin-top: 8px;
}

.cart-row {
  display: grid;
  grid-template-columns: 140px 1fr 160px 160px;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-row__media img {
  width: 100%;
  height: 90px;
  object-fit: cover;
}

.cart-row__qty input {
  width: 72px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.cart-row__sub {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.cart-checkout {
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 12px;
  max-width: 520px;
}

.cart-checkout label {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.cart-checkout input,
.cart-checkout textarea {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 12px;
  outline: none;
}

@media (max-width: 991px) {
  .cart-row {
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto auto;
  }
  .cart-row__qty,
  .cart-row__sub {
    grid-column: 2 / -1;
  }
}

/* Page « Jouez avec nous » — tops partenaires & jeu responsable */
.uci-tops-disclaimer {
  max-width: 820px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 107, 26, 0.35);
  background: rgba(255, 107, 26, 0.06);
}

.uci-tops-disclaimer p {
  margin: 0 0 12px;
}

.uci-tops-disclaimer p:last-child {
  margin-bottom: 0;
}

.uci-tops-section__title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0 0 8px;
  color: var(--orange-2);
}

.uci-tops-section__lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Tops opérateurs — même logique que ventocreativo.net/top (.c8SSpq__article) */
.uci-tops-page .c8SSpq__top .c8SSpq__container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.uci-tops-page .c8SSpq__top .top-page__top-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.uci-tops-page .c8SSpq__top .top-page__top-list > li {
  margin: 0;
  padding: 0;
}

.uci-tops-page .c8SSpq__top .c8SSpq__article {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(
    165deg,
    rgba(255, 107, 26, 0.1),
    rgba(17, 19, 26, 0.96)
  );
  padding: 20px 18px;
  display: grid;
  grid-template-columns: minmax(96px, 0.95fr) minmax(0, 1.2fr) auto minmax(
      120px,
      1fr
    );
  align-items: center;
  gap: 12px clamp(10px, 2vw, 26px);
  width: 100%;
  box-shadow: var(--shadow);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.uci-tops-page .c8SSpq__top .c8SSpq__article > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.uci-tops-page .c8SSpq__top .c8SSpq__img-container {
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-sm);
  outline: none;
}

.uci-tops-page .c8SSpq__top .c8SSpq__img-container:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 148, 68, 0.55);
}

.uci-tops-page .c8SSpq__top .c8SSpq__img-container img {
  object-fit: contain;
  width: 100%;
  max-width: 200px;
  height: auto;
  max-height: 56px;
}

.uci-tops-page .c8SSpq__top .c8SSpq__bonus {
  font-size: clamp(0.88rem, 0.78rem + 0.45vw, 1.1rem);
  line-height: 1.25;
  text-align: center;
  font-weight: 600;
  color: var(--text);
}

.uci-tops-page .c8SSpq__top .c8SSpq__bonus a {
  color: inherit;
  text-decoration: none;
}

.uci-tops-page .c8SSpq__top .c8SSpq__bonus a:hover {
  color: var(--orange-2);
  text-decoration: underline;
}

.uci-tops-page .c8SSpq__top .c8SSpq__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  font-weight: 600;
  color: var(--text);
}

.uci-tops-page .c8SSpq__top .c8SSpq__rating .c8SSpq__score {
  font-size: clamp(1.3rem, 1rem + 1.3vw, 1.95rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--orange);
}

.uci-tops-page .c8SSpq__top .c8SSpq__rating .c8SSpq__score-suffix {
  font-size: 0.52em;
  font-weight: 600;
  opacity: 0.72;
  margin-left: 0.06em;
  color: var(--muted);
}

.uci-tops-page .c8SSpq__top .c8SSpq__stars {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.uci-tops-page .c8SSpq__top .c8SSpq__stars--10 {
  gap: 3px;
  max-width: 11.5rem;
}

.uci-tops-page .c8SSpq__top .c8SSpq__stars img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.uci-tops-page .c8SSpq__top .c8SSpq__btn-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.uci-tops-page .c8SSpq__top .c8SSpq__top-cta {
  width: 100%;
  max-width: 220px;
  text-align: center;
  box-sizing: border-box;
}

.uci-tops-page .c8SSpq__top .c8SSpq__pay {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.uci-tops-page .c8SSpq__top .c8SSpq__pay li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 22px;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.uci-tops-page .c8SSpq__top .c8SSpq__pay-text {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1f28;
}

@media (hover: hover) {
  .uci-tops-page .c8SSpq__top .c8SSpq__article:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.42);
  }
}

@media (max-width: 820px) {
  .uci-tops-page .c8SSpq__top .c8SSpq__article {
    grid-template-columns: 1fr;
    padding: 18px 14px;
    justify-items: center;
    text-align: center;
  }

  .uci-tops-page .c8SSpq__top .c8SSpq__rating {
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: center;
  }

  .uci-tops-page .c8SSpq__top .c8SSpq__pay {
    display: none;
  }

  .uci-tops-page .c8SSpq__top .c8SSpq__top-cta {
    max-width: none;
  }
}

.uci-tops-tips {
  margin: 0;
  padding-left: 1.15em;
  max-width: 760px;
  color: var(--text);
}

.uci-tops-tips li {
  margin-bottom: 12px;
}

.uci-tops-tips li:last-child {
  margin-bottom: 0;
}

.c8SSpq__logos {
  list-style: none;
  margin: 0;
  padding: 16px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 18px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(17, 19, 26, 0.85);
  justify-content: center;
}

.c8SSpq__logos li {
  margin: 0;
  display: flex;
  align-items: center;
}

.c8SSpq__logos a {
  display: flex;
  align-items: center;
  border-radius: 8px;
  outline: none;
}

.c8SSpq__logos a:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 148, 68, 0.55);
}

.c8SSpq__logos img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 40px;
  object-fit: contain;
}

.c8SSpq__logos li img[aria-hidden="true"] {
  height: 40px;
  width: 40px;
}
