:root {

  --noir: #080808;

  --noir2: #141412;

  --noir3: #f7f6f2;

  --rouge: #0b0b0b;

  --rouge2: #30302c;

  --gris: #77736b;

  --gris2: #d7d4ca;

  --blanc: #080808;

  --blanc2: rgba(8,8,8,0.72);

  --blanc3: rgba(8,8,8,0.44);

  --blanc4: rgba(8,8,8,0.10);

  --paper: #ffffff;

  --tile: #d6d2c9;

  --tile-dark: #8e897f;

  --line: rgba(8,8,8,0.12);

  --soft-shadow: 0 24px 70px rgba(8,8,8,0.14);

}



*, *::before, *::after {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}



html {

  scroll-behavior: smooth;

}



body {

  background:

    linear-gradient(180deg, rgba(255,255,255,0.70), rgba(246,245,241,0.96)),

    repeating-linear-gradient(90deg, transparent 0 118px, rgba(8,8,8,0.12) 119px, transparent 120px),

    repeating-linear-gradient(0deg, transparent 0 118px, rgba(8,8,8,0.10) 119px, transparent 120px),

    var(--tile);

  color: #080808;

  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Arial, sans-serif;

  font-weight: 300;

  overflow-x: hidden;

}



::selection {

  background: #080808;

  color: #fff;

}



/* --- SCROLLBAR --- */

::-webkit-scrollbar {

  width: 4px;

}



::-webkit-scrollbar-track {

  background: #f7f6f2;

}



::-webkit-scrollbar-thumb {

  background: #080808;

  border-radius: 2px;

}



/* --- NAV --- */

nav {

  position: fixed;

  top: 0;

  width: 100%;

  z-index: 100;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 0 48px;

  height: 74px;

  background: rgba(255,255,255,0.86);

  border-bottom: 1px solid rgba(8,8,8,0.10);

  box-shadow: 0 10px 34px rgba(8,8,8,0.07);

}



.nav-logo {

  display: flex;

  align-items: center;

  gap: 10px;

  text-decoration: none;

}



.nav-logo-bar {

  width: 5px;

  height: 30px;

  background: #080808;

  border-radius: 1px;

}



.nav-logo-text {

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "DM Sans", sans-serif;

  font-size: 34px;

  font-weight: 700;

  color: #080808;

  letter-spacing: -1.7px;

}



.nav-links {

  display: flex;

  gap: 36px;

  list-style: none;

}



.nav-links a {

  color: rgba(8,8,8,0.62);

  text-decoration: none;

  font-size: 13px;

  letter-spacing: 1.2px;

  text-transform: uppercase;

  transition: color .25s;

}



.nav-links a:hover {

  color: #080808;

}



.nav-right {

  display: flex;

  align-items: center;

  gap: 20px;

}



.nav-cart {

  position: relative;

  cursor: pointer;

  font-size: 18px;

  opacity: 0.7;

  transition: opacity .2s;

}



.nav-cart:hover {

  opacity: 1;

}



.cart-badge {

  position: absolute;

  top: -6px;

  right: -8px;

  background: #080808;

  color: #fff;

  font-size: 9px;

  width: 16px;

  height: 16px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

}



.btn-nav {

  background: #080808;

  color: #fff;

  border: 1px solid #080808;

  cursor: pointer;

  padding: 10px 22px;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "DM Sans", sans-serif;

  font-size: 12px;

  letter-spacing: 1px;

  text-transform: uppercase;

  border-radius: 6px;

  transition: background .2s, transform .15s;

}



.btn-nav:hover {

  background: #30302c;

  border-color: #30302c;

  transform: translateY(-1px);

  box-shadow: 0 14px 34px rgba(8,8,8,0.16);

}



/* --- HERO --- */

.hero {

  min-height: 100vh;

  display: flex;

  align-items: center;

  padding: 72px 0 0;

  position: relative;

  overflow: hidden;

  color: #fff;

  background:

    radial-gradient(circle at 74% 38%, rgba(255,255,255,0.12), transparent 28%),

    linear-gradient(90deg, rgba(8,8,8,0.04), rgba(8,8,8,0.34) 48%, rgba(8,8,8,0.88)),

    repeating-linear-gradient(90deg, transparent 0 118px, rgba(255,255,255,0.08) 119px, transparent 120px),

    repeating-linear-gradient(0deg, transparent 0 118px, rgba(255,255,255,0.06) 119px, transparent 120px),

    linear-gradient(135deg, #0a0a09 0%, #181816 52%, #4f4a42 100%);

}



.hero-bg {

  position: absolute;

  inset: 0;

  background: transparent;

}



.hero-bg-right {

  position: absolute;

  top: 0;

  right: 0;

  width: 50%;

  height: 100%;

  background: rgba(255,255,255,0.045);

}



.hero-line-v {

  position: absolute;

  top: 0;

  left: 50%;

  height: 100%;

  width: 0.5px;

  background: rgba(255,255,255,0.12);

}



.hero-circle {

  display: none;

}



.hero-redbar {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 5px;

  background: #fff;

}



.hero-inner {

  position: relative;

  z-index: 2;

  width: 100%;

  max-width: 1200px;

  margin: 0 auto;

  padding: 0 48px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 60px;

  min-height: calc(100vh - 72px);

}



.hero-left {

  display: flex;

  flex-direction: column;

}



.hero-eyebrow {

  display: flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 28px;

  animation: fadeUp .7s ease both;

}



.eyebrow-line {

  width: 26px;

  height: 1.5px;

  background: #fff;

}



.eyebrow-text {

  font-size: 10px;

  letter-spacing: 3px;

  text-transform: uppercase;

  color: #fff;

  font-family: 'Cormorant Garamond', serif;

}



.hero-title {

  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Arial, sans-serif;

  font-size: clamp(64px, 8vw, 92px);

  font-weight: 750;

  line-height: 0.9;

  letter-spacing: -2.4px;

  color: #fff;

  animation: fadeUp .8s .1s ease both;

  margin-bottom: 6px;

}



.hero-title span {

  font-style: italic;

  color: #fff;

}



.hero-sep {

  width: 140px;

  height: 1.2px;

  background: #fff;

  margin: 24px 0;

  animation: fadeUp .8s .2s ease both;

}



.hero-sep2 {

  width: 40px;

  height: 0.5px;

  background: rgba(255,255,255,0.36);

  margin: -20px 0 24px 0;

  animation: fadeUp .8s .2s ease both;

}



.hero-sub {

  font-family: 'Cormorant Garamond', serif;

  font-size: 15px;

  font-weight: 300;

  font-style: italic;

  color: rgba(255,255,255,0.68);

  letter-spacing: 0.3px;

  margin-bottom: 36px;

  animation: fadeUp .8s .3s ease both;

}



.hero-title-main {

  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Arial, sans-serif;

  font-size: clamp(72px, 10vw, 120px);

  font-weight: 800;

  line-height: 1;

  letter-spacing: -3px;

  color: #fff;

  animation: fadeUp .8s ease both;

  margin-bottom: 18px;

}



.hero-certification {

  font-size: 22px;

  font-weight: 300;

  letter-spacing: 1.2px;

  color: rgba(255,255,255,0.85);

  margin-bottom: 48px;

  animation: fadeUp .8s .1s ease both;

}



.hero-ctas {

  display: flex;

  gap: 14px;

  flex-wrap: wrap;

  animation: fadeUp .8s .4s ease both;

}



.btn-primary {

  background: #080808;

  color: #fff;

  border: 1px solid #080808;

  cursor: pointer;

  padding: 14px 32px;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "DM Sans", sans-serif;

  font-size: 12px;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  border-radius: 7px;

  transition: background .2s, transform .15s, box-shadow .2s;

}



.btn-primary:hover {

  background: #30302c;

  border-color: #30302c;

  transform: translateY(-2px);

  box-shadow: 0 8px 28px rgba(8,8,8,0.35);

}



.btn-secondary {

  background: rgba(255,255,255,0.08);

  color: #fff;

  border: 1px solid rgba(255,255,255,0.24);

  cursor: pointer;

  padding: 14px 32px;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "DM Sans", sans-serif;

  font-size: 12px;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  border-radius: 7px;

  transition: border-color .2s, color .2s, transform .15s;

}



.btn-secondary:hover {

  background: rgba(255,255,255,0.15);

  border-color: rgba(255,255,255,0.42);

  color: #fff;

  transform: translateY(-2px);

}



.hero-trust {

  margin-top: 52px;

  padding-top: 24px;

  border-top: 0.5px solid rgba(255,255,255,0.10);

  display: flex;

  gap: 32px;

  animation: fadeUp .8s .5s ease both;

}



.trust-item {

  display: flex;

  align-items: flex-start;

  gap: 10px;

}



.trust-icon {

  width: 28px;

  height: 28px;

  background: rgba(255,255,255,0.10);

  border: 1px solid rgba(255,255,255,0.14);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 12px;

  flex-shrink: 0;

}



.trust-text p {

  font-size: 11px;

  color: #fff;

  letter-spacing: 0.2px;

}



.trust-text small {

  font-size: 9.5px;

  color: rgba(255,255,255,0.68);

  letter-spacing: 0.3px;

}



/* --- PHONE MOCK --- */

.hero-right {

  display: flex;

  justify-content: center;

  align-items: center;

  position: relative;

  animation: fadeUp .9s .2s ease both;

}



.phone-wrap {

  position: relative;

  display: flex;

  justify-content: center;

  min-width: 300px;

  min-height: 360px;

  align-items: center;

}



.phone-glow {

  position: absolute;

  width: 200px;

  height: 200px;

  background: radial-gradient(circle, rgba(255,255,255,0.13), transparent 70%);

  top: 50%;

  left: 50%;

  transform: translate(-50%,-50%);

  pointer-events: none;

}



.phone {

  width: 270px;

  height: 330px;

  background: url("https://store.storeimages.cdn-apple.com/4982/as-images.apple.com/is/iphone16pro-digitalmat-gallery-1-202409_GEO_US_FMT_WHH?wid=560&hei=520&fmt=png-alpha&qlt=95") center / contain no-repeat;

  filter: drop-shadow(0 42px 76px rgba(0,0,0,0.56));

  position: relative;

}



.phone-body {

  display: none;

}



.badge-float {

  position: absolute;

  background: transparent;

  border-radius: 10px;

  padding: 8px 14px;

  animation: float2 3.5s ease-in-out infinite;

}



.badge-float.badge-new {

  top: 20px;

  left: -60px;

  background: rgba(255,255,255,0.10);

  border: 1px solid rgba(255,255,255,0.14);

  animation-delay: 0.5s;

  display: flex;

  align-items: center;

  gap: 7px;

  padding: 7px 12px;

}



.badge-float.badge-prix {

  top: 48%;

  right: -70px;

  background: #fff;

  color: #080808;

  animation-delay: 1s;

  box-shadow: 0 18px 44px rgba(8,8,8,0.20);

}



.badge-float.badge-garantie {

  bottom: 60px;

  left: -60px;

  background: rgba(255,255,255,0.10);

  border: 1px solid rgba(255,255,255,0.14);

  animation-delay: 1.5s;

  padding: 7px 12px;

}



@keyframes float2 {

  0%, 100% { transform: translateY(0px); }

  50% { transform: translateY(-8px); }

}



.badge-dot {

  width: 7px;

  height: 7px;

  background: #fff;

  border-radius: 50%;

}



.badge-label {

  font-size: 10px;

  letter-spacing: 0.5px;

  color: #fff;

  font-family: 'DM Sans', sans-serif;

}



.badge-price-label {

  font-size: 8px;

  color: rgba(8,8,8,0.58);

  letter-spacing: 0.5px;

  font-family: 'DM Sans', sans-serif;

}



.badge-price-val {

  font-size: 13px;

  color: #080808;

  font-family: 'Cormorant Garamond', serif;

  font-weight: 600;

}



.badge-connector {

  position: absolute;

  top: 50%;

  left: 100%;

  width: 10px;

  height: 1.5px;

  background: #fff;

  transform: translateY(-50%);

}



/* --- SECTION TITRE --- */

.section {

  padding: 96px 0;

  background: transparent;

}



.section-inner {

  max-width: 1200px;

  margin: 0 auto;

  padding: 0 48px;

}



.section-header {

  margin-bottom: 56px;

}



.section-eyebrow {

  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 16px;

}



.sec-line {

  width: 20px;

  height: 1.5px;

  background: #080808;

}



.sec-eye {

  font-size: 10px;

  letter-spacing: 3px;

  text-transform: uppercase;

  color: #080808;

  font-family: 'Cormorant Garamond', serif;

}



.section-title {

  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Arial, sans-serif;

  font-size: clamp(36px, 4vw, 52px);

  font-weight: 750;

  line-height: 1;

  letter-spacing: -2.4px;

  color: #080808;

}



.section-title em {

  font-style: italic;

  color: #080808;

}



/* --- CATEGORIES --- */

.cats {

  background:

    linear-gradient(180deg, rgba(255,255,255,0.74), rgba(245,244,240,0.92)),

    repeating-linear-gradient(90deg, transparent 0 118px, rgba(8,8,8,0.10) 119px, transparent 120px),

    repeating-linear-gradient(0deg, transparent 0 118px, rgba(8,8,8,0.08) 119px, transparent 120px),

    var(--tile);

}



.cats-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 18px;

  border: 0;

  border-radius: 12px;

}



.cat-card {

  background: rgba(255,255,255,0.92);

  color: #080808;

  border: 1px solid var(--line);

  border-radius: 8px;

  box-shadow: 0 1px 0 rgba(8,8,8,0.04);

  padding: 36px 24px;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 12px;

  cursor: pointer;

  transition: background .25s, transform .2s, box-shadow .25s;

  position: relative;

  overflow: hidden;

}



.cat-card::after {

  content: '';

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  height: 2px;

  background: #080808;

  transform: scaleX(0);

  transform-origin: left;

  transition: transform .3s;

}



.cat-card:hover {

  background: #fff;

  border-color: rgba(8,8,8,0.22);

  box-shadow: var(--soft-shadow);

}



.cat-card:hover::after {

  transform: scaleX(1);

}



.cat-icon {

  width: 96px;

  height: 82px;

  font-size: 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  filter: drop-shadow(0 16px 18px rgba(8,8,8,0.16));

}



.cat-name {

  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Arial, sans-serif;

  font-size: 20px;

  font-weight: 650;

  letter-spacing: -0.3px;

  color: #080808;

}



.cat-count {

  font-size: 11px;

  color: rgba(8,8,8,0.46);

  letter-spacing: 0.5px;

}



.cat-arrow {

  margin-top: auto;

  color: #080808;

  font-size: 18px;

  transition: transform .25s;

}



.cat-card:hover .cat-arrow {

  transform: translateX(6px);

}



/* --- IMAGES CATEGORIES --- */

.cat-card:nth-child(1) .cat-icon {

  background-image: url("/images/apple.png");

  background-size: contain;

}



.cat-card:nth-child(2) .cat-icon {

  background-image: url("/images/android.png");

  background-size: contain;

}



.cat-card:nth-child(3) .cat-icon {

  background-image: url("/images/laptop.png");

  background-size: contain;

}



.cat-card:nth-child(4) .cat-icon {

  background-image: url("/images/ps5.png");

  background-size: contain;

}



/* --- PRODUITS --- */

.products-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

}



.product-card {

  background: rgba(255,255,255,0.92);

  color: #080808;

  border: 1px solid var(--line);

  border-radius: 8px;

  box-shadow: 0 1px 0 rgba(8,8,8,0.04);

  overflow: hidden;

  cursor: pointer;

  transition: transform .25s, border-color .25s, box-shadow .25s;

  position: relative;

}



.product-card:hover {

  transform: translateY(-6px);

  border-color: rgba(8,8,8,0.22);

  box-shadow: var(--soft-shadow);

}



.product-img-wrap {

  background:

    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(217,214,205,0.78)),

    repeating-linear-gradient(90deg, rgba(8,8,8,0.07) 0 1px, transparent 1px 82px),

    repeating-linear-gradient(0deg, rgba(8,8,8,0.055) 0 1px, transparent 1px 82px);

  height: 220px;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  overflow: hidden;

}



.product-img {

  line-height: 0;

  font-size: 0;

}



.real-product-img {

  display: block;

  width: 90%;

  height: 195px;

  object-fit: contain;

  margin: 0 auto;

  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);

  filter: drop-shadow(0 12px 24px rgba(8,8,8,0.12));

}



.product-card:hover .real-product-img,

.product-card:hover .product-img {

  transform: scale(1.06) translateY(-4px);

}



.product-badge {

  position: absolute;

  top: 12px;

  left: 12px;

  background: #080808;

  color: #fff;

  font-size: 9px;

  letter-spacing: 1px;

  text-transform: uppercase;

  padding: 4px 10px;

  border-radius: 5px;

  font-family: 'DM Sans', sans-serif;

}



.product-badge.badge-promo {

  background: #fff;

  color: #080808;

  border: 1px solid rgba(8,8,8,0.16);

}



.product-info {

  padding: 20px 20px 22px;

}



.product-name {

  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Arial, sans-serif;

  font-size: 18px;

  font-weight: 650;

  letter-spacing: -0.3px;

  margin-bottom: 4px;

  color: #080808;

}



.product-sub {

  font-size: 11px;

  color: rgba(8,8,8,0.46);

  letter-spacing: 0.3px;

  margin-bottom: 14px;

}



.product-price-row {

  display: flex;

  align-items: center;

  justify-content: space-between;

}



.product-price {

  font-family: 'Cormorant Garamond', serif;

  font-size: 20px;

  font-weight: 600;

  color: #080808;

}



.product-price-old {

  font-size: 12px;

  color: rgba(8,8,8,0.46);

  text-decoration: line-through;

  margin-left: 6px;

  font-family: 'DM Sans', sans-serif;

}



.btn-add {

  background: #080808;

  color: #fff;

  border: 1px solid #080808;

  cursor: pointer;

  width: 36px;

  height: 36px;

  border-radius: 8px;

  font-size: 18px;

  line-height: 1;

  transition: background .2s, transform .15s;

  display: flex;

  align-items: center;

  justify-content: center;

}



.btn-add:hover {

  background: #30302c;

  border-color: #30302c;

  transform: scale(1.1);

  box-shadow: 0 14px 34px rgba(8,8,8,0.16);

}



/* --- FILTRE TABS --- */

.filter-tabs {

  display: flex;

  gap: 4px;

  margin-bottom: 36px;

  flex-wrap: wrap;

}



.filter-tab {

  background: rgba(255,255,255,0.80);

  border: 1px solid rgba(8,8,8,0.12);

  color: rgba(8,8,8,0.58);

  padding: 8px 20px;

  border-radius: 8px;

  font-size: 11px;

  letter-spacing: 1px;

  text-transform: uppercase;

  cursor: pointer;

  transition: all .2s;

  font-family: 'DM Sans', sans-serif;

}



.filter-tab:hover, .filter-tab.active {

  background: #080808;

  border-color: #080808;

  color: #fff;

}



/* --- BANNER PROMO --- */

.promo-banner {

  margin: 0 0 20px;

  background:

    linear-gradient(120deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),

    #0b0b0b;

  border: 1px solid rgba(255,255,255,0.14);

  border-radius: 8px;

  box-shadow: var(--soft-shadow);

  padding: 48px;

  display: grid;

  grid-template-columns: 1fr auto;

  align-items: center;

  gap: 24px;

  position: relative;

  overflow: hidden;

  color: #fff;

}



.promo-banner::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 4px;

  height: 100%;

  background: #fff;

}



.promo-title {

  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Arial, sans-serif;

  font-size: clamp(28px, 3vw, 40px);

  font-weight: 750;

  letter-spacing: -2.4px;

  color: #fff;

}



.promo-title em {

  font-style: italic;

  color: #fff;

}



.promo-sub {

  font-size: 13px;

  color: #fff;

  margin-top: 8px;

  margin-bottom: 24px;

  font-style: italic;

  font-family: 'Cormorant Garamond', serif;

}



.promo-deco {

  position: absolute;

  right: 48px;

  top: 50%;

  transform: translateY(-50%);

  width: 240px;

  height: 200px;

  font-size: 0;

  opacity: 1;

  background: url("/images/promo.png") center / contain no-repeat;

  pointer-events: none;

  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.15));

  transition: transform 0.3s ease, filter 0.3s ease;

}



.promo-banner:hover .promo-deco {

  transform: translateY(-54%) scale(1.05);

  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.22));

}



/* --- ACCESSOIRES GRID --- */

.acc-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 16px;

}



.acc-card {

  background: rgba(255,255,255,0.92);

  color: #080808;

  border: 1px solid var(--line);

  border-radius: 8px;

  box-shadow: 0 1px 0 rgba(8,8,8,0.04);

  padding: 24px 18px 20px;

  display: flex;

  flex-direction: column;

  gap: 10px;

  cursor: pointer;

  transition: transform .25s, border-color .25s, box-shadow .25s;

}



.acc-card:hover {

  transform: translateY(-4px);

  border-color: rgba(8,8,8,0.22);

  box-shadow: var(--soft-shadow);

}



.acc-icon {

  font-size: 0;

  line-height: 0;

}



.acc-icon .real-product-img {

  width: min(88%, 180px);

  height: 136px;

}



.acc-name {

  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Arial, sans-serif;

  font-size: 16px;

  font-weight: 650;

  letter-spacing: -0.3px;

  color: #080808;

}



.acc-brand {

  font-size: 10px;

  color: rgba(8,8,8,0.46);

  letter-spacing: 0.5px;

  text-transform: uppercase;

}



.acc-price {

  font-family: 'Cormorant Garamond', serif;

  font-size: 17px;

  font-weight: 600;

  color: #080808;

  margin-top: auto;

}



/* --- GUARANTEES --- */

.guarantees {

  background:

    linear-gradient(180deg, rgba(255,255,255,0.74), rgba(245,244,240,0.92)),

    repeating-linear-gradient(90deg, transparent 0 118px, rgba(8,8,8,0.10) 119px, transparent 120px),

    repeating-linear-gradient(0deg, transparent 0 118px, rgba(8,8,8,0.08) 119px, transparent 120px),

    var(--tile);

}



.guar-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 2px;

}



.guar-item {

  background: rgba(255,255,255,0.92);

  color: #080808;

  border: 1px solid var(--line);

  border-radius: 8px;

  box-shadow: 0 1px 0 rgba(8,8,8,0.04);

  padding: 48px 36px;

  position: relative;

  transition: box-shadow .25s, border-color .25s;

}



.guar-item::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 2px;

  background: transparent;

  transition: background .3s;

}



.guar-item:hover {

  background: #fff;

  border-color: rgba(8,8,8,0.22);

  box-shadow: var(--soft-shadow);

}



.guar-item:hover::before {

  background: #080808;

}



.guar-num {

  font-family: 'Cormorant Garamond', serif;

  font-size: 56px;

  font-weight: 300;

  color: rgba(8,8,8,0.08);

  line-height: 1;

  margin-bottom: 16px;

  letter-spacing: -2px;

}



.guar-title {

  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Arial, sans-serif;

  font-size: 22px;

  font-weight: 650;

  margin-bottom: 10px;

  color: #080808;

}



.guar-text {

  font-size: 12px;

  color: rgba(8,8,8,0.46);

  line-height: 1.6;

  letter-spacing: 0.2px;

}



/* --- AVIS --- */

.reviews-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

}



.review-card {

  background: rgba(255,255,255,0.92);

  color: #080808;

  border: 1px solid var(--line);

  border-radius: 8px;

  box-shadow: 0 1px 0 rgba(8,8,8,0.04);

  padding: 28px 24px;

  transition: box-shadow .25s, border-color .25s;

}



.review-card:hover {

  background: #fff;

  border-color: rgba(8,8,8,0.22);

  box-shadow: var(--soft-shadow);

}



.review-stars {

  color: #080808;

  font-size: 12px;

  margin-bottom: 14px;

  letter-spacing: 3px;

}



.review-text {

  font-family: 'Cormorant Garamond', serif;

  font-size: 15px;

  font-style: italic;

  line-height: 1.6;

  color: rgba(8,8,8,0.68);

  margin-bottom: 18px;

}



.review-author {

  font-size: 11px;

  color: rgba(8,8,8,0.46);

  text-transform: uppercase;

  letter-spacing: 1px;

}



/* --- FOOTER --- */

footer {

  background: #080808;

  color: #fff;

  border-top: 1px solid rgba(255,255,255,0.12);

  padding: 64px 0 32px;

}



.footer-inner {

  max-width: 1200px;

  margin: 0 auto;

  padding: 0 48px;

}



.footer-top {

  display: grid;

  grid-template-columns: 1.5fr 1fr 1fr 1fr;

  gap: 40px;

  margin-bottom: 48px;

  padding-bottom: 48px;

  border-bottom: 0.5px solid rgba(255,255,255,0.12);

}



.footer-brand .logo-text {

  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Arial, sans-serif;

  font-size: 32px;

  font-weight: 700;

  letter-spacing: -1.2px;

  margin-bottom: 16px;

  display: flex;

  align-items: center;

  gap: 10px;

  color: #fff;

}



.footer-brand .logo-text div {

  background: #fff !important;

}



.footer-brand p {

  font-size: 12px;

  color: rgba(255,255,255,0.48);

  line-height: 1.7;

  max-width: 260px;

  font-style: italic;

  font-family: 'Cormorant Garamond', serif;

}



.footer-col h4 {

  font-size: 10px;

  letter-spacing: 2.5px;

  text-transform: uppercase;

  color: #fff;

  margin-bottom: 20px;

  font-family: 'DM Sans', sans-serif;

}



.footer-col ul {

  list-style: none;

}



.footer-col li {

  margin-bottom: 10px;

}



.footer-col a {

  color: rgba(255,255,255,0.48);

  text-decoration: none;

  font-size: 12px;

  letter-spacing: 0.3px;

  transition: color .2s;

}



.footer-col a:hover {

  color: #fff;

}



.footer-bottom {

  display: flex;

  align-items: center;

  justify-content: space-between;

}



.footer-copy {

  font-size: 11px;

  color: rgba(255,255,255,0.48);

  font-style: italic;

  font-family: 'Cormorant Garamond', serif;

}



.footer-socials {

  display: flex;

  gap: 14px;

}



.social-btn {

  width: 36px;

  height: 36px;

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.12);

  border-radius: 8px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 14px;

  cursor: pointer;

  transition: background .2s, border-color .2s;

  text-decoration: none;

  color: rgba(255,255,255,0.48);

}



.social-btn svg {

  width: 18px;

  height: 18px;

  display: block;

}



.social-btn:hover {

  background: #fff;

  border-color: #fff;

  color: #080808;

}



/* --- PANIER SIDEBAR --- */

.cart-overlay {

  position: fixed;

  inset: 0;

  background: rgba(8,8,8,0.58);

  z-index: 200;

  opacity: 0;

  pointer-events: none;

  transition: opacity .3s;

  backdrop-filter: blur(4px);

}



.cart-overlay.open {

  opacity: 1;

  pointer-events: all;

}



.cart-sidebar {

  position: fixed;

  top: 0;

  right: -420px;

  width: 420px;

  height: 100vh;

  background: #080808;

  border-left: 1px solid rgba(255,255,255,0.12);

  z-index: 201;

  transition: right .35s cubic-bezier(.4,0,.2,1);

  display: flex;

  flex-direction: column;

  padding: 32px;

  overflow-y: auto;

  box-shadow: -22px 0 70px rgba(8,8,8,0.34);

}



.cart-sidebar.open {

  right: 0;

}



.cart-header {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 28px;

  padding-bottom: 20px;

  border-bottom: 1px solid rgba(255,255,255,0.10);

}



.cart-title {

  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Arial, sans-serif;

  font-size: 26px;

  font-weight: 750;

  color: #fff;

}



.cart-close {

  background: none;

  border: none;

  color: rgba(255,255,255,0.58);

  font-size: 20px;

  cursor: pointer;

  width: 32px;

  height: 32px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 6px;

  transition: background .2s;

}



.cart-close:hover {

  color: #fff;

}



.cart-item {

  display: flex;

  align-items: center;

  gap: 14px;

  padding: 14px 0;

  border-bottom: 1px solid rgba(255,255,255,0.10);

}



.cart-item-icon {

  font-size: 0;

  line-height: 0;

}



.cart-item-icon .real-product-img {

  width: 48px;

  height: 48px;

}



.cart-item-info {

  flex: 1;

}



.cart-item-name {

  font-size: 14px;

  margin-bottom: 3px;

  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Arial, sans-serif;

  font-weight: 650;

  color: #fff;

}



.cart-item-sub {

  font-size: 11px;

  color: rgba(255,255,255,0.48);

}



.cart-item-price {

  font-family: 'Cormorant Garamond', serif;

  font-size: 16px;

  font-weight: 600;

  color: #fff;

}



.cart-item-remove {

  background: none;

  border: none;

  color: rgba(255,255,255,0.58);

  cursor: pointer;

  font-size: 14px;

  transition: color .2s;

}



.cart-item-remove:hover {

  color: #fff;

}



.cart-footer {

  margin-top: auto;

  padding-top: 24px;

  border-top: 1px solid rgba(255,255,255,0.10);

}



.cart-total {

  display: flex;

  justify-content: space-between;

  margin-bottom: 20px;

  align-items: center;

}



.cart-total span:first-child {

  font-size: 13px;

  letter-spacing: 1px;

  text-transform: uppercase;

  color: rgba(255,255,255,0.48);

}



.cart-total span:last-child {

  font-family: 'Cormorant Garamond', serif;

  font-size: 24px;

  font-weight: 600;

  color: #fff;

}



.btn-checkout {

  width: 100%;

  background: #080808;

  color: #fff;

  border: 1px solid #080808;

  cursor: pointer;

  padding: 16px;

  border-radius: 8px;

  font-family: 'DM Sans', sans-serif;

  font-size: 12px;

  letter-spacing: 2px;

  text-transform: uppercase;

  transition: background .2s;

}



.btn-checkout:hover {

  background: #30302c;

  border-color: #30302c;

}



.cart-empty {

  text-align: center;

  padding: 60px 0;

  color: rgba(255,255,255,0.48);

  font-style: italic;

  font-family: 'Cormorant Garamond', serif;

  font-size: 16px;

}



/* --- NOTIFICATION --- */

.notif {

  position: fixed;

  bottom: 32px;

  right: 32px;

  background: #080808;

  color: #fff;

  border: 1px solid rgba(255,255,255,0.18);

  border-left: 3px solid #fff;

  border-radius: 8px;

  padding: 14px 20px;

  font-size: 13px;

  z-index: 300;

  transform: translateX(120%);

  transition: transform .3s cubic-bezier(.4,0,.2,1);

  font-family: 'DM Sans', sans-serif;

}



.notif.show {

  transform: translateX(0);

}



/* --- ANIMATIONS --- */

@keyframes fadeUp {

  from {

    opacity: 0;

    transform: translateY(24px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}



.fade-in {

  opacity: 0;

  transform: translateY(20px);

  transition: opacity .6s ease, transform .6s ease;

  pointer-events: none;

}



.fade-in.visible {

  opacity: 1;

  transform: translateY(0);

  pointer-events: auto;

}



/* --- OS BADGES --- */

.os-badges-container {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: flex;

  gap: 6px;

  flex-wrap: wrap;

  justify-content: flex-end;

}



.os-badge {

  display: inline-block;

  font-size: 10px;

  padding: 4px 8px;

  border-radius: 4px;

  font-weight: 500;

  letter-spacing: 0.3px;

  white-space: nowrap;

  backdrop-filter: blur(8px);

  border: 1px solid rgba(8,8,8,0.15);

}



.os-ios {

  background: rgba(0, 122, 255, 0.90);

  color: #fff;

  border-color: rgba(0, 122, 255, 0.5);

}



.os-android {

  background: rgba(52, 168, 83, 0.90);

  color: #fff;

  border-color: rgba(52, 168, 83, 0.5);

}



.os-both {

  background: rgba(255, 153, 0, 0.90);

  color: #fff;

  border-color: rgba(255, 153, 0, 0.5);

}



/* --- ACCESSORIES OS BADGES --- */

.acc-os-badge {

  font-size: 9px;

  text-align: center;

  margin: 6px 0;

  min-height: 18px;

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 4px;

  flex-wrap: wrap;

}



.acc-os-badge .os-badge {

  padding: 3px 6px;

  font-size: 9px;

}



/* --- RESPONSIVE --- */

@media(max-width: 960px) {

  nav {

    padding: 0 24px;

  }



  .nav-links {

    display: none;

  }



  .hero-inner {

    grid-template-columns: 1fr;

    padding: 0 24px;

    text-align: center;

  }



  .hero-right {

    display: none;

  }



  .hero-ctas, .section-eyebrow, .hero-eyebrow {

    justify-content: center;

  }



  .hero-sep, .hero-sep2 {

    margin: 24px auto;

  }



  .section-inner {

    padding: 0 24px;

  }



  .cats-grid, .products-grid, .acc-grid {

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;

  }



  .guar-grid, .reviews-grid {

    grid-template-columns: 1fr;

  }



  .footer-top {

    grid-template-columns: 1fr 1fr;

  }



  .promo-banner {

    grid-template-columns: 1fr;

  }



  .hero-trust {

    flex-direction: column;

    gap: 16px;

  }



  .cart-sidebar {

    width: 100%;

    right: -100%;

  }



  .hero {

    background:

      linear-gradient(0deg, rgba(8,8,8,0.84), rgba(8,8,8,0.20)),

      repeating-linear-gradient(90deg, transparent 0 96px, rgba(255,255,255,0.08) 97px, transparent 98px),

      repeating-linear-gradient(0deg, transparent 0 96px, rgba(255,255,255,0.06) 97px, transparent 98px),

      linear-gradient(135deg, #0a0a09 0%, #4f4a42 100%);

  }

}



/* --- EXTENSIONS FONCTIONNELLES : fiches, checkout, admin --- */

.product-bonus-badge {

  position: absolute;

  top: 12px;

  right: 12px;

  background: rgba(8,8,8,0.88);

  color: #fff;

  border: 1px solid rgba(255,255,255,0.20);

  border-radius: 5px;

  padding: 4px 9px;

  font-size: 9px;

  letter-spacing: .7px;

  text-transform: uppercase;

  z-index: 2;

}



.product-meta-line,

.acc-bonus,

.cart-bonus-total,

.cart-affiliate,

.ops-muted,

.detail-sub,

.detail-stock {

  font-size: 11px;

  color: rgba(8,8,8,0.48);

  letter-spacing: .3px;

}



.product-meta-line {

  margin: -6px 0 12px;

}



.acc-bonus {

  color: rgba(8,8,8,0.58);

}



.product-placeholder {

  width: 130px;

  height: 130px;

  border: 1px solid rgba(8,8,8,0.12);

  border-radius: 8px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 18px;

  font-weight: 700;

  color: #080808;

}



.modal-overlay,

.ops-overlay {

  position: fixed;

  inset: 0;

  background: rgba(8,8,8,0.58);

  z-index: 230;

  opacity: 0;

  pointer-events: none;

  transition: opacity .3s;

  backdrop-filter: blur(4px);

}



.modal-overlay.open,

.ops-overlay.open {

  opacity: 1;

  pointer-events: all;

}



.product-modal {

  position: fixed;

  left: 50%;

  top: 50%;

  width: min(880px, calc(100vw - 36px));

  max-height: min(720px, calc(100vh - 36px));

  transform: translate(-50%, -46%);

  background: #fff;

  border: 1px solid rgba(8,8,8,0.12);

  border-radius: 8px;

  box-shadow: var(--soft-shadow);

  z-index: 231;

  opacity: 0;

  pointer-events: none;

  overflow: auto;

  transition: opacity .25s, transform .25s;

}



.product-modal.open {

  opacity: 1;

  pointer-events: all;

  transform: translate(-50%, -50%);

}



.product-modal-inner {

  padding: 28px;

}



.detail-header,

.ops-card-head {

  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  gap: 16px;

}



.detail-header {

  padding-bottom: 18px;

  border-bottom: 1px solid rgba(8,8,8,0.10);

  margin-bottom: 22px;

}



.detail-header .cart-close {

  color: rgba(8,8,8,0.58);

}



.detail-eyebrow {

  font-size: 10px;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: rgba(8,8,8,0.46);

  margin-bottom: 8px;

}



.detail-header h3 {

  font-size: 30px;

  line-height: 1;

  letter-spacing: -1.2px;

  color: #080808;

}



.detail-grid {

  display: grid;

  grid-template-columns: minmax(240px, 1fr) 1.2fr;

  gap: 28px;

}



.detail-media {

  min-height: 280px;

  background:

    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(217,214,205,0.78)),

    repeating-linear-gradient(90deg, rgba(8,8,8,0.07) 0 1px, transparent 1px 82px),

    repeating-linear-gradient(0deg, rgba(8,8,8,0.055) 0 1px, transparent 1px 82px);

  border: 1px solid rgba(8,8,8,0.10);

  border-radius: 8px;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

}



.detail-media .real-product-img {

  width: 90%;

  height: 280px;

}



.detail-price {

  font-family: 'Cormorant Garamond', serif;

  font-size: 32px;

  font-weight: 600;

  color: #080808;

  margin-bottom: 4px;

}



.detail-stock {

  margin: 10px 0 18px;

  text-transform: uppercase;

  letter-spacing: 1px;

}



.detail-specs {

  display: grid;

  gap: 8px;

  margin-bottom: 22px;

}



.detail-spec {

  display: flex;

  justify-content: space-between;

  gap: 18px;

  padding: 12px 0;

  border-bottom: 1px solid rgba(8,8,8,0.08);

}



.detail-spec span {

  text-transform: capitalize;

  color: rgba(8,8,8,0.48);

  font-size: 12px;

}



.detail-spec strong {

  color: #080808;

  font-size: 13px;

  font-weight: 650;

  text-align: right;

}



.detail-actions {

  display: flex;

  gap: 10px;

  flex-wrap: wrap;

}



.btn-secondary-light {

  background: #fff;

  color: #080808;

  border: 1px solid rgba(8,8,8,0.18);

  cursor: pointer;

  padding: 14px 32px;

  border-radius: 7px;

  font-size: 12px;

  letter-spacing: 1.5px;

  text-transform: uppercase;

}



.checkout-form,

.ops-form,

.ops-login {

  display: grid;

  gap: 10px;

}



.checkout-form input,

.checkout-form select,

.ops-form input,

.ops-form select,

.ops-row select,

.ops-login input {

  width: 100%;

  background: rgba(255,255,255,0.08);

  color: #fff;

  border: 1px solid rgba(255,255,255,0.14);

  border-radius: 8px;

  padding: 12px 12px;

  font-size: 13px;

  outline: none;

}



.checkout-form select,

.ops-form select,

.ops-row select {

  color: #080808;

  background: #fff;

}



.checkout-form input::placeholder,

.ops-form input::placeholder,

.ops-login input::placeholder {

  color: rgba(255,255,255,0.42);

}



.cart-bonus-total,

.cart-affiliate {

  color: rgba(255,255,255,0.54);

  margin: -8px 0 14px;

}



.cart-affiliate {

  margin: 0 0 4px;

}



.btn-checkout-secondary {

  width: 100%;

  background: rgba(255,255,255,0.08);

  color: #fff;

  border: 1px solid rgba(255,255,255,0.14);

  cursor: pointer;

  padding: 14px;

  border-radius: 8px;

  font-size: 11px;

  letter-spacing: 1.5px;

  text-transform: uppercase;

}



.cart-qty {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-top: 6px;

}



.cart-qty button {

  width: 24px;

  height: 24px;

  border-radius: 6px;

  border: 1px solid rgba(255,255,255,0.14);

  background: rgba(255,255,255,0.08);

  color: #fff;

  cursor: pointer;

}



.cart-qty span {

  color: #fff;

  font-size: 12px;

}



.ops-panel {

  position: fixed;

  top: 0;

  right: -560px;

  width: min(560px, 100vw);

  height: 100vh;

  background: #080808;

  border-left: 1px solid rgba(255,255,255,0.12);

  z-index: 232;

  transition: right .35s cubic-bezier(.4,0,.2,1);

  display: flex;

  flex-direction: column;

  padding: 32px;

  overflow-y: auto;

  box-shadow: -22px 0 70px rgba(8,8,8,0.34);

}



.ops-panel.open {

  right: 0;

}



.ops-tabs {

  display: flex;

  gap: 6px;

  flex-wrap: wrap;

  margin-bottom: 18px;

}



.ops-tabs button,

.ops-card button,

.ops-row button,

.influencer-link button {

  background: rgba(255,255,255,0.08);

  color: #fff;

  border: 1px solid rgba(255,255,255,0.14);

  cursor: pointer;

  padding: 9px 12px;

  border-radius: 7px;

  font-size: 10px;

  letter-spacing: 1px;

  text-transform: uppercase;

}



.ops-tabs button.active {

  background: #fff;

  color: #080808;

}



.ops-body,

.ops-list {

  display: grid;

  gap: 12px;

}



.ops-list.compact {

  margin-top: 14px;

}



.ops-card {

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.12);

  border-radius: 8px;

  padding: 14px;

  color: #fff;

}



.ops-card strong,

.ops-money {

  color: #fff;

}



.ops-card-head {

  margin-bottom: 8px;

}



.ops-muted {

  color: rgba(255,255,255,0.50);

  line-height: 1.5;

  margin-top: 5px;

}



.ops-money {

  font-family: 'Cormorant Garamond', serif;

  font-size: 20px;

  margin: 8px 0;

}



.ops-row {

  display: grid;

  grid-template-columns: 1fr auto;

  gap: 8px;

  margin-top: 10px;

  align-items: center;

}



.ops-form {

  margin-bottom: 16px;

}



.status-badge {

  border-radius: 999px;

  padding: 4px 8px;

  font-size: 9px;

  letter-spacing: 1px;

  text-transform: uppercase;

  border: 1px solid rgba(255,255,255,0.16);

  color: #fff;

}



.status-paid,

.status-accepted {

  background: rgba(52,168,83,0.22);

}



.status-pending {

  background: rgba(255,153,0,0.18);

}



.status-cancelled,

.status-refused {

  background: rgba(214,48,49,0.22);

}



.ops-empty {

  color: rgba(255,255,255,0.54);

  font-family: 'Cormorant Garamond', serif;

  font-style: italic;

  padding: 32px 0;

}



.influencer-link {

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.12);

  border-radius: 8px;

  padding: 14px;

  display: grid;

  gap: 8px;

  color: #fff;

  word-break: break-all;

}



.influencer-link span,

.stats-grid span {

  color: rgba(255,255,255,0.48);

  font-size: 10px;

  letter-spacing: 1px;

  text-transform: uppercase;

}



.stats-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 10px;

  margin: 16px 0;

}



.stats-grid div {

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.12);

  border-radius: 8px;

  padding: 16px;

  display: grid;

  gap: 8px;

}



.stats-grid strong {

  color: #fff;

  font-family: 'Cormorant Garamond', serif;

  font-size: 28px;

}



@media(max-width: 720px) {

  .detail-grid,

  .ops-row,

  .stats-grid {

    grid-template-columns: 1fr;

  }



  .product-modal-inner,

  .ops-panel {

    padding: 24px;

  }



  .product-bonus-badge {

    top: auto;

    bottom: 12px;

    right: 12px;

  }

}


/* --- THEME TOGGLE & DARK MODE OVERRIDES --- */
.theme-toggle {
  background: transparent;
  border: 1px solid rgba(8,8,8,0.12);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  width: 38px;
  height: 38px;
  margin-right: 10px;
}

.theme-toggle:hover {
  background: rgba(8,8,8,0.06);
  transform: scale(1.05);
}

.theme-toggle .theme-icon-light {
  display: inline-block;
}
.theme-toggle .theme-icon-dark {
  display: none;
}

/* Dark mode class on html/body */
.dark-mode {
  --noir: #ffffff;
  --noir2: #f8f9fa;
  --noir3: #121212;
  --rouge: #ffffff;
  --rouge2: #e0e0e0;
  --gris: #a0a0a0;
  --gris2: #333333;
  --blanc: #ffffff;
  --blanc2: rgba(255,255,255,0.72);
  --blanc3: rgba(255,255,255,0.44);
  --blanc4: rgba(255,255,255,0.10);
  --paper: #161616;
  --tile: #121212;
  --tile-dark: #333333;
  --line: rgba(255,255,255,0.08);
  --soft-shadow: 0 24px 70px rgba(0,0,0,0.6);
}

.dark-mode .theme-toggle {
  border-color: rgba(255,255,255,0.14);
}

.dark-mode .theme-toggle:hover {
  background: rgba(255,255,255,0.08);
}

.dark-mode .theme-toggle .theme-icon-light {
  display: none;
}
.dark-mode .theme-toggle .theme-icon-dark {
  display: inline-block;
}

/* Body dark theme override */
body.dark-mode {
  background:
    linear-gradient(180deg, rgba(8,8,8,0.88), rgba(14,14,14,0.98)),
    repeating-linear-gradient(90deg, transparent 0 118px, rgba(255,255,255,0.03) 119px, transparent 120px),
    repeating-linear-gradient(0deg, transparent 0 118px, rgba(255,255,255,0.02) 119px, transparent 120px),
    #080808 !important;
  color: #ffffff;
}

body.dark-mode nav {
  background: rgba(14,14,14,0.90);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 34px rgba(0,0,0,0.5);
}

body.dark-mode .nav-logo-bar {
  background: #ffffff;
}

body.dark-mode .nav-logo-text {
  color: #ffffff;
}

body.dark-mode .nav-links a {
  color: rgba(255,255,255,0.62);
}

body.dark-mode .nav-links a:hover {
  color: #ffffff;
}

body.dark-mode .btn-nav {
  background: #ffffff;
  color: #080808;
  border-color: #ffffff;
}

body.dark-mode .btn-nav:hover {
  background: #e0e0e0;
  border-color: #e0e0e0;
  box-shadow: 0 14px 34px rgba(255,255,255,0.16);
}

body.dark-mode .section-title {
  color: #ffffff;
}

body.dark-mode .cat-card {
  background: rgba(22,22,22,0.92);
  color: #ffffff;
  border-color: rgba(255,255,255,0.08);
}

body.dark-mode .cat-card::after {
  background: #ffffff;
}

body.dark-mode .cat-name {
  color: #ffffff;
}

body.dark-mode .cat-count {
  color: rgba(255,255,255,0.48);
}

body.dark-mode .cat-arrow {
  color: #ffffff;
}

body.dark-mode .filter-tab {
  background: rgba(22,22,22,0.80);
  border-color: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.6);
}

body.dark-mode .filter-tab:hover,
body.dark-mode .filter-tab.active {
  background: #ffffff;
  border-color: #ffffff;
  color: #080808;
}

body.dark-mode .product-card {
  background: rgba(22,22,22,0.92);
  color: #ffffff;
  border-color: rgba(255,255,255,0.08);
}

body.dark-mode .product-card:hover {
  border-color: rgba(255,255,255,0.22);
}

body.dark-mode .product-img-wrap {
  background:
    linear-gradient(135deg, rgba(22,22,22,0.92), rgba(14,14,14,0.78)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 82px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.015) 0 1px, transparent 1px 82px);
}

body.dark-mode .product-name {
  color: #ffffff;
}

body.dark-mode .product-sub {
  color: rgba(255,255,255,0.6);
}

body.dark-mode .product-price {
  color: #ffffff;
}

body.dark-mode .acc-card {
  background: rgba(22,22,22,0.92);
  color: #ffffff;
  border-color: rgba(255,255,255,0.08);
}

body.dark-mode .acc-card:hover {
  border-color: rgba(255,255,255,0.22);
}

body.dark-mode .guar-item {
  background: rgba(22,22,22,0.92);
  color: #ffffff;
  border-color: rgba(255,255,255,0.08);
}

body.dark-mode .review-card {
  background: rgba(22,22,22,0.92);
  color: #ffffff;
  border-color: rgba(255,255,255,0.08);
}

body.dark-mode .review-card:hover {
  background: rgba(28,28,28,0.95);
  border-color: rgba(255,255,255,0.22);
}

body.dark-mode .product-modal {
  background: #141414;
  border-color: rgba(255,255,255,0.12);
  color: #ffffff;
}

body.dark-mode .product-modal h3,
body.dark-mode .product-modal h2 {
  color: #ffffff;
}

body.dark-mode .detail-header {
  border-bottom-color: rgba(255,255,255,0.10);
}

body.dark-mode .detail-header .cart-close {
  color: rgba(255,255,255,0.58);
}

body.dark-mode .detail-desc {
  color: rgba(255,255,255,0.72);
}

body.dark-mode .detail-bonus-badge {
  color: rgba(255,255,255,0.85);
}

/* --- PRODUCT COLOR INFO --- */
.product-color-info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(8,8,8,0.04);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  margin-top: 6px;
  border: 1px solid rgba(8,8,8,0.06);
  width: fit-content;
}

body.dark-mode .product-color-info {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
}

.color-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(8,8,8,0.18);
}

body.dark-mode .color-dot {
  border-color: rgba(255,255,255,0.25);
}

.color-name {
  color: rgba(8,8,8,0.68);
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
}

body.dark-mode .color-name {
  color: rgba(255,255,255,0.8);
}