/** Shopify CDN: Minification failed

Line 12159:15 Unexpected "}"
Line 18488:0 Unexpected "}"
Line 18521:3 Expected "}" to go with "{"

**/
* {
  box-sizing: border-box;
}

body {
  color: var(--color-foreground);
  background: var(--color-background);
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100svh;
  font-variation-settings: 'slnt' 0;
}

:root {
  --hover-lift-amount: 4px;
  --hover-scale-amount: 1.03;
  --hover-subtle-zoom-amount: 1.015;
  --hover-shadow-color: var(--color-shadow);
  --hover-transition-duration: 0.25s;
  --hover-transition-timing: ease-out;
  --surface-transition-duration: 0.3s;
  --surface-transition-timing: var(--ease-out-quad);
  --submenu-animation-speed: 360ms;
  --submenu-animation-easing: cubic-bezier(0.25, 0.1, 0.25, 1);
}

html {
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: rgb(var(--color-foreground-rgb) / var(--opacity-40)) var(--color-background);
  scroll-behavior: smooth;
}

@media (min-width: 990px) {
  html:has(.page-wrapper),
  html:has(.page-wrapper) body {
    height: 100dvh;
    overflow: hidden;
  }
}

html[scroll-lock],
html[scroll-lock] .page-wrapper {
  overflow: hidden;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  transition: margin-right var(--animation-speed) var(--animation-timing-fade-out);
}

@media (min-width: 990px) {
  .page-wrapper {
    height: 100dvh;
    overflow-y: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgb(var(--color-foreground-rgb) / var(--opacity-40)) var(--color-background);
  }

  .page-wrapper--drawer-open shopify-account::part(dialog) {
    translate: calc(-1 * var(--theme-drawer-width, var(--sidebar-width)));
  }
}

.page-wrapper--drawer-open {
  margin-right: var(--theme-drawer-width, var(--sidebar-width));
  transition-timing-function: var(--animation-timing-fade-in);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  width: 100%;
  height: auto;
}

input,
textarea,
select {
  font: inherit;
  border-radius: var(--style-border-radius-inputs);
}

/** override ios and firefox defaults */
select {
  background-color: var(--color-background);
  color: currentcolor;
}

.product-card,
.collection-card,
.predictive-search-results__card--product,
.predictive-search-results__card {
  position: relative;
  transition: transform var(--hover-transition-duration) var(--hover-transition-timing),
    box-shadow var(--hover-transition-duration) var(--hover-transition-timing);
  z-index: var(--layer-flat);
}

.product-card__link {
  position: absolute;
  inset: 0;
}

.product-card__content {
  position: relative;
}

.product-card__content {
  cursor: pointer;
}

@media (any-pointer: fine) and (prefers-reduced-motion: no-preference) {
  .card-hover-effect-lift .product-card:hover,
  .card-hover-effect-lift .collection-card:hover,
  .card-hover-effect-lift .predictive-search-results__card:hover {
    transform: translateY(calc(-1 * var(--hover-lift-amount)));
  }

  .card-hover-effect-scale .product-card:hover,
  .card-hover-effect-scale .collection-card:hover,
  .card-hover-effect-scale .predictive-search-results__card:hover {
    transform: scale(var(--hover-scale-amount));
  }

  .card-hover-effect-subtle-zoom .card-gallery,
  .card-hover-effect-subtle-zoom .collection-card__image,
  .card-hover-effect-subtle-zoom .product-card__image {
    overflow: hidden;
    transition: transform var(--hover-transition-duration) var(--hover-transition-timing);
  }

  .card-hover-effect-subtle-zoom .product-card:hover .card-gallery,
  .card-hover-effect-subtle-zoom .collection-card:hover .collection-card__image,
  .card-hover-effect-subtle-zoom .product-card:hover .product-card__image,
  .card-hover-effect-subtle-zoom .predictive-search-results__card:hover {
    transform: scale(var(--hover-subtle-zoom-amount));
  }
}

dialog {
  /* the ::backdrop inherits from the originating element, custom properties must be set on the dialog element */
  --backdrop-color-rgb: var(--color-shadow-rgb);

  background-color: var(--color-background);
  color: var(--color-foreground);
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

.wrap-text {
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

p:empty {
  display: none;
}

:first-child:is(p, h1, h2, h3, h4, h5, h6),
:first-child:empty + :where(p, h1, h2, h3, h4, h5, h6) {
  margin-block-start: 0;
}

/* Remove bottom margin from last text item, or previous to last if the last is empty */
:last-child:is(p, h1, h2, h3, h4, h5, h6),
:where(p, h1, h2, h3, h4, h5, h6):nth-child(2):has(+ :last-child:empty) {
  margin-block-end: 0;
}

/* view transitions */

/*
 * The cross-document (MPA) opt-in `@view-transition { navigation: auto }` is declared per-layout
 * (layout/theme.liquid and layout/password.liquid), because this stylesheet is shared by both layouts
 * and a static stylesheet can't read theme settings.
 * It is gated on the same `settings.page_transition_enabled or settings.transition_to_main_product` condition as the
 * render blocker, so the opt-in and its opt-out switch can never disagree. The rules below only
 * take effect once an `@view-transition` opt-in is active, so they are inert without it.
 */
@media (prefers-reduced-motion: no-preference) {
  /* Keep page interactive while view transitions are running */
  :root {
    view-transition-name: none;
  }

  /* Have the root transition during page navigation */
  html:active-view-transition-type(page-navigation),
  html:active-view-transition-type(product-image-transition) {
    view-transition-name: root-custom;
  }

  ::view-transition {
    pointer-events: none;
  }

  html:active-view-transition-type(page-navigation) main[data-page-transition-enabled='true'] {
    view-transition-name: main-content;
  }

  html:active-view-transition-type(page-navigation) main[data-product-transition='true'][data-template*='product'] {
    view-transition-name: none;
  }

  ::view-transition-old(main-content) {
    animation: var(--view-transition-old-main-content);
  }

  ::view-transition-new(main-content) {
    animation: var(--view-transition-new-main-content);
  }

  html:active-view-transition-type(product-image-transition) {
    [data-view-transition-type='product-image-transition'] {
      view-transition-name: product-image-transition;
    }

    [data-view-transition-type='product-details'] {
      view-transition-name: product-details;
    }
  }

  ::view-transition-group(product-image-transition) {
    z-index: 1;
  }

  ::view-transition-group(product-image-transition),
  ::view-transition-group(product-details) {
    animation-duration: var(--animation-speed);
    animation-timing-function: var(--animation-easing);
  }

  ::view-transition-old(product-image-transition),
  ::view-transition-new(product-image-transition) {
    block-size: 100%;
    overflow: hidden;
    object-fit: cover;
    animation-duration: 0.25s;
    animation-timing-function: var(--animation-easing);
  }

  ::view-transition-new(product-details) {
    animation: var(--view-transition-new-main-content);
  }
}

/* Focus */
*:focus-visible {
  outline: var(--focus-outline-width) solid currentcolor;
  outline-offset: var(--focus-outline-offset);
}

@supports not selector(:focus-visible) {
  *:focus {
    outline: var(--focus-outline-width) solid currentcolor;
    outline-offset: var(--focus-outline-offset);
  }
}

.focus-inset {
  outline-offset: calc(var(--focus-outline-width) * -1);
}

/* Layout */
.content-for-layout {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.content-for-layout > .shopify-section:last-child {
  flex-grow: 1;
}

/* Set up page widths & margins */
.page-width-wide,
.page-width-normal,
.page-width-narrow,
.page-width-content {
  --page-margin: 16px;
}

@media screen and (min-width: 750px) {
  .page-width-wide,
  .page-width-normal,
  .page-width-narrow,
  .page-width-content {
    --page-margin: 40px;
  }
}

.page-width-wide {
  /* NOTE: This results in a page width of 2400px because of how we set up margins with grid */
  --page-content-width: var(--wide-page-width);
  --page-width: calc(var(--page-content-width) + (var(--page-margin) * 2));
}

.page-width-normal {
  --page-content-width: var(--normal-page-width);
  --page-width: calc(var(--page-content-width) + (var(--page-margin) * 2));
}

.page-width-narrow,
.page-width-content {
  /* NOTE: This results in a page width of 1400px because of how we set up margins with grid */
  --page-content-width: var(--narrow-page-width);
  --page-width: calc(var(--page-content-width) + (var(--page-margin) * 2));
}

.page-width-content {
  --page-content-width: var(--normal-content-width);
  --page-width: calc(var(--page-content-width) + (var(--page-margin) * 2));
}

/* Section width full vs. page
   The reason we use a grid to contain the section is to allow for the section to have a
   full-width background image even if the section content is constrained by the page width. Do not try
   to rewrite this to max-width: --page-width; margin: 0 auto;, it doesn't work. */
.section {
  --full-page-grid-central-column-width: min(
    var(--page-width) - var(--page-margin) * 2,
    calc(100% - var(--page-margin) * 2)
  );
  --full-page-grid-margin: minmax(var(--page-margin), 1fr);
  --full-page-grid-with-margins: var(--full-page-grid-margin) var(--full-page-grid-central-column-width)
    var(--full-page-grid-margin);

  /* Utility variable gives the grid's first column width. Provides an offset width for components like carousels */
  --util-page-margin-offset: max(
    var(--page-margin),
    calc((100% - min(var(--page-content-width), 100% - var(--page-margin) * 2)) / 2)
  );

  /* Offset for full-width sections to account for the page margin,
  used for Marquee — note that --util-page-margin-offset doesn't work here */
  --full-page-margin-inline-offset: calc(((100vw - var(--full-page-grid-central-column-width)) / 2) * -1);

  width: 100%;

  /* This is required to make background images work, which are <img> rendered absolutely */
  position: relative;

  /* Set up the grid */
  display: grid;
  grid-template-columns: var(--full-page-grid-with-margins);
  min-height: var(--section-min-height, 'auto');
}

/* Place all direct children in the center column by default */
.section > * {
  grid-column: 2;
}

/* Make the actual section background transparent, and instead apply it to a separate sibling element to enable stacking with hero shadow  */
.shopify-section:not(.header-section) :is(.section, .cart-summary) {
  background: transparent;
}

.shopify-section:not(.header-section):has(.section) {
  position: relative;
}

.shopify-section:not(.header-section) .section-background {
  content: '';
  position: absolute;
  inset: 0;
  z-index: var(--layer-section-background);
  background-color: var(--color-background);
}

/* For page-width sections, all content goes in the center column */
.section--page-width > * {
  grid-column: 2;
}

/* For full-width sections, content spans all columns */
.section--full-width > * {
  grid-column: 1 / -1;
}

@media screen and (max-width: 749px) {
  .section--mobile-full-width > * {
    grid-column: 1 / -1;
  }
}

/* Some page-width sections should still extend all the way to the right edge of the page, e.g. collection carousel */
.section--page-width.section--full-width-right > * {
  grid-column: 2 / 4;
}

/* For full-width sections with margin, content still spans full width but with space on the sides */
.section--full-width.section--full-width-margin > * {
  grid-column: 1 / -1;

  @media screen and (min-width: 750px) {
    padding-left: var(--page-margin);
    padding-right: var(--page-margin);
  }
}

/* Some section content break out to full width of the page */
.section > .force-full-width {
  grid-column: 1 / -1;
}

.section--height-small {
  --section-min-height: var(--section-height-small);
}

.section--height-medium {
  --section-min-height: var(--section-height-medium);
}

.section--height-large {
  --section-min-height: var(--section-height-large);
}

.section--height-full-screen {
  --section-min-height: 100svh;
}

.section-content-wrapper.section-content-wrapper {
  min-height: calc(var(--section-min-height, 'auto') - var(--section-height-offset, 0px));
  position: relative;
  width: 100%;
  height: 100%;
}

/* Utility */

.hidden {
  /* stylelint-disable-next-line declaration-no-important */
  display: none !important;
}

@media screen and (max-width: 749px) {
  .hidden--mobile,
  .mobile\:hidden {
    /* stylelint-disable-next-line declaration-no-important */
    display: none !important;
  }
}

@media screen and (min-width: 750px) {
  .hidden--desktop,
  .desktop\:hidden {
    /* stylelint-disable-next-line declaration-no-important */
    display: none !important;
  }
}

.hide-when-empty:empty {
  /* stylelint-disable-next-line declaration-no-important */
  display: none !important;
}

.visually-hidden:not(:focus, :active) {
  /* stylelint-disable-next-line declaration-no-important */
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  /* stylelint-disable-next-line declaration-no-important */
  word-wrap: normal !important;
}

.contents {
  display: contents;
}

.flex {
  display: flex;
  gap: var(--gap-md);
}

.grid {
  --centered-column-number: 12;
  --full-width-column-number: 14;
  --centered: column-1 / span var(--centered-column-number);
  --full-width: column-0 / span var(--full-width-column-number);

  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 750px) {
  .grid {
    display: grid;
    gap: 0;
    grid-template-columns: var(--margin-4xl) repeat(var(--centered-column-number), minmax(0, 1fr)) var(--margin-4xl);
    grid-template-areas: 'column-0 column-1 column-2 column-3 column-4 column-5 column-6 column-7 column-8 column-9 column-10 column-11 column-12 column-13';
  }
}

@media screen and (min-width: 1400px) {
  .grid {
    grid-template-columns:
      1fr repeat(
        var(--centered-column-number),
        minmax(0, calc((var(--page-width) - var(--page-margin) * 2) / var(--centered-column-number)))
      )
      1fr;
  }
}

.flex {
  display: flex;
  gap: var(--gap-md);
}

.flip-x {
  scale: -1 1;
}

.flip-y {
  scale: 1 -1;
}

.list-unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}

.text-left {
  --text-align: left;

  text-align: left;
}

.text-center {
  --text-align: center;

  text-align: center;
}

.text-right {
  --text-align: right;

  text-align: right;
}

.text-inherit {
  color: inherit;
}

.user-select-text {
  user-select: text;
}

.justify-left {
  justify-content: left;
}

.justify-center {
  justify-content: center;
}

.justify-right {
  justify-content: right;
}

.title--aligned-center {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.background-image-container {
  overflow: hidden;
  position: absolute;
  inset: 0;
  opacity: var(--image-opacity);
}

.background-image-container img,
.background-image-container svg {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.background-image-fit img,
.background-image-fit svg {
  object-fit: contain;
}

.svg-wrapper {
  color: currentcolor;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: var(--icon-size-sm);
  height: var(--icon-size-sm);
  pointer-events: none;
}

.svg-wrapper--smaller {
  width: var(--icon-size-2xs);
  height: var(--icon-size-2xs);
}

.svg-wrapper--small {
  width: var(--icon-size-xs);
  height: var(--icon-size-xs);
}

.svg-wrapper > svg {
  width: var(--icon-size-sm);
  height: var(--icon-size-sm);
}

.relative {
  position: relative;
}

/* Icons */
.icon-success,
.icon-error {
  width: var(--icon-size-md);
  height: var(--icon-size-md);
  flex-shrink: 0;
}

.icon-success {
  color: var(--color-success);
}

.icon-error {
  fill: var(--color-error);
}

.icon-default {
  fill: currentColor;
}

[data-placeholder='true'] * {
  cursor: default;
}

/* Base text and heading styles */
body,
.paragraph:not(.button),
.paragraph > *,
.text-block.paragraph :is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-paragraph--family);
  font-style: var(--font-paragraph--style);
  font-weight: var(--font-paragraph--weight);
  font-size: var(--font-paragraph--size);
  line-height: var(--font-paragraph--line-height);
  text-transform: var(--font-paragraph--case);
  -webkit-font-smoothing: antialiased;
  color: var(--color, var(--color-foreground));
}

/* Ensure inputs with type presets maintain minimum 16px on mobile to prevent iOS zoom */
@media screen and (max-width: 1200px) {
  input.paragraph.paragraph,
  input.paragraph.paragraph:not([type]),
  textarea.paragraph.paragraph,
  select.paragraph.paragraph {
    font-size: max(1rem, var(--font-paragraph--size));
  }
}

.paragraph > small {
  font-size: smaller;
}

/* Typography presets */

h1,
.h1.h1,
.text-block.h1 > *,
.text-block.h1 :is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-h1--family);
  font-style: var(--font-h1--style);
  font-weight: var(--font-h1--weight);
  font-size: var(--font-h1--size);
  line-height: var(--font-h1--line-height);
  letter-spacing: var(--font-h1--letter-spacing);
  text-transform: var(--font-h1--case);
  color: var(--color);
}

@media screen and (max-width: 1200px) {
  input.h1.h1,
  textarea.h1.h1,
  select.h1.h1 {
    font-size: max(1rem, var(--font-h1--size));
  }
}

h2,
.h2.h2,
.text-block.h2 > *,
.text-block.h2 :is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-h2--family);
  font-style: var(--font-h2--style);
  font-weight: var(--font-h2--weight);
  font-size: var(--font-h2--size);
  line-height: var(--font-h2--line-height);
  letter-spacing: var(--font-h2--letter-spacing);
  text-transform: var(--font-h2--case);
  color: var(--color);
}

@media screen and (max-width: 1200px) {
  input.h2.h2,
  textarea.h2.h2,
  select.h2.h2 {
    font-size: max(1rem, var(--font-h2--size));
  }
}

h3,
.h3,
.h3.h3,
.text-block.h3 > *,
.text-block.h3 :is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-h3--family);
  font-style: var(--font-h3--style);
  font-weight: var(--font-h3--weight);
  font-size: var(--font-h3--size);
  line-height: var(--font-h3--line-height);
  letter-spacing: var(--font-h3--letter-spacing);
  text-transform: var(--font-h3--case);
  color: var(--color);
}

@media screen and (max-width: 1200px) {
  input.h3,
  textarea.h3,
  select.h3 {
    font-size: max(1rem, var(--font-h3--size));
  }
}

h4,
.h4.h4,
.text-block.h4 > *,
.text-block.h4 :is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-h4--family);
  font-style: var(--font-h4--style);
  font-weight: var(--font-h4--weight);
  font-size: var(--font-h4--size);
  line-height: var(--font-h4--line-height);
  letter-spacing: var(--font-h4--letter-spacing);
  text-transform: var(--font-h4--case);
  color: var(--color);
}

@media screen and (max-width: 1200px) {
  input.h4.h4,
  textarea.h4.h4,
  select.h4.h4 {
    font-size: max(1rem, var(--font-h4--size));
  }
}

h5,
.h5.h5,
.text-block.h5 > *,
.text-block.h5 :is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-h5--family);
  font-style: var(--font-h5--style);
  font-weight: var(--font-h5--weight);
  font-size: var(--font-h5--size);
  line-height: var(--font-h5--line-height);
  letter-spacing: var(--font-h5--letter-spacing);
  text-transform: var(--font-h5--case);
  color: var(--color);
}

@media screen and (max-width: 1200px) {
  input.h5.h5,
  textarea.h5.h5,
  select.h5.h5 {
    font-size: max(1rem, var(--font-h5--size));
  }
}

h6,
.h6.h6,
.text-block.h6 > *,
.text-block.h6 :is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-h6--family);
  font-style: var(--font-h6--style);
  font-weight: var(--font-h6--weight);
  font-size: var(--font-h6--size);
  line-height: var(--font-h6--line-height);
  letter-spacing: var(--font-h6--letter-spacing);
  text-transform: var(--font-h6--case);
  color: var(--color);
}

@media screen and (max-width: 1200px) {
  input.h6.h6,
  textarea.h6.h6,
  select.h6.h6 {
    font-size: max(1rem, var(--font-h6--size));
  }
}

:first-child:is(.h1, .h2, .h3, .h4, .h5, .h6) {
  margin-block-start: 0;
}

:last-child:is(.h1, .h2, .h3, .h4, .h5, .h6) {
  margin-block-end: 0;
}

/* Links */
a {
  color: currentcolor;
  text-decoration-color: transparent;
  text-decoration-thickness: 0.075em;
  text-underline-offset: 0.125em;
  transition: text-decoration-color var(--animation-speed) var(--animation-easing),
    color var(--animation-speed) var(--animation-easing);
}

:is(h1, h2, h3, h4, h5, h6, p) > a:hover {
  color: rgb(var(--color-rgb, var(--color-foreground-rgb)) / 0.7);
}

/* Add underline to text using our paragraph styles only. */
p:not(.h1, .h2, .h3, .h4, .h5, .h6) a:where(:not(.button, .button-secondary)),
.rte :is(p, ul, ol, table):not(.h1, .h2, .h3, .h4, .h5, .h6) a:where(:not(.button, .button-secondary)) {
  text-decoration-color: currentcolor;

  &:hover {
    text-decoration-color: currentcolor;
    color: rgb(var(--color-rgb, var(--color-foreground-rgb)) / 0.7);
  }
}

.container-background-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

details[open] .summary-closed {
  display: none;
}

details:not([open]) .summary-open {
  display: none;
}

details[open] > summary .icon-animated > svg {
  transform: rotate(180deg);
}

/* iOS fix: hide the default arrow on the summary */
summary::-webkit-details-marker {
  display: none;
}

/* When header is transparent, pull the first main content section up to sit under the floating header */
body:has(.header[transparent]) .content-for-layout > .shopify-section:first-child {
  margin-top: calc(var(--header-group-height) * -1);
}

body:has(.header[transparent]) #header-group > .header-section {
  z-index: var(--layer-menu-drawer);
}

/* All other header group content should be beneath the floating header,
but above the rest of the page content */
body:has(.header[transparent]) #header-group > *:not(.header-section) {
  z-index: calc(var(--layer-menu-drawer) - 1);
}

.text-block {
  width: 100%;
}

.text-block > *:first-child,
.text-block > *:first-child:empty + * {
  margin-block-start: 0;
}

.text-block > *:last-child,
.text-block > *:has(+ *:last-child:empty) {
  margin-block-end: 0;
}

/* This is to deal with the margin applied to the p when custom styles are enabled. The p isn't the first child anymore due to the style tag */
.text-block > style + * {
  margin-block-start: 0;
}

/* Dialog */
.dialog-modal {
  border: none;
  box-shadow: var(--shadow-popover);

  @media screen and (min-width: 750px) {
    border-radius: var(--style-border-radius-popover);
    max-width: var(--normal-content-width);
  }

  @media screen and (max-width: 749px) {
    max-width: 100%;
    max-height: 100%;
    height: 100dvh;
    width: 100dvw;
    padding: var(--padding-md);
  }
}

.dialog-modal::backdrop {
  transition: backdrop-filter var(--animation-speed) var(--animation-easing);
  backdrop-filter: brightness(1);
  background: rgb(var(--backdrop-color-rgb) / var(--backdrop-opacity));
}

.dialog-modal[open] {
  animation: elementSlideInTop var(--animation-speed) var(--animation-easing) forwards;

  &::backdrop {
    animation: backdropFilter var(--animation-speed) var(--animation-easing) forwards;
    transition: opacity var(--animation-speed) var(--animation-easing);
  }
}

.dialog-modal.dialog-closing {
  animation: elementSlideOutTop var(--animation-speed) var(--animation-easing) forwards;

  &::backdrop {
    opacity: 0;
  }
}

/* stylelint-disable value-keyword-case */
.dialog-drawer {
  --dialog-drawer-opening-animation: move-and-fade;
  --dialog-drawer-closing-animation: move-and-fade;
}

.dialog-drawer--right {
  --dialog-drawer-opening-animation: move-and-fade;
  --dialog-drawer-closing-animation: move-and-fade;
}
/* stylelint-enable value-keyword-case */

.dialog-drawer[open] {
  --start-x: var(--custom-transform-from, 100%);
  --end-x: var(--custom-transform-to, 0px);
  --start-opacity: 1;

  animation: var(--dialog-drawer-opening-animation) var(--animation-speed) var(--animation-easing) forwards;
}

.dialog-drawer[open].dialog-closing {
  --start-x: 0px;
  --end-x: 100%;
  --start-opacity: 1;
  --end-opacity: 1;

  animation: var(--dialog-drawer-closing-animation) var(--animation-speed) var(--animation-easing);
}

.dialog-drawer--right[open] {
  --start-x: -100%;
  --start-opacity: 1;
}

.dialog-drawer--right[open].dialog-closing {
  --start-x: 0px;
  --end-x: -100%;
  --start-opacity: 1;
  --end-opacity: 1;

  animation: var(--dialog-drawer-closing-animation) var(--animation-speed) var(--animation-easing);
}

/* Buttons */
.button,
.button-secondary,
.button-custom,
button.shopify-payment-button__button--unbranded {
  --text-align: center;

  display: grid;
  align-content: center;
  text-decoration: none;
  text-align: var(--text-align);
  color: var(--button-color);
  appearance: none;
  background-color: var(--button-background-color);
  border: none;
  font-family: var(--font-paragraph--family);
  font-style: var(--font-paragraph--style);
  font-weight: var(--font-paragraph--weight);
  font-size: var(--font-paragraph--size);
  line-height: var(--font-paragraph--line-height);
  margin-block: 0;
  transition: color var(--animation-speed) var(--animation-easing),
    box-shadow var(--animation-speed) var(--animation-easing),
    background-color var(--animation-speed) var(--animation-easing);
  cursor: pointer;
  width: fit-content;
  box-shadow: inset 0 0 0 var(--button-border-width) var(--button-border-color);
  padding-block: var(--button-padding-block);
  padding-inline: var(--button-padding-inline);
}

.button {
  font-family: var(--button-font-family-primary);
  text-transform: var(--button-text-case-primary);
  border-radius: var(--style-border-radius-buttons-primary);
}

.button:not(.button-secondary, .button-unstyled) {
  outline-color: var(--button-focus-outline-color, var(--button-background-color));
}

.button-secondary {
  font-family: var(--button-font-family-secondary);
  text-transform: var(--button-text-case-secondary);
  border-radius: var(--style-border-radius-buttons-secondary);
}

button.shopify-payment-button__button--unbranded {
  font-family: var(--button-font-family-primary);
  text-transform: var(--button-text-case-primary);
}

textarea,
input:not([type='checkbox'], [type='radio']) {
  background-color: var(--color-input-background);
  border-color: var(--color-input-border);
}

textarea::placeholder,
input::placeholder {
  color: rgb(var(--color-input-text-rgb) / var(--opacity-muted-text));
}

textarea:not(:placeholder-shown)::placeholder,
input:not(:placeholder-shown)::placeholder {
  opacity: 0;
}

/* The declaration above is messing with buttons that have an attribute of hidden as it overwrites the display value */
.button[hidden] {
  display: none;
}

.button[aria-disabled='true'],
.button-secondary[aria-disabled='true'],
.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.button,
button.shopify-payment-button__button--unbranded {
  --button-color: var(--color-primary-button-text);
  --button-background-color: var(--color-primary-button-background);
  --button-border-color: var(--color-primary-button-border);
  --button-border-width: var(--style-border-width-primary);
  --button-focus-outline-color: var(--color-primary-button-focus-outline);
}

.button:hover,
button.shopify-payment-button__button--unbranded:hover:not([disabled]) {
  --button-color: var(--color-primary-button-hover-text);
  --button-background-color: var(--color-primary-button-hover-background);
  --button-border-color: var(--color-primary-button-hover-border);
}

.button-secondary {
  --button-color: var(--color-secondary-button-text);
  --button-background-color: var(--color-secondary-button-background);
  --button-border-color: var(--color-secondary-button-border);
  --button-border-width: var(--style-border-width-secondary);
}

.button-secondary:hover {
  --button-color: var(--color-secondary-button-hover-text);
  --button-background-color: var(--color-secondary-button-hover-background);
  --button-border-color: var(--color-secondary-button-hover-border);
}

.button-custom {
  --button-color: var(--color-primary-button-text);
  --button-background-color: var(--color-primary-button-background);
  --button-border-color: var(--color-primary-button-border);
  --button-border-width: var(--style-border-width-secondary);
  --button-focus-outline-color: var(--color-primary-button-focus-outline);

  font-family: var(--button-font-family-primary);
  text-transform: var(--button-text-case-primary);
  border-radius: var(--style-border-radius-buttons-primary);
  outline-color: var(--button-focus-outline-color, var(--button-background-color));
}

.button-custom:hover {
  --button-color: var(--color-primary-button-hover-text);
  --button-background-color: var(--color-primary-button-hover-background);
  --button-border-color: var(--color-primary-button-hover-border);
}

/* Needed to override the default Shopify styles */
button.shopify-payment-button__button--unbranded:hover:not([disabled]) {
  background-color: var(--button-background-color);
}

.button-unstyled {
  display: block;
  padding: 0;
  background-color: inherit;
  color: var(--color-foreground);
  border: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  font-family: var(--font-paragraph--family);
  font-style: var(--font-paragraph--style);
  font-size: var(--font-paragraph--size);
}

.button-unstyled:hover {
  background-color: inherit;
}

/* Default hover dim for link-style buttons, scoped via :where() so component-specific
   hover rules (.facets__clear-all-link, .header-actions__action, etc.) still win. */
:where(.button-unstyled):hover {
  --hover-color-rgb: var(--color-foreground-rgb);

  color: rgb(var(--hover-color-rgb) / var(--opacity-70));
}

.button-unstyled--with-icon {
  color: var(--color-foreground);
  display: flex;
  gap: var(--gap-2xs);
  align-items: center;
}

.button-unstyled--transparent {
  background-color: transparent;
  box-shadow: none;
}

/* Collapsible row */

.icon-caret svg {
  transition: transform var(--animation-speed) var(--animation-easing);
}

.icon-caret--forward svg {
  transform: rotate(-90deg);
}

.icon-caret--backward svg {
  transform: rotate(90deg);
}

summary {
  display: flex;
  align-items: center;
  cursor: pointer;
  list-style: none;
  padding-block: var(--padding-sm);
}

summary:hover {
  color: rgb(var(--color-foreground-rgb) / var(--opacity-80));
}

summary .svg-wrapper {
  margin-inline-start: auto;
  height: var(--icon-size-xs);
  width: var(--icon-size-xs);
  transition: transform var(--animation-speed) var(--animation-easing);
}

/* Shared plus/minus icon animations */
summary .icon-plus :is(.horizontal, .vertical) {
  transition: transform var(--animation-speed) var(--animation-easing);
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  opacity: 1;
}

details[open] > summary .icon-plus .horizontal {
  transform: rotate(90deg);
}

details[open] > summary .icon-plus .vertical {
  transform: rotate(90deg);
  opacity: 0;
}

/* Animate the UI elements in only after the view transition is complete */
.close-button {
  position: fixed;
  top: var(--margin-lg);
  right: var(--margin-lg);
  width: var(--minimum-touch-target);
  height: var(--minimum-touch-target);
  z-index: var(--layer-flat);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;

  /* For the outline radius */
  border-radius: 50%;
}

/* This triggers iOS < 16.4. The outline bug is not recognized as a lack of @supports */

@supports not (background-color: rgb(from red 150 g b / alpha)) {
  /**
    There is a bug in safari < 16.4 that causes the outline to not follow the elements border radius. This is a workaround.
    Using element selector to increase specificity.
  **/

  .close-button:focus-visible {
    outline: none;
    overflow: visible;
  }

  .close-button:focus-visible::after {
    content: '';
    position: absolute;
    inset: calc(-1 * var(--focus-outline-offset));
    border: var(--focus-outline-width) solid currentColor;
    border-radius: 50%;
    display: inherit;
  }
}

.dialog--closed .close-button {
  animation: elementSlideOutBottom calc(var(--animation-speed) * 0.5) var(--animation-easing) forwards;
}

.close-button:hover {
  background-color: transparent;
  opacity: 0.8;
}

.close-button svg {
  width: var(--icon-size-xs);
  height: var(--icon-size-xs);
}

/* Product media */
.product-media {
  display: flex;
  flex: 1;
}

.sticky-content {
  position: sticky;
  top: var(--sticky-header-offset, 0);
  z-index: var(--layer-flat);
}

@media screen and (min-width: 750px) {
  .sticky-content--desktop,
  .sticky-content--desktop.full-height--desktop > .group-block {
    position: sticky;
    top: var(--sticky-header-offset, 0);
    z-index: var(--layer-flat);
  }
}

.price,
.compare-at-price,
.unit-price {
  white-space: nowrap;
}

.unit-price {
  display: block;
  font-size: min(0.85em, var(--font-paragraph--size));
  color: rgb(var(--color-rgb, var(--color-foreground-rgb)) / var(--opacity-subdued-text));
}

.tax-note.tax-note.tax-note {
  font-size: min(0.85em, var(--font-paragraph--size));
  font-weight: var(--font-paragraph--weight);
  color: rgb(var(--color-rgb, var(--color-foreground-rgb)) / var(--opacity-subdued-text));
}

.tax-note:empty {
  display: none;
}

product-price.text-block:is(.h1, .h2, .h3, .h4, .h5, .h6) > *:not(.tax-note) {
  margin-block: 0;
}

/* Volume pricing note should match unit-price styling (small, grey text) */
product-price .volume-pricing-note,
product-price.text-block:is(.h1, .h2, .h3, .h4, .h5, .h6) .volume-pricing-note {
  display: block;
  font-family: var(--font-body--family);
  font-weight: normal;
  font-size: var(--font-size--xs);
  line-height: normal;
  letter-spacing: normal;
  text-transform: none;
  color: rgb(var(--color-rgb, var(--color-foreground-rgb)) / var(--opacity-subdued-text));
}

.compare-at-price {
  color: rgb(var(--color-rgb, var(--color-foreground-rgb)) / var(--opacity-subdued-text));
  text-decoration-line: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgb(var(--color-rgb, var(--color-foreground-rgb)) / var(--opacity-30));
}

.price-item__group {
  display: inline-block;
}

/* Spacing style */
.spacing-style {
  --spacing-scale: var(--spacing-scale-md);

  @media screen and (min-width: 990px) {
    --spacing-scale: var(--spacing-scale-default);
  }

  /* Must disable this, when you use these with calc and another unit type, things break — see logo.liquid */
  /* stylelint-disable length-zero-no-unit */
  --padding-block: 0px;
  --padding-block-start: var(--padding-block, 0px);
  --padding-block-end: var(--padding-block, 0px);
  --padding-inline: 0px;
  --padding-inline-start: var(--padding-inline, 0px);
  --padding-inline-end: var(--padding-inline, 0px);
  --margin-block: 0px;
  --margin-block-start: var(--margin-block, 0px);
  --margin-block-end: var(--margin-block, 0px);
  --margin-inline: 0px;
  --margin-inline-start: var(--margin-inline, 0px);
  --margin-inline-end: var(--margin-inline, 0px);
}

.spacing-style,
.inherit-spacing {
  padding-block: calc(var(--padding-block-start) + var(--section-top-offset, 0px)) var(--padding-block-end);
  padding-inline: var(--padding-inline-start) var(--padding-inline-end);
  margin-block: var(--margin-block-start) var(--margin-block-end);
  margin-inline: var(--margin-inline-start) var(--margin-inline-end);
}

/* Size style */
.size-style {
  width: var(--size-style-width-mobile, var(--size-style-width));
  height: var(--size-style-height-mobile, var(--size-style-height));

  @media screen and (min-width: 750px) {
    width: var(--size-style-width);
    height: var(--size-style-height);
  }
}

/* Custom Typography style */
.custom-typography,
.custom-typography > * {
  font-family: var(--font-family);
  font-weight: var(--font-weight);
  text-transform: var(--text-transform);
  text-wrap: var(--text-wrap);
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}

.custom-typography {
  h1 {
    line-height: var(--line-height--display, var(--line-height));
  }

  h2,
  h3,
  h4 {
    line-height: var(--line-height--heading, var(--line-height));
  }

  p {
    line-height: var(--line-height--body, var(--line-height));
  }
}

.custom-font-size,
.custom-font-size > * {
  font-size: var(--font-size);
}

.custom-font-weight,
.custom-font-weight > * {
  font-weight: var(--font-weight);
}

/* Border override style */
.border-style {
  border-width: var(--border-width);
  border-style: var(--border-style);
  border-color: var(--border-color);
  border-radius: var(--border-radius);
}

/* Gap scaling style */
.gap-style,
.layout-panel-flex {
  --gap-scale: var(--spacing-scale-md);

  @media screen and (min-width: 990px) {
    --gap-scale: var(--spacing-scale-default);
  }
}

.layout-panel-flex {
  display: flex;
  gap: var(--gap);
  height: 100%;
}

.shopify-block:has(> [shopify-block-empty]) {
  display: none;
}

.layout-panel-flex--row {
  flex-flow: row var(--flex-wrap);
  justify-content: var(--horizontal-alignment);
  align-items: var(--vertical-alignment);
}

.layout-panel-flex--column {
  flex-flow: column var(--flex-wrap);
  align-items: var(--horizontal-alignment);
  justify-content: var(--vertical-alignment);
}

@media screen and (max-width: 749px) {
  .mobile-column {
    flex-flow: column nowrap;
    align-items: var(--horizontal-alignment);
    justify-content: var(--vertical-alignment-mobile);
  }

  .layout-panel-flex--row:not(.mobile-column) {
    flex-wrap: var(--flex-wrap-mobile);
    height: auto;

    > .menu {
      flex: 1 1 min-content;
    }

    > .text-block {
      flex: 1 1 var(--max-width--display-tight);
    }

    > .image-block {
      flex: 1 1 var(--size-style-width-mobile-min);
    }

    > .button {
      flex: 0 0 fit-content;
    }

    > .group-block--height-fill {
      height: calc(var(--section-min-height, auto) - var(--section-height-offset, 0px));
    }
  }
}

@media screen and (min-width: 750px) {
  .layout-panel-flex {
    flex-direction: var(--flex-direction);
  }
}

/* Form fields */
.field {
  position: relative;
  width: 100%;
  display: flex;
  transition: box-shadow var(--animation-speed) ease;
}

.field__input {
  flex-grow: 1;
  text-align: left;
  border-radius: var(--style-border-radius-inputs);
  transition: box-shadow var(--animation-speed) ease, background-color var(--animation-speed) ease;
  padding: var(--input-padding);
  box-shadow: var(--input-box-shadow);
  background-color: var(--color-input-background);
  color: var(--color-input-text);
  border: none;
  outline: none;
  font-size: var(--font-paragraph--size);

  &:autofill {
    background-color: var(--color-input-background);
    color: var(--color-input-text);
  }
}

.field__input:focus {
  box-shadow: var(--input-box-shadow-focus);
}

.field__input--button-radius {
  border-radius: var(--style-border-radius-buttons-primary);
}

.field__input--button-padding {
  padding-inline: var(--padding-3xl);
}

.field__label {
  color: rgb(var(--color-input-text-rgb) / var(--opacity-80));
  font-size: var(--font-paragraph--size);
  left: var(--input-padding-x);
  top: 50%;
  transform: translateY(-50%);
  margin-bottom: 0;
  pointer-events: none;
  position: absolute;
  transition: top var(--animation-speed) ease, font-size var(--animation-speed) ease;
}

/* RTE styles */
.rte,
.shopify-policy__title {
  :is(h1, h2, h3, h4, h5, h6) {
    margin-block: clamp(1.5rem, 1em * 3.3, 2.5rem) var(--font-heading--spacing);
  }

  :first-child:is(p, h1, h2, h3, h4, h5, h6),
  :first-child:empty + :is(p, h1, h2, h3, h4, h5, h6) {
    margin-block-start: 0;
  }

  ul,
  ol {
    margin-block-start: 0;
    padding-inline-start: 1.5em;
  }

  /* Only apply margin-block-end to the higher level list, not nested lists */
  :is(ul, ol):not(:is(ul, ol) :is(ul, ol)) {
    margin-block-end: 1em;
  }

  blockquote {
    margin-inline: 1.5em 2.3em;
    margin-block: 3.8em;
    padding-inline-start: 0.8em;
    border-inline-start: 1.5px solid rgb(var(--color-foreground-rgb) / var(--opacity-25));
    font-style: italic;
    font-weight: 500;
  }

  .rte-table-wrapper {
    overflow-x: auto;
  }

  table {
    /* stylelint-disable-next-line declaration-no-important */
    width: 100% !important;
    border-collapse: collapse;
  }

  tr:not(:has(td)),
  thead {
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
    font-weight: bold;
    text-transform: uppercase;
  }

  tr:has(td) {
    border-bottom: 1px solid rgb(var(--color-foreground-rgb) / var(--opacity-10));
  }

  th,
  td {
    text-align: start;
    padding-inline: var(--padding-md);
    padding-block: var(--padding-sm);
  }
}

.shopify-policy__container {
  padding-block: var(--padding-xl);
}

/* Radio buttons and checkboxes - shared base styles */
:where(input[type='radio']),
:where(input[type='checkbox']) {
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  aspect-ratio: 1;
  margin: 0;
  margin-inline-end: var(--padding-3xs);
  padding: 0;
  border: var(--checkbox-border);
  appearance: none;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

/* Radio buttons */
input[type='radio'] {
  border-radius: var(--style-border-radius-50);
  background: transparent;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

:where(input[type='radio']):checked {
  border-color: var(--color-foreground);
  background: var(--color-background);
}

:where(input[type='radio']):checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(var(--checkbox-size) / 2);
  height: calc(var(--checkbox-size) / 2);
  background: var(--color-foreground);
  border-radius: var(--style-border-radius-50);
  transition: background 0.2s ease;
}

:where(input[type='radio']):disabled {
  border-color: var(--input-disabled-border-color);
  background-color: var(--input-disabled-background-color);
  cursor: not-allowed;
}

:where(input[type='radio']):disabled:checked::after {
  background: var(--input-disabled-background-color);
}

:where(input[type='radio']):not(:disabled):hover {
  border-color: rgb(var(--color-foreground-rgb) / var(--opacity-40-60));
  background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
}

:where(input[type='radio']):not(:disabled):hover:checked {
  border-color: var(--color-foreground);
  background-color: var(--color-background);
}

:where(input[type='radio']):not(:disabled):hover:checked::after {
  background: rgb(var(--color-foreground-rgb) / var(--opacity-85));
}

/* Checkboxes */
:where(input[type='checkbox']) {
  border-radius: var(--checkbox-border-radius);
  background-color: var(--color-background);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

:where(input[type='checkbox']):checked {
  background-color: var(--color-foreground);
  border-color: var(--color-foreground);
}

:where(input[type='checkbox']):checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  background-color: var(--color-background);
  mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.75439 10.7485L7.68601 14.5888C7.79288 14.7288 7.84632 14.7988 7.91174 14.8242C7.96907 14.8466 8.03262 14.8469 8.09022 14.8253C8.15596 14.8007 8.21026 14.7314 8.31886 14.5927L15.2475 5.74658' stroke='black' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

:where(input[type='checkbox']):not(:disabled):hover {
  border-color: rgb(var(--color-foreground-rgb) / var(--opacity-40-60));
  background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
}

:where(input[type='checkbox']):not(:disabled):hover:checked {
  border-color: var(--color-foreground);
  background-color: rgb(var(--color-foreground-rgb) / var(--opacity-85));
}

:where(input[type='checkbox']):disabled {
  background-color: var(--input-disabled-background-color);
  border-color: var(--input-disabled-border-color);
  cursor: not-allowed;
}

:where(input[type='checkbox']):disabled:checked::after {
  background-color: var(--input-disabled-text-color);
}

/* Shared styles for radio buttons and checkboxes */
:where(input[type='radio']) + label,
:where(input[type='checkbox']) + label {
  display: inline;
  vertical-align: middle;
  cursor: pointer;
}

:where(input[type='radio']):disabled + label,
:where(input[type='checkbox']):disabled + label {
  color: var(--input-disabled-text-color);
  cursor: not-allowed;
}

/* Flexbox for labels wrapping radio buttons or checkboxes */
label:has(input[type='radio']),
label:has(input[type='checkbox']) {
  display: inline-flex;
  align-items: center;
  gap: var(--padding-2xs);
  cursor: pointer;
}

label:has(input[type='radio']:disabled),
label:has(input[type='checkbox']:disabled) {
  cursor: not-allowed;
}

/* ------------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------------ */

/* Animation declarations - to be kept at the bottom of the file for ease of find */
@keyframes grow {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes move-and-fade {
  from {
    transform: translate(var(--start-x, 0), var(--start-y, 0));
    opacity: var(--start-opacity, 0);
  }

  to {
    transform: translate(var(--end-x, 0), var(--end-y, 0));
    opacity: var(--end-opacity, 1);
  }
}

@keyframes slideInTopViewTransition {
  from {
    transform: translateY(100px);
  }
}

@keyframes elementSlideInTop {
  from {
    margin-top: var(--padding-sm);
    opacity: 0;
  }

  to {
    margin-top: 0;
    opacity: 1;
  }
}

@keyframes elementSlideOutTop {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(var(--padding-sm));
    opacity: 0;
  }
}

@keyframes elementSlideInBottom {
  from {
    transform: translateY(calc(-1 * var(--padding-sm)));
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes elementSlideOutBottom {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(calc(-1 * var(--padding-sm)));
    opacity: 0;
  }
}

@keyframes thumbnailsSlideInTop {
  from {
    transform: translateY(calc(-50% + var(--margin-lg)));
    opacity: 0;
  }

  to {
    transform: translateY(-50%);
    opacity: 1;
  }
}

@keyframes thumbnailsSlideOutTop {
  from {
    transform: translateY(-50%);
    opacity: 1;
  }

  to {
    transform: translateY(calc(-50% + var(--margin-lg)));
    opacity: 0;
  }
}

@keyframes thumbnailsSlideInBottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes thumbnailsSlideOutBottom {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

@keyframes search-element-slide-in-bottom {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes search-element-slide-out-bottom {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

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

@keyframes dialogZoom {
  from {
    opacity: 1;
    transform: scale(1) translateY(0);
  }

  to {
    opacity: 0;
    transform: scale(0.95) translateY(1em);
  }
}

@keyframes thumbnail-selected {
  0%,
  100% {
    box-shadow: 0 0 0 2px transparent;
    scale: 0.9;
  }

  50% {
    box-shadow: 0 0 0 2px #000;
    scale: 1;
  }
}

@keyframes backdropFilter {
  from {
    backdrop-filter: brightness(1);
  }

  to {
    backdrop-filter: brightness(0.75);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modalSlideInTop {
  from {
    transform: translateY(var(--padding-sm));
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes modalSlideOutTop {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(var(--padding-sm));
    opacity: 0;
  }
}

/* Slideshow Arrow Hover Animation - must stay in base.css for proper CSS cascade */

:not(.media-gallery--carousel)
  > :is(slideshow-component:hover, slideshow-component:focus-within):not(:has(slideshow-controls:hover))
  > slideshow-container
  > slideshow-arrows
  .slideshow-control {
  animation: arrowsSlideIn var(--animation-speed) var(--animation-easing) forwards;
}

@keyframes arrowsSlideIn {
  from {
    transform: translate(var(--padding-sm), 0);
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.section-resource-list,
.section-carousel {
  row-gap: var(--gap);
}

.section-resource-list__content {
  display: flex;
  flex-direction: column;
  align-items: var(--horizontal-alignment);
  gap: var(--gap);
  width: 100%;
}

.section-resource-list__content:empty {
  display: none;
}

.section-resource-list__header:is(:empty, :has(.group-block-content:empty)),
.section-resource-list__content:empty {
  display: none;
}

:where(.section-resource-list.section--full-width) product-card[data-product-transition] > .group-block,
:where(.section-carousel.section--full-width) product-card[data-product-transition] > .group-block {
  @media screen and (max-width: 749px) {
    padding-inline: max(var(--padding-xs), var(--padding-inline-start))
      max(var(--padding-xs), var(--padding-inline-end));
  }
}

/* Base styles */
.group-block,
.group-block-content {
  position: relative;
}

.group-block:has(> video-background-component),
.group-block:has(> .background-image-container) {
  overflow: hidden;
}

.group-block-content {
  height: 100%;
  width: 100%;
}

/* Container styles */
.section-content-wrapper.section-content-wrapper:where(.layout-panel-flex) .group-block--fill {
  flex: 1;
}

/* Flex behavior for width variants */
.layout-panel-flex--row > .group-block--width-fit {
  flex: 0;
}

.layout-panel-flex--row > .group-block--width-fill {
  flex: 1;
}

.layout-panel-flex--row > .group-block--width-custom {
  flex-basis: var(--size-style-width);
}

/* Dimension utilities - Height */
.group-block--height-fit {
  height: auto;
}

.group-block--height-custom,
.group-block--height-fill {
  height: var(--size-style-height);
}

/* Flex behavior for height variants */
.layout-panel-flex--column > .group-block--height-fit {
  flex: 0 1 auto;
}

.layout-panel-flex--column > .group-block--height-fill {
  flex: 1;
}

.layout-panel-flex--column > .group-block--height-custom {
  flex-basis: var(--size-style-height);
}

/* Animation transitions */
.transition-background-color {
  transition: background-color var(--animation-speed-medium) ease-in-out;
}

.transition-transform {
  transition: transform var(--animation-speed-medium) var(--animation-timing-bounce);
}

.transition-border-color {
  transition: border-color var(--animation-speed-medium) var(--animation-timing-hover);
}

/* Global scrollbar styles */

/* Webkit browsers */
::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(var(--color-foreground-rgb) / var(--opacity-40));
  border-radius: 20px;
  border: 6px solid transparent;
  background-clip: content-box;
  transition: background-color 0.2s;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgb(var(--color-foreground-rgb) / var(--opacity-60));
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

.product-card:hover,
.collection-card:hover,
.predictive-search-results__card--product:hover,
.predictive-search-results__card:hover {
  position: relative;
  z-index: var(--layer-raised);
  transition: transform var(--hover-transition-duration) var(--hover-transition-timing),
    box-shadow var(--hover-transition-duration) var(--hover-transition-timing);
}

/* Prevent iOS zoom on input focus by ensuring minimum 16px font size on mobile */
@media screen and (max-width: 1200px) {
  input,
  textarea,
  select,
  /* Higher specificity to override type preset classes like .paragraph, .h1, etc. */
  .paragraph.paragraph input,
  .paragraph.paragraph textarea,
  .paragraph.paragraph select,
  .h1.h1 input,
  .h1.h1 textarea,
  .h1.h1 select,
  .h2.h2 input,
  .h2.h2 textarea,
  .h2.h2 select,
  .h3.h3 input,
  .h3.h3 textarea,
  .h3.h3 select,
  .h4.h4 input,
  .h4.h4 textarea,
  .h4.h4 select,
  .h5.h5 input,
  .h5.h5 textarea,
  .h5.h5 select,
  .h6.h6 input,
  .h6.h6 textarea,
  .h6.h6 select {
    font-size: max(1rem, 100%);
  }
}

/* When the header is transparent, and when there is no header-section below it, offset the first main-section with
 * the height of the header
 */
main > .shopify-section:first-child .section:not(.disable-section-top-offset) {
  &.spacing-style,
  .spacing-style {
    --section-top-offset: calc(var(--header-height) * var(--transparent-header-offset-boolean));

    /* Any nested sections should not be offset */
    :is(.spacing-style, .inherit-spacing) {
      --section-top-offset: 0px;
    }
  }

  /* Make sticky content immediately stick to the top of the page */
  .sticky-content {
    margin-top: calc(var(--header-height) * var(--transparent-header-offset-boolean) * -1);
  }
}

/* ==================================================
   K PLUG JEWELRY — CSS PROPRE
   ================================================== */


/* ==================================================
   1. FOND GLOBAL — BLEU DÉGRADÉ + LUEURS
   ================================================== */

html,
body,
.page-wrapper,
#MainContent {
  background:

    /* Lueur gauche */
    radial-gradient(
      circle at 8% 50%,
      rgba(85, 155, 245, 0.48) 0%,
      rgba(50, 115, 205, 0.25) 28%,
      transparent 55%
    ),

    /* Lueur droite */
    radial-gradient(
      circle at 92% 50%,
      rgba(85, 155, 245, 0.48) 0%,
      rgba(50, 115, 205, 0.25) 28%,
      transparent 55%
    ),

    /* Fond principal */
    linear-gradient(
      180deg,
      #203A5C 0%,
      #174A82 45%,
      #2366B8 100%
    ) !important;

  background-attachment: scroll !important;
}


/* ==================================================
   2. HEADER — BLEU FIXE EN DÉGRADÉ
   ================================================== */

header-component,
header-component .header__row--top,
header-component .header__underlay,
header-component .header__underlay-closed,
header-component .header__underlay-open {
  background:
    linear-gradient(
      90deg,
      #173A6B 0%,
      #123D78 50%,
      #0D3268 100%
    ) !important;

  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

header-component .header__row--top {
  border-bottom: 1px solid rgba(69, 182, 255, 0.30) !important;
}


/* ==================================================
   3. TEXTE DU HEADER
   ================================================== */

.header-menu .menu-list__link,
.header-menu .menu-list__link-title,
.header-actions,
.header-actions a,
.header-actions button,
.header-actions svg {
  color: #FFFFFF !important;

  transition:
    color 0.25s ease !important;
}


/* ==================================================
   4. EXPLORER — CAPSULE BLEUE
   ================================================== */

/* Explorer au repos */
.header-menu .menu-list__link[aria-haspopup="true"] {
  background: transparent !important;

  border: 1px solid #45B6FF !important;
  border-radius: 999px !important;

  padding: 8px 19px !important;

  transition:
    background-color 0.25s ease,
    border-color 0.25s ease !important;
}

/* Texte Explorer bleu */
.header-menu
.menu-list__link[aria-haspopup="true"]
.menu-list__link-title {
  color: #45B6FF !important;
}

/* Explorer au passage de la souris */
.header-menu .menu-list__link[aria-haspopup="true"]:hover {
  background: #249CFF !important;
  border-color: #5DC2FF !important;

  box-shadow: none !important;
}

/* Texte Explorer blanc au hover */
.header-menu
.menu-list__link[aria-haspopup="true"]:hover
.menu-list__link-title {
  color: #FFFFFF !important;
}


/* ==================================================
   5. G-SHOCKS / PERSONNALISER
   BLEU AU HOVER — SANS BRILLANCE
   ================================================== */

.header-menu
.menu-list__link:not([aria-haspopup="true"]):hover
.menu-list__link-title {
  color: #45B6FF !important;

  text-shadow: none !important;
  filter: none !important;
}


/* ==================================================
   6. RECHERCHER / PANIER
   BLEU AU HOVER — SANS BRILLANCE
   ================================================== */

.header-actions a:hover,
.header-actions button:hover {
  color: #45B6FF !important;

  text-shadow: none !important;
  filter: none !important;
}


/* ==================================================
   SOUS-MENU EXPLORER — BLOC UNIQUE
   ================================================== */

.header-menu .menu-list__submenu {
  background: #10366D !important;

  border: 1px solid rgba(69, 182, 255, 0.35) !important;
  border-radius: 0 0 16px 16px !important;

  height: auto !important;
  min-height: fit-content !important;
  max-height: none !important;

  padding: 8px 0 !important;
  margin: 0 !important;

  overflow: visible !important;
}

/* Tous les éléments restent dans le même bloc */
.header-menu .menu-list__submenu > *,
.header-menu .menu-list__submenu li,
.header-menu .menu-list__submenu a {
  position: relative !important;

  background: #10366D !important;

  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

/* Texte */
.header-menu .menu-list__submenu *,
.header-menu .menu-list__submenu a,
.header-menu .menu-list__submenu span,
.header-menu .menu-list__submenu .menu-list__link-title {
  color: #FFFFFF !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Hover */
.header-menu .menu-list__submenu a:hover,
.header-menu .menu-list__submenu a:hover .menu-list__link-title {
  color: #45B6FF !important;
}

/* ==================================================
   10. FOOTER — PLUS FONCÉ QUE LE HEADER
   ================================================== */

footer,
.footer,
footer-group,
.shopify-section-group-footer-group {
  background:
    linear-gradient(
      90deg,
      #0C2851 0%,
      #0D3264 50%,
      #081F46 100%
    ) !important;

  color: #FFFFFF !important;
}


/* Texte du footer */
footer *,
.footer *,
.shopify-section-group-footer-group * {
  color: #FFFFFF !important;
}


/* Liens footer : bleu au hover, sans glow */
footer a:hover,
.footer a:hover,
.shopify-section-group-footer-group a:hover {
  color: #45B6FF !important;

  text-shadow: none !important;
  filter: none !important;
}

/* Retire la petite barre sous le sous-menu */
.header-menu .menu-list__submenu {
  border-bottom: none !important;
}

.header-menu .menu-list__submenu::after,
.header-menu .menu-list__submenu::before {
  border: none !important;
  box-shadow: none !important;
}

/* ===== MARQUEUR HOVER EXPLORER ===== */

.header-menu .menu-list__submenu a {
  display: inline-block !important;
  width: auto !important;

  padding: 5px 10px !important;
  border-radius: 4px !important;

  transition:
    background-color 0.18s ease,
    color 0.18s ease !important;
}

/* Quand la souris passe sur À PROPOS / MOISSANITE / SOINS / FAQ */
.header-menu .menu-list__submenu a:hover {
  background: #082750 !important;
  color: #FFFFFF !important;
}

/* ==================================================
   K PLUG — EXPLORER VERSION PC
   ================================================== */

@media screen and (min-width: 750px) {

  /* ===== EXPLORER AU REPOS ===== */

  .header-menu .menu-list__link[aria-haspopup="true"] {
    background: rgba(30, 112, 190, 0.28) !important;

    border: 0.7px solid rgba(69, 182, 255, 0.85) !important;
    border-radius: 999px !important;

    padding: 8px 19px !important;

    box-shadow: none !important;

    transition:
      background-color 0.2s ease,
      border-color 0.2s ease,
      color 0.2s ease,
      box-shadow 0.2s ease !important;
  }


  /* ===== TEXTE EXPLORER ===== */

  .header-menu
  .menu-list__link[aria-haspopup="true"]
  .menu-list__link-title {
    color: #59BDFF !important;

    transition: color 0.2s ease !important;
  }


  /* ===== EXPLORER AU SURVOL ===== */

  .header-menu
  .menu-list__link[aria-haspopup="true"]:hover {
    background: #249CFF !important;

    border-color: #6AC7FF !important;

    box-shadow: 0 0 14px rgba(36, 156, 255, 0.28) !important;
  }


  /* Texte blanc au survol */

  .header-menu
  .menu-list__link[aria-haspopup="true"]:hover
  .menu-list__link-title {
    color: #FFFFFF !important;
  }

}

/* ==================================================
   K PLUG — HEADER PC
   MÊME BLEU QUE LE FOOTER + MOBILE
   ================================================== */

@media screen and (min-width: 750px) {

  /* ===== FOND PRINCIPAL DU HEADER ===== */

  header-component .header__row--top {
    background: linear-gradient(
      180deg,
      #0B376F 0%,
      #082F62 55%,
      #062A57 100%
    ) !important;

    background-color: #082F62 !important;

    border-bottom: 1px solid rgba(69, 182, 255, 0.18) !important;
  }


  /* ===== NEUTRALISE LE FOND DU THÈME ===== */

  header-component .header__underlay,
  header-component .header__underlay-closed,
  header-component .header__underlay-open {
    background: linear-gradient(
      180deg,
      #0B376F 0%,
      #082F62 55%,
      #062A57 100%
    ) !important;

    background-color: #082F62 !important;
  }


  /* ===== COUCHES INTERNES TRANSPARENTES ===== */

  header-component .header__columns,
  header-component .header__column,
  header-component .header-menu {
    background-color: transparent !important;
  }

}

/* ==================================================
   K PLUG — FOOTER
   MÊME BLEU QUE LE HEADER
   ================================================== */

footer,
.footer,
footer-component,
.shopify-section-group-footer-group {
  background: linear-gradient(
    180deg,
    #0B376F 0%,
    #082F62 55%,
    #062A57 100%
  ) !important;

  background-color: #082F62 !important;
}


/* ===== ÉLÉMENTS INTERNES DU FOOTER ===== */

footer *,
.footer *,
footer-component * {
  --color-background: transparent !important;
}


/* Empêche les blocs internes de remettre
   une autre couleur par-dessus */
footer .section,
.footer .section,
footer-component .section {
  background: transparent !important;
}


/* Petite séparation bleue en haut du footer */
footer,
.footer,
footer-component {
  border-top: 1px solid rgba(69, 182, 255, 0.18) !important;
}

/* ==================================================
   K PLUG — HEADER MOBILE
   EXPLORER À GAUCHE
   ================================================== */

@media screen and (max-width: 749px) {

  /* ==================================================
     1. HEADER
     ================================================== */

  header-component .header__row--top {
    min-height: 68px !important;
    padding: 0 14px !important;

    background: linear-gradient(
      180deg,
      #0B376F 0%,
      #082F62 55%,
      #062A57 100%
    ) !important;

    background-color: #082F62 !important;

    border-bottom: 1px solid rgba(69, 182, 255, 0.18) !important;
  }


  header-component .header__underlay,
  header-component .header__underlay-closed,
  header-component .header__underlay-open {
    background: linear-gradient(
      180deg,
      #0B376F 0%,
      #082F62 55%,
      #062A57 100%
    ) !important;

    background-color: #082F62 !important;
  }


  /* ==================================================
     2. STRUCTURE DU HEADER
     ================================================== */

  .header__columns {
    position: relative !important;

    display: flex !important;
    align-items: center !important;

    width: 100% !important;
    min-height: 68px !important;

    background: transparent !important;
  }





  /* ==================================================
     4. CAPSULE ☰ EXPLORER
     ================================================== */

  header-drawer summary.header__icon--menu {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 118px !important;
    min-width: 118px !important;

    height: 42px !important;
    min-height: 42px !important;

    margin: 0 !important;
    padding: 0 !important;

    background: rgba(30, 112, 190, 0.28) !important;

    border: 0.7px solid rgba(69, 182, 255, 0.85) !important;
    border-radius: 999px !important;

    box-sizing: border-box !important;

    cursor: pointer !important;

    transition:
      background-color 0.2s ease,
      border-color 0.2s ease !important;
  }


  /* Cache le hamburger original */
  header-drawer summary.header__icon--menu svg {
    display: none !important;
  }


  /* ☰ EXPLORER */
  header-drawer summary.header__icon--menu::after {
    content: "☰  EXPLORER";

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #59BDFF !important;

    font-size: 9px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;

    line-height: 1 !important;
    text-align: center !important;
    white-space: pre !important;

    box-sizing: border-box !important;

    transition: color 0.2s ease !important;
  }


  /* Explorer hover */
  header-drawer summary.header__icon--menu:hover {
    background: #249CFF !important;
    border-color: #6AC7FF !important;
  }

  header-drawer summary.header__icon--menu:hover::after {
    color: #FFFFFF !important;
  }


  /* ==================================================
     5. LOGO + K PLUG JEWELRY
     ================================================== */

  .header__column--left {
    display: flex !important;
    align-items: center !important;

    width: auto !important;
    min-width: 0 !important;

    gap: 8px !important;

    margin-left: 132px !important;
    margin-right: 0 !important;
  }


  .header-logo {
    flex-shrink: 0 !important;
  }


  .header__column--left::after {
    content: "K PLUG JEWELRY" !important;

    display: block !important;

    color: #FFFFFF !important;

    font-size: 9px !important;
    font-weight: 600 !important;
    letter-spacing: 1.7px !important;

    line-height: 1 !important;
    white-space: nowrap !important;

    text-transform: uppercase !important;

    pointer-events: none !important;
  }


  /* ==================================================
     6. MASQUE LES ÉLÉMENTS PC
     ================================================== */

  .header__column--center {
    display: none !important;
  }


  search-button.search-action {
    display: none !important;
  }


  .header__column--right
  .header-actions__action:has(cart-icon) {
    display: none !important;
  }


  /* ==================================================
     7. DRAWER
     IMPORTANT : ON LAISSE SAVOR LE GÉRER
     ================================================== */

  header-drawer .menu-drawer,
  header-drawer [ref="menuDrawer"] {
    background: linear-gradient(
      180deg,
      #0B376F 0%,
      #082F62 55%,
      #0B4A93 100%
    ) !important;

    color: #FFFFFF !important;
  }


  header-drawer .menu-drawer a,
  header-drawer [ref="menuDrawer"] a {
    color: #FFFFFF !important;
  }


  header-drawer .menu-drawer a:hover,
  header-drawer [ref="menuDrawer"] a:hover {
    color: #45B6FF !important;
  }

}

/* ==================================================
   K PLUG — MENU MOBILE CLEARCUT
   ICÔNES LUCIDE FINES + CARTES BLEUES
   ================================================== */

@media screen and (max-width: 749px) {

  /* ==================================================
     FOND DU MENU
     ================================================== */

  header-drawer .menu-drawer {
    background:
      radial-gradient(
        circle at 12% 18%,
        rgba(59, 148, 255, 0.24) 0%,
        transparent 42%
      ),
      radial-gradient(
        circle at 88% 80%,
        rgba(38, 118, 235, 0.28) 0%,
        transparent 46%
      ),
      linear-gradient(
        180deg,
        #0B376F 0%,
        #082F62 55%,
        #0B4A93 100%
      ) !important;

    color: #FFFFFF !important;
  }


  /* ==================================================
     ESPACEMENT GLOBAL
     ================================================== */

  header-drawer .menu-drawer__navigation {
    padding: 34px 18px 42px !important;
  }


  /* ==================================================
     PETIT TITRE EXPLORER
     ================================================== */

  header-drawer .menu-drawer__navigation::before {
    content: "EXPLORER";

    display: block;
    grid-column: 1 / -1;

    margin: 0 0 22px 4px;

    color: rgba(180, 215, 255, 0.62);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;

    text-transform: uppercase;
  }


  /* ==================================================
     GRILLE 2 COLONNES
     ================================================== */

  header-drawer .menu-drawer__menu.has-submenu {
    display: grid !important;

    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

    gap: 12px !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
  }


  /* ==================================================
     SUPPRIME LE DEUXIÈME EXPLORER
     ================================================== */

  #HeaderDrawer-explorer {
    display: none !important;
  }

  .menu-drawer__list-item--flat:has(> #HeaderDrawer-explorer) {
    display: contents !important;
  }

  #HeaderDrawer-explorer
  + .menu-drawer__menu--childlist {
    display: contents !important;
  }


  /* ==================================================
     CONTENEURS DES CARTES
     ================================================== */

  header-drawer
  .menu-drawer__menu.has-submenu
  > li,

  #HeaderDrawer-explorer
  + .menu-drawer__menu--childlist
  > li {
    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
  }


  /* ==================================================
     CARTES BLEUES AVEC RELIEF
     ================================================== */

  header-drawer
  .menu-drawer__menu.has-submenu
  > li
  > a,

  #HeaderDrawer-explorer
  + .menu-drawer__menu--childlist
  > li
  > a {
    position: relative !important;

    display: flex !important;
    align-items: center !important;

    gap: 11px !important;

    width: 100% !important;
    min-height: 72px !important;

    padding: 0 13px !important;

    background: transparent !important;

    border: none !important;
border-bottom: 1px solid rgba(36, 152, 245, 0.28) !important;

    border-radius: 0 !important;

    color: #FFFFFF !important;

    text-decoration: none !important;

    box-sizing: border-box !important;

    box-shadow: none !important;

    transition:
      transform 0.18s ease,
      background 0.18s ease,
      border-color 0.18s ease !important;
  }


  /* ==================================================
     BASE COMMUNE DES ICÔNES LUCIDE
     ================================================== */

  header-drawer
  .menu-drawer__menu.has-submenu
  > li
  > a::before,

  #HeaderDrawer-explorer
  + .menu-drawer__menu--childlist
  > li
  > a::before {
    content: "";

    display: block;

    flex: 0 0 24px;

    width: 24px;
    height: 24px;

    background-color: #59BDFF;

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;

    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;

    opacity: 0.95;
  }


  /* ==================================================
     G-SHOCKS — WATCH
     ================================================== */

  header-drawer
  .menu-drawer__menu.has-submenu
  > li:nth-child(1)
  > a::before {
    -webkit-mask-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 10v2.2l1.6 1'/%3E%3Cpath d='m16.13 7.66-.81-4.05a2 2 0 0 0-2-1.61h-2.68a2 2 0 0 0-2 1.61l-.78 4.05'/%3E%3Cpath d='m7.88 16.36.8 4a2 2 0 0 0 2 1.61h2.72a2 2 0 0 0 2-1.61l.81-4.05'/%3E%3Ccircle cx='12' cy='12' r='6'/%3E%3C/svg%3E");

    mask-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 10v2.2l1.6 1'/%3E%3Cpath d='m16.13 7.66-.81-4.05a2 2 0 0 0-2-1.61h-2.68a2 2 0 0 0-2 1.61l-.78 4.05'/%3E%3Cpath d='m7.88 16.36.8 4a2 2 0 0 0 2 1.61h2.72a2 2 0 0 0 2-1.61l.81-4.05'/%3E%3Ccircle cx='12' cy='12' r='6'/%3E%3C/svg%3E");
  }


  /* ==================================================
     PERSONNALISER — SCAN BOX
     ================================================== */

  header-drawer
  .menu-drawer__menu.has-submenu
  > li:nth-child(2)
  > a::before {
    -webkit-mask-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 12v5.5'/%3E%3Cpath d='M17 3h2a2 2 0 012 2v2'/%3E%3Cpath d='M21 17v2a2 2 0 01-2 2h-2'/%3E%3Cpath d='M3 7V5a2 2 0 012-2h2'/%3E%3Cpath d='M7 21H5a2 2 0 01-2-2v-2'/%3E%3Cpath d='M7.264 9.252 12 12l4.737-2.748'/%3E%3Cpath d='M7.995 8.514A2 2 0 007 10.244v3.516a2 2 0 00.996 1.73l3 1.74a2 2 0 002.008 0l3-1.74A2 2 0 0017 13.76v-3.517a2 2 0 00-.995-1.73l-3-1.742a2 2 0 00-1.892-.064z'/%3E%3C/svg%3E");

    mask-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 12v5.5'/%3E%3Cpath d='M17 3h2a2 2 0 012 2v2'/%3E%3Cpath d='M21 17v2a2 2 0 01-2 2h-2'/%3E%3Cpath d='M3 7V5a2 2 0 012-2h2'/%3E%3Cpath d='M7 21H5a2 2 0 01-2-2v-2'/%3E%3Cpath d='M7.264 9.252 12 12l4.737-2.748'/%3E%3Cpath d='M7.995 8.514A2 2 0 007 10.244v3.516a2 2 0 00.996 1.73l3 1.74a2 2 0 002.008 0l3-1.74A2 2 0 0017 13.76v-3.517a2 2 0 00-.995-1.73l-3-1.742a2 2 0 00-1.892-.064z'/%3E%3C/svg%3E");
  }


  /* ==================================================
     MOISSANITE — GEM
     ================================================== */

  header-drawer
  .menu-drawer__menu.has-submenu
  > li:nth-child(3)
  > a::before {
    -webkit-mask-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.5 3 8 9l4 13 4-13-2.5-6'/%3E%3Cpath d='M17 3a2 2 0 011.6.8l3 4a2 2 0 01.013 2.382l-7.99 10.986a2 2 0 01-3.247 0l-7.99-10.986A2 2 0 012.4 7.8l2.998-3.997A2 2 0 017 3z'/%3E%3Cpath d='M2 9h20'/%3E%3C/svg%3E");

    mask-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.5 3 8 9l4 13 4-13-2.5-6'/%3E%3Cpath d='M17 3a2 2 0 011.6.8l3 4a2 2 0 01.013 2.382l-7.99 10.986a2 2 0 01-3.247 0l-7.99-10.986A2 2 0 012.4 7.8l2.998-3.997A2 2 0 017 3z'/%3E%3Cpath d='M2 9h20'/%3E%3C/svg%3E");
  }


  /* ==================================================
     À PROPOS — INFO
     ================================================== */

  #HeaderDrawer-explorer
  + .menu-drawer__menu--childlist
  > li:nth-child(1)
  > a::before {
    -webkit-mask-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4'/%3E%3Cpath d='M12 8h.01'/%3E%3C/svg%3E");

    mask-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4'/%3E%3Cpath d='M12 8h.01'/%3E%3C/svg%3E");
  }


  /* ==================================================
     SOINS — SPARKLES
     ================================================== */

  #HeaderDrawer-explorer
  + .menu-drawer__menu--childlist
  > li:nth-child(2)
  > a::before {
    -webkit-mask-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11.017 2.814a1 1 0 011.966 0l1.051 5.558a2 2 0 001.594 1.594l5.558 1.051a1 1 0 010 1.966l-5.558 1.051a2 2 0 00-1.594 1.594l-1.051 5.558a1 1 0 01-1.966 0l-1.051-5.558a2 2 0 00-1.594-1.594l-5.558-1.051a1 1 0 010-1.966l5.558-1.051a2 2 0 001.594-1.594z'/%3E%3Cpath d='M20 2v4'/%3E%3Cpath d='M22 4h-4'/%3E%3Ccircle cx='4' cy='20' r='2'/%3E%3C/svg%3E");

    mask-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11.017 2.814a1 1 0 011.966 0l1.051 5.558a2 2 0 001.594 1.594l5.558 1.051a1 1 0 010 1.966l-5.558 1.051a2 2 0 00-1.594 1.594l-1.051 5.558a1 1 0 01-1.966 0l-1.051-5.558a2 2 0 00-1.594-1.594l-5.558-1.051a1 1 0 010-1.966l5.558-1.051a2 2 0 001.594-1.594z'/%3E%3Cpath d='M20 2v4'/%3E%3Cpath d='M22 4h-4'/%3E%3Ccircle cx='4' cy='20' r='2'/%3E%3C/svg%3E");
  }


  /* ==================================================
     FAQ — CIRCLE QUESTION MARK
     ================================================== */

  #HeaderDrawer-explorer
  + .menu-drawer__menu--childlist
  > li:nth-child(3)
  > a::before {
    -webkit-mask-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M9.09 9a3 3 0 015.83 1c0 2-3 3-3 3'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E");

    mask-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M9.09 9a3 3 0 015.83 1c0 2-3 3-3 3'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E");
  }


  /* ==================================================
     TEXTE DES CARTES
     ================================================== */

  header-drawer .menu-drawer__menu-item-text {
    color: #FFFFFF !important;

    font-size: 10px !important;
    font-weight: 700 !important;

    letter-spacing: 1.3px !important;
    line-height: 1.2 !important;

    text-transform: uppercase !important;
    white-space: normal !important;
  }


  /* ==================================================
     PETITE FLÈCHE À DROITE
     ================================================== */

  header-drawer
  .menu-drawer__menu.has-submenu
  > li
  > a::after,

  #HeaderDrawer-explorer
  + .menu-drawer__menu--childlist
  > li
  > a::after {
    content: "›";

    margin-left: auto;

    color: rgba(190, 225, 255, 0.72);

    font-size: 19px;
    font-weight: 300;

    line-height: 1;
  }


  /* ==================================================
     HOVER / APPUI
     ================================================== */

  header-drawer
  .menu-drawer__menu.has-submenu
  > li
  > a:hover,

  #HeaderDrawer-explorer
  + .menu-drawer__menu--childlist
  > li
  > a:hover {
    transform: translateY(-1px);

    background:
      radial-gradient(
        circle at 10% 0%,
        rgba(82, 190, 255, 0.40),
        transparent 56%
      ),
      linear-gradient(
        135deg,
        #1266B8 0%,
        #0B4D98 52%,
        #07356F 100%
      ) !important;

    border-color: #45B6FF !important;
  }


  /* Icône légèrement plus lumineuse au hover */
  header-drawer
  .menu-drawer__menu.has-submenu
  > li
  > a:hover::before,

  #HeaderDrawer-explorer
  + .menu-drawer__menu--childlist
  > li
  > a:hover::before {
    background-color: #8DD7FF;
  }


  /* ==================================================
     BOUTON FERMER
     ================================================== */

  header-drawer .menu-drawer__close-button {
    color: #FFFFFF !important;

    margin: 12px 14px 0 auto !important;

    opacity: 0.75 !important;
  }

}

@media screen and (max-width: 749px) {

  /* Un peu plus de place pour le texte */
  header-drawer
  .menu-drawer__menu.has-submenu
  > li
  > a,

  #HeaderDrawer-explorer
  + .menu-drawer__menu--childlist
  > li
  > a {
    gap: 8px !important;
    padding: 0 10px !important;
  }

  /* Texte sur une seule ligne */
  header-drawer .menu-drawer__menu-item-text {
    font-size: 9px !important;
    letter-spacing: 1px !important;

    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;

    flex: 1 1 auto !important;
    min-width: 0 !important;
  }

  /* Icônes un peu plus compactes */
  header-drawer
  .menu-drawer__menu.has-submenu
  > li
  > a::before,

  #HeaderDrawer-explorer
  + .menu-drawer__menu--childlist
  > li
  > a::before {
    flex-basis: 21px !important;
    width: 21px !important;
    height: 21px !important;
  }

  /* Flèche un peu plus proche */
  header-drawer
  .menu-drawer__menu.has-submenu
  > li
  > a::after,

  #HeaderDrawer-explorer
  + .menu-drawer__menu--childlist
  > li
  > a::after {
    margin-left: 4px !important;
  }
}

/* ==================================================
   K PLUG — FOND MENU MOBILE
   DÉGRADÉ BLEU PLUS CONTRASTÉ
   ================================================== */

@media screen and (max-width: 749px) {

  header-drawer .menu-drawer {
    background:
      /* Halo bleu électrique en bas à droite */
      radial-gradient(
        ellipse at 88% 78%,
        rgba(0, 119, 255, 0.95) 0%,
        rgba(0, 82, 220, 0.65) 20%,
        rgba(0, 52, 150, 0.25) 48%,
        transparent 70%
      ),

      /* Bleu plus lumineux derrière les boutons */
      radial-gradient(
        ellipse at 20% 20%,
        rgba(0, 112, 255, 0.48) 0%,
        rgba(0, 67, 170, 0.20) 38%,
        transparent 62%
      ),

      /* Dégradé principal */
      linear-gradient(
        145deg,
        #03132f 0%,
        #05255a 28%,
        #063b88 55%,
        #0754b6 76%,
        #0878e8 100%
      ) !important;

    background-attachment: fixed !important;
    color: #ffffff !important;
  }

}


/* ==================================================
   K PLUG — HEADER MOBILE FINAL
   Logo + nom à gauche / Explorer à droite
   ================================================== */

@media screen and (max-width: 749px) {

  /* La rangée du header utilise toute la largeur */
  header-component .header__row--top {
    grid-template-columns: 1fr !important;
  }

  /* Conteneur principal */
  header-component .header__columns {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* La colonne gauche contient :
     Explorer + logo + nom */
  header-component .header__column--left {
    display: flex !important;
    align-items: center !important;

    width: 100% !important;
    max-width: 100% !important;

    padding: 0 !important;
    margin: 0 !important;

    gap: 7px !important;

    position: relative !important;
  }

  /* ==================================================
     LOGO À GAUCHE
     ================================================== */

  header-component .header-logo {
    order: 1 !important;

    position: static !important;
    transform: none !important;

    margin: 0 !important;

    flex: 0 0 auto !important;
  }

  /* K PLUG JEWELRY juste après le logo */
  header-component .header__column--left::after {
    content: "K PLUG JEWELRY" !important;

    order: 2 !important;

    display: block !important;

    color: #FFFFFF !important;

    font-size: 9px !important;
    font-weight: 600 !important;
    letter-spacing: 1.7px !important;

    line-height: 1 !important;
    white-space: nowrap !important;

    margin: 0 !important;

    pointer-events: none !important;
  }

  /* ==================================================
     EXPLORER COMPLÈTEMENT À DROITE
     ================================================== */

  header-component .header__drawer {
    order: 3 !important;

    margin-left: auto !important;
    margin-right: 0 !important;

    width: auto !important;
    flex: 0 0 auto !important;

    position: static !important;
    transform: none !important;
  }

  /* ==================================================
     CACHE LES COLONNES INUTILES SUR MOBILE
     ================================================== */

  header-component .header__column--center,
  header-component .header__column--right {
    display: none !important;
  }

  /* Recherche cachée */
  header-component search-button {
    display: none !important;
  }

}

/* =========================================
   K PLUG — EXPLORER DESKTOP
   Sous-menu ajusté au contenu
   ========================================= */

@media screen and (min-width: 750px) {

  .menu-list__submenu {
    height: fit-content !important;
    min-height: 0 !important;
    max-height: none !important;

    padding-bottom: 12px !important;
  }

  .menu-list__submenu .submenu {
    height: auto !important;
    min-height: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

}

/* K PLUG — réduire l'espace sous FAQ sur PC */
@media screen and (min-width: 750px) {

  .menu-list__submenu-inner {
    padding-block-end: 6px !important;
    padding-bottom: 6px !important;
  }

}

/* ==================================================
   K PLUG JEWELRY HUB — STYLE CLEARCUT
   ================================================== */

.kplug-hub {
  position: fixed !important;
  left: 50% !important;
  bottom: 10px !important;
  transform: translateX(-50%) !important;

  width: min(94%, 980px) !important;

  padding: 8px 18px 12px !important;

  background:
    radial-gradient(
      circle at 15% 100%,
      rgba(28, 130, 255, 0.22),
      transparent 42%
    ),
    linear-gradient(
      90deg,
      #07366F 0%,
      #06316A 52%,
      #092B5C 100%
    ) !important;

  border: 1px solid rgba(69, 182, 255, 0.22) !important;
  border-radius: 14px !important;

  box-shadow:
    0 -8px 28px rgba(0, 18, 50, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.05) !important;

  z-index: 999999 !important;
}


/* ===== K PLUG JEWELRY HUB ===== */

.kplug-hub__title {
  width: min(640px, 78%) !important;
  min-height: 34px !important;

  margin: 0 auto 8px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  color: #63BFFF !important;

  font-size: 9px !important;
  font-weight: 600 !important;
  letter-spacing: 3.5px !important;

  text-transform: uppercase !important;

  background: rgba(5, 38, 90, 0.36) !important;

  border: 1px solid rgba(69, 182, 255, 0.25) !important;
  border-radius: 9px !important;
}


/* ===== NAVIGATION ===== */

.kplug-hub__nav {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;

  align-items: center !important;

  width: 100% !important;

  gap: 8px !important;
}


/* ===== CHAQUE ÉLÉMENT ===== */

.kplug-hub__item {
  display: flex !important;
  flex-direction: column !important;

  align-items: center !important;
  justify-content: center !important;

  gap: 5px !important;

  min-height: 42px !important;

  color: rgba(195, 220, 250, 0.58) !important;

  text-decoration: none !important;

  font-size: 7px !important;
  font-weight: 600 !important;
  letter-spacing: 0.9px !important;

  text-transform: uppercase !important;

  transition:
    color 0.2s ease,
    transform 0.2s ease !important;
}


/* ===== PETITE ICÔNE SIMPLE AU-DESSUS ===== */

.kplug-hub__item::before {
  display: block !important;

  color: #4EAFFF !important;

  font-size: 15px !important;
  line-height: 1 !important;

  opacity: 0.82 !important;

  transition:
    color 0.2s ease,
    transform 0.2s ease !important;
}

/* ===== HOVER ===== */

.kplug-hub__item:hover {
  color: #FFFFFF !important;
  transform: translateY(-1px) !important;
}

.kplug-hub__item:hover::before {
  color: #7DD0FF !important;
  transform: translateY(-1px) !important;
}


/* ==================================================
   K PLUG HUB — TAILLE DES ICÔNES
   ================================================== */

.kplug-hub__item svg {
  width: 18px !important;
  height: 18px !important;

  display: block !important;

  color: #4EAFFF !important;
  stroke: currentColor !important;

  flex-shrink: 0 !important;

  opacity: 0.9 !important;

  margin-bottom: 5px !important;

  transition:
    color 0.2s ease,
    transform 0.2s ease !important;
}

/* Texte sous les icônes */
.kplug-hub__item span {
  font-size: 7px !important;
  font-weight: 600 !important;
  letter-spacing: 0.9px !important;

  color: rgba(200, 225, 255, 0.65) !important;

  text-transform: uppercase !important;
  white-space: nowrap !important;
}

/* Hover */
.kplug-hub__item:hover svg {
  color: #7DD0FF !important;
  transform: translateY(-1px) !important;
}

.kplug-hub__item:hover span {
  color: #FFFFFF !important;
}

/* K PLUG HUB — PLEINE LARGEUR */

.kplug-hub {
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;

  width: 100% !important;
  max-width: none !important;

  transform: none !important;

  margin: 0 !important;

  border-radius: 0 !important;
}

/* =========================================
   K PLUG JEWELRY HUB — ALIGNEMENT DES ITEMS
   ========================================= */

/* Le HUB reste sur toute la largeur */
.kplug-hub {
  width: 100% !important;
  max-width: none !important;
  left: 0 !important;
  right: 0 !important;
  margin: 35px 0 0 !important;
}



/* Titre centré et largeur similaire à ClearCut */
.kplug-hub__title {
  width: min(640px, 90%) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Les 6 catégories sont regroupées au centre */
.kplug-hub__nav {
  width: min(700px, 92%) !important;
  max-width: 700px !important;

  margin-left: auto !important;
  margin-right: auto !important;

  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;

  align-items: center !important;
  justify-content: center !important;

  gap: 0 !important;
}

/* Chaque catégorie occupe EXACTEMENT la même largeur */
.kplug-hub__item {
  width: 100% !important;
  min-width: 0 !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  text-align: center !important;

  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
}

/* Même position pour toutes les icônes */
.kplug-hub__item svg {
  width: 18px !important;
  height: 18px !important;
  margin: 0 auto 6px !important;
  flex-shrink: 0 !important;
}

/* Texte parfaitement centré sous l'icône */
.kplug-hub__item span {
  display: block !important;
  width: 100% !important;

  text-align: center !important;
  white-space: nowrap !important;
}

/* =========================================
   K PLUG HUB — ESPACEMENT PARFAITEMENT ÉGAL
   ========================================= */

.kplug-hub__nav {
  width: 540px !important;
  max-width: 90% !important;

  margin: 0 auto !important;

  display: flex !important;
  align-items: flex-start !important;
  justify-content: center !important;

  gap: 0 !important;
}

/* Chaque catégorie prend EXACTEMENT la même largeur */
.kplug-hub__item {
  flex: 0 0 90px !important;
  width: 90px !important;
  min-width: 90px !important;
  max-width: 90px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;

  margin: 0 !important;
  padding: 0 !important;

  text-align: center !important;
}

/* Icônes */
.kplug-hub__item svg {
  width: 21px !important;
  height: 21px !important;

  margin: 0 auto 7px !important;

  flex-shrink: 0 !important;
}

/* Texte */
.kplug-hub__item span {
  display: block !important;

  width: 100% !important;

  font-size: 8px !important;
  font-weight: 600 !important;
  letter-spacing: 0.6px !important;

  line-height: 1 !important;
  text-align: center !important;

  white-space: nowrap !important;
}

/* Maison du K PLUG JEWELRY HUB */

.kplug-hub__title {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  gap: 8px !important;
}

.kplug-hub__home-icon {
  width: 14px !important;
  height: 14px !important;

  flex-shrink: 0 !important;

  color: #4EAFFF !important;
  stroke: currentColor !important;

  opacity: 0.95 !important;
}

/* =========================================
   K PLUG JEWELRY HUB — EFFET HOVER
   ========================================= */

.kplug-hub__title {
  /* État normal : transparent */
  background: rgba(20, 115, 190, 0.16) !important;

  border: 1px solid rgba(70, 180, 255, 0.55) !important;
  border-radius: 12px !important;

  cursor: pointer !important;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease !important;
}

/* État normal du texte + maison */
.kplug-hub__title span,
.kplug-hub__title .kplug-hub__home-icon {
  color: #58baff !important;
  transition: color 0.25s ease !important;
}

/* Quand la souris passe dessus */
.kplug-hub__title:hover {
  background: #35aaff !important;

  border-color: #55c4ff !important;

  box-shadow:
    0 0 12px rgba(53, 170, 255, 0.30),
    inset 0 0 10px rgba(255, 255, 255, 0.08) !important;
}

/* Texte + maison plus clairs au survol */
.kplug-hub__title:hover span,
.kplug-hub__title:hover .kplug-hub__home-icon {
  color: #ffffff !important;
}

/* ==================================================
   K PLUG HUB — MOBILE / 6 ITEMS SUR UNE LIGNE
   ================================================== */

@media screen and (max-width: 749px) {

  .kplug-hub {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    padding: 7px 5px 9px !important;
    box-sizing: border-box !important;
  }

  /* K PLUG JEWELRY HUB */
  .kplug-hub__title {
    width: calc(100% - 20px) !important;
    max-width: none !important;

    min-height: 30px !important;

    margin: 0 auto 10px !important;
  }

  .kplug-hub__title span {
    font-size: 8px !important;
    letter-spacing: 2px !important;
  }

  .kplug-hub__home-icon {
    width: 13px !important;
    height: 13px !important;
  }

  /* LES 6 SUR UNE SEULE LIGNE */
  .kplug-hub__nav {
    width: 100% !important;
    max-width: none !important;

    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;

    gap: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
  }

  /* Chaque catégorie = exactement 1/6 */
  .kplug-hub__item {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;

    padding: 0 1px !important;
    margin: 0 !important;

    text-align: center !important;
  }

  /* Icônes */
  .kplug-hub__item svg {
    width: 17px !important;
    height: 17px !important;

    margin: 0 auto 6px !important;
  }

  /* Noms */
  .kplug-hub__item span {
    width: 100% !important;

    font-size: 5.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;

    line-height: 1 !important;
    white-space: nowrap !important;

    text-align: center !important;
  }

  body {
    padding-bottom: 100px !important;
  }
}

/* =========================================
   K PLUG HUB — MOBILE 4 CATÉGORIES
   ========================================= */

@media screen and (max-width: 749px) {

  /* Cache SOINS (5) et FAQ (6) uniquement sur téléphone */
  .kplug-hub__item:nth-child(5),
  .kplug-hub__item:nth-child(6) {
    display: none !important;
  }

  /* Navigation avec 4 colonnes égales */
  .kplug-hub__nav {
    width: 100% !important;
    max-width: none !important;

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

    gap: 0 !important;

    margin: 0 auto !important;
    padding: 0 8px !important;

    box-sizing: border-box !important;
  }

  /* Chaque catégorie */
  .kplug-hub__item {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    margin: 0 !important;
  }

  /* Icônes plus grandes */
  .kplug-hub__item svg {
    width: 21px !important;
    height: 21px !important;

    margin: 0 auto 7px !important;
  }

  /* Texte plus lisible */
  .kplug-hub__item span {
    width: 100% !important;

    font-size: 7px !important;
    font-weight: 600 !important;
    letter-spacing: 0.25px !important;

    line-height: 1 !important;
    white-space: nowrap !important;

    text-align: center !important;
  }
}

/* =========================================
   K PLUG JEWELRY HUB — TITRE PLUS GRAND
   ========================================= */

/* PC */
.kplug-hub__title span {
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 2.5px !important;
}

.kplug-hub__home-icon {
  width: 17px !important;
  height: 17px !important;
}

/* MOBILE */
@media screen and (max-width: 749px) {

  .kplug-hub__title span {
    font-size: 9px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
  }

  .kplug-hub__home-icon {
    width: 16px !important;
    height: 16px !important;
  }

  /* Un peu plus de hauteur pour que ça respire */
  .kplug-hub__title {
    min-height: 36px !important;
  }
}

/* =========================================
   K PLUG JEWELRY HUB — TITRE PLUS GRAND
   ========================================= */

/* PC */
.kplug-hub__title span {
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 2.5px !important;
}

.kplug-hub__home-icon {
  width: 17px !important;
  height: 17px !important;
}

/* MOBILE */
@media screen and (max-width: 749px) {

  .kplug-hub__title span {
    font-size: 9px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
  }

  .kplug-hub__home-icon {
    width: 16px !important;
    height: 16px !important;
  }

  /* Un peu plus de hauteur pour que ça respire */
  .kplug-hub__title {
    min-height: 36px !important;
  }
}

/* Cache le K PLUG JEWELRY HUB quand EXPLORER est ouvert */
body:has(.menu-drawer-container.menu-open) .kplug-hub {
  display: none !important;
}

/* =========================================
   K PLUG HUB — GLASS / BLUR
   ========================================= */

.kplug-hub {
  background: rgba(3, 42, 91, 0.78) !important;

  -webkit-backdrop-filter: blur(14px) saturate(130%) !important;
  backdrop-filter: blur(14px) saturate(130%) !important;

  border-top: 1px solid rgba(74, 181, 255, 0.20) !important;

  box-shadow:
    0 -8px 30px rgba(0, 25, 65, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

/* Barre K PLUG JEWELRY HUB */
.kplug-hub__title {
  background: rgba(16, 102, 172, 0.14) !important;

  border: 1px solid rgba(80, 190, 255, 0.42) !important;

  -webkit-backdrop-filter: blur(8px) !important;
  backdrop-filter: blur(8px) !important;
}

/* Hover comme actuellement */
.kplug-hub__title:hover {
  background: rgba(48, 174, 255, 0.90) !important;

  border-color: rgba(100, 205, 255, 0.90) !important;

  box-shadow:
    0 0 15px rgba(40, 170, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

a,
button,
summary,
[role="button"] {
  -webkit-tap-highlight-color: transparent !important;
}

a:focus,
button:focus,
summary:focus,
[role="button"]:focus {
  outline: none !important;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[role="button"]:focus-visible {
  outline: 1px solid #45B6FF !important;
  outline-offset: 3px !important;
}

/* =========================================
   K PLUG HEADER — GLASS / BLUR
   ========================================= */

header-component .header__row--top {
  background: rgba(5, 37, 82, 0.76) !important;

  -webkit-backdrop-filter: blur(14px) saturate(130%) !important;
  backdrop-filter: blur(14px) saturate(130%) !important;

  border-bottom: 1px solid rgba(74, 181, 255, 0.18) !important;

  box-shadow:
    0 6px 22px rgba(0, 20, 55, 0.14),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03) !important;
}

/* Même rendu sur les couches du header au scroll */
header-component .header__underlay,
header-component .header__underlay-closed,
header-component .header__underlay-open {
  background: rgba(5, 37, 82, 0.45) !important;

  -webkit-backdrop-filter: blur(14px) saturate(130%) !important;
  backdrop-filter: blur(14px) saturate(130%) !important;
}

/* On évite qu'une autre couche opaque reprenne le dessus */
header-component {
  background: transparent !important;
}

/* =========================================================
   K PLUG JEWELRY — HERO ACCUEIL
   VERSION COMPACTE TYPE CLEARCUT
   ========================================================= */

.kplug-hero {
  --mouse-x: 50%;
  --mouse-y: 50%;

  position: relative;
  isolation: isolate;

  /* BEAUCOUP PLUS PETIT */
  width: calc(100% - 80px);
  max-width: 720px;
  min-height: 380px;

  margin: 28px auto;
  padding: 32px 38px;

  display: grid;
  grid-template-columns: 1fr 210px;
  align-items: center;
  gap: 32px;

  overflow: hidden;

  background:
    radial-gradient(
      240px circle at var(--mouse-x) var(--mouse-y),
      rgba(70, 170, 255, 0.22),
      rgba(25, 110, 220, 0.08) 38%,
      transparent 70%
    ),
    linear-gradient(
      135deg,
      #123866 0%,
      #17477f 48%,
      #1859a0 100%
    );

  border: 1px solid rgba(84, 160, 255, 0.42);
  border-radius: 26px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 38px rgba(0, 20, 55, 0.20);

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

/* K PLUG HERO — PETITE BULLE LOGO */

.kplug-hero__logo {
  width: 62px;
  height: 62px;

  margin-bottom: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: rgba(5, 37, 82, 0.35);

  border: 1px solid rgba(95, 180, 255, 0.45);
  border-radius: 15px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 20px rgba(0, 20, 55, 0.15);
}

.kplug-hero__logo img {
  display: block;

  width: 46px !important;
  height: 46px !important;

  max-width: 46px !important;
  max-height: 46px !important;

  object-fit: contain;
}

/* =========================================
   K PLUG HERO — VIDEO / REEL
   ========================================= */

.kplug-hero__media {
  position: relative;
  z-index: 2;

  justify-self: end;

  width: 190px;
  aspect-ratio: 9 / 16;

  padding: 5px;

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(115, 195, 255, 0.75),
      rgba(20, 84, 180, 0.28)
    );

  box-shadow:
    0 16px 30px rgba(0, 15, 45, 0.32),
    0 0 0 1px rgba(95, 180, 255, 0.18),
    0 0 26px rgba(44, 142, 255, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.kplug-hero__media-inner {
  width: 100%;
  height: 100%;

  overflow: hidden;

  border-radius: 17px;

  background:
    linear-gradient(
      145deg,
      #0b315d,
      #145291
    );
}

.kplug-hero__media video,
.kplug-hero__media img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.kplug-hero__video-placeholder {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(190, 225, 255, 0.72);

  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.2px;

  text-transform: uppercase;
}

/* =========================================================
   K PLUG JEWELRY — HERO ACCUEIL COMPACT
   ========================================================= */

.kplug-hero {
  --mouse-x: 50%;
  --mouse-y: 50%;

  position: relative;
  isolation: isolate;

  width: calc(100% - 80px);
  max-width: 570px;
  min-height: 340px;

  margin: 26px auto;
  padding: 26px 30px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 185px;
  align-items: center;

  /* Petit espace entre texte et vidéo */
  gap: 14px;

  overflow: hidden;

  background:
    radial-gradient(
      220px circle at var(--mouse-x) var(--mouse-y),
      rgba(70, 170, 255, 0.22),
      rgba(25, 110, 220, 0.08) 38%,
      transparent 70%
    ),
    linear-gradient(
      135deg,
      #123866 0%,
      #17477f 48%,
      #1859a0 100%
    );

  border: 1px solid rgba(84, 160, 255, 0.42);
  border-radius: 24px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 34px rgba(0, 20, 55, 0.20);

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}


/* =========================================================
   LUEUR QUI SUIT LA SOURIS
   ========================================================= */

.kplug-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(
      220px circle at var(--mouse-x) var(--mouse-y),
      rgba(42, 157, 255, 0.26),
      rgba(0, 105, 255, 0.08) 40%,
      transparent 72%
    );
}


/* =========================================================
   CONTENU GAUCHE
   ========================================================= */

.kplug-hero__content {
  position: relative;
  z-index: 2;

  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  /* Remonte légèrement tout le bloc */
  transform: translateY(-6px);
}


/* =========================================================
   LOGO
   ========================================================= */

.kplug-hero__logo {
  width: 62px;
  height: 62px;

  margin-bottom: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border-radius: 15px;

  background: rgba(4, 31, 70, 0.45);

  border: 1px solid rgba(69, 169, 255, 0.55);

  box-shadow:
    0 0 16px rgba(34, 145, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.kplug-hero__logo img {
  display: block;

  width: 46px !important;
  height: 46px !important;

  max-width: 46px !important;
  max-height: 46px !important;

  object-fit: contain;
}


/* =========================================================
   TITRE
   ========================================================= */

.kplug-hero__title {
  margin: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  font-size: clamp(40px, 4vw, 58px);
  font-weight: 800;

  line-height: 0.94;
  letter-spacing: 1px;

  text-transform: uppercase;
}

.kplug-hero__title-main {
  color: #ffffff;

  text-shadow:
    0 4px 16px rgba(0, 0, 0, 0.18);
}

.kplug-hero__title-blue {
  color: #2498ff;

  text-shadow:
    0 0 20px rgba(36, 152, 255, 0.18);
}


/* =========================================================
   PHRASE SOUS LE TITRE
   ========================================================= */

.kplug-hero__tagline {
  position: relative;

  margin: 20px 0 0;
  padding-top: 16px;

  max-width: 260px;

  color: rgba(240, 246, 255, 0.88);

  font-size: 12px;
  font-weight: 500;

  line-height: 1.45;

  text-transform: none;
}

.kplug-hero__tagline::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(45, 157, 255, 0.85),
      rgba(45, 157, 255, 0.30),
      transparent
    );

  box-shadow:
    0 0 8px rgba(45, 157, 255, 0.25);
}

.kplug-hero__tagline strong {
  color: #39a7ff;

  font-weight: 700;

  text-shadow:
    0 0 12px rgba(57, 167, 255, 0.15);
}


/* =========================================================
   VIDEO / REEL
   ========================================================= */

.kplug-hero__media {
  position: relative;
  z-index: 2;

  justify-self: start;

  width: 185px;
  aspect-ratio: 9 / 16;

  padding: 4px;

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      #70c7ff 0%,
      #278fff 40%,
      #166bd8 100%
    );

  box-shadow:
    0 14px 32px rgba(0, 15, 45, 0.30),
    0 0 0 1px rgba(110, 199, 255, 0.30),
    0 0 20px rgba(32, 145, 255, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.40);
}


/* Halo derrière le Reel */

.kplug-hero__media::before {
  content: "";

  position: absolute;

  inset: 8% -12%;

  z-index: -1;

  border-radius: 30px;

  background: rgba(35, 143, 255, 0.16);

  filter: blur(22px);
}


/* =========================================================
   INTERIEUR VIDEO
   ========================================================= */

.kplug-hero__media-inner {
  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;

  border-radius: 18px;

  background:
    linear-gradient(
      160deg,
      #092c58,
      #0b3c75
    );

  box-shadow:
    inset 0 0 24px rgba(0, 0, 0, 0.22);
}

.kplug-hero__media video,
.kplug-hero__media img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 18px;
}


/* =========================================================
   PLACEHOLDER VIDEO
   ========================================================= */

.kplug-hero__video-placeholder {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #55adff;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;
}


/* =========================================================
   HOVER
   ========================================================= */

.kplug-hero:hover {
  border-color: rgba(88, 178, 255, 0.8);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 18px 44px rgba(0, 20, 55, 0.22);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  .kplug-hero {
    width: calc(100% - 16px);
    max-width: none;
    min-height: auto;

    margin: 10px auto;
    padding: 22px 16px 20px;

    grid-template-columns: 1fr;
    gap: 4px;

    border-radius: 22px;
  }

  .kplug-hero__content {
    align-items: center;
    text-align: center;

    transform: none;
  }

  .kplug-hero__logo {
    width: 56px;
    height: 56px;

    margin-bottom: 16px;
  }

  .kplug-hero__logo img {
    width: 41px !important;
    height: 41px !important;

    max-width: 41px !important;
    max-height: 41px !important;
  }

  .kplug-hero__title {
    align-items: center;

    font-size: 42px;
  }

  .kplug-hero__tagline {
    max-width: 270px;

    margin-top: 18px;

    font-size: 11px;

    text-align: center;
  }

  .kplug-hero__tagline::before {
    left: 50%;

    width: 80%;

    transform: translateX(-50%);
  }

  .kplug-hero__media {
    justify-self: center;

    width: 170px;
  }
}

/* =========================================================
   K PLUG HERO — VERSION MOBILE COMPACTE
   ========================================================= */

@media screen and (max-width: 749px) {

  /* ===== RECTANGLE PRINCIPAL ===== */

  .kplug-hero {
    width: calc(100% - 16px) !important;
    max-width: 500px !important;

    /* Aucune hauteur forcée */
    height: auto !important;
    min-height: 0 !important;

    margin: 10px auto !important;
    padding: 24px 18px !important;

    display: grid !important;

    /* Texte à gauche / Reel à droite */
    grid-template-columns: minmax(0, 1fr) 125px !important;

    align-items: center !important;

    /* Très peu d'espace entre les deux */
    gap: 8px !important;

    border-radius: 22px !important;

    overflow: hidden;
  }


  /* =========================================================
     PARTIE GAUCHE
     ========================================================= */

  .kplug-hero__content {
    position: relative;
    z-index: 2;

    width: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    transform: none !important;
  }


  /* =========================================================
     LOGO
     ========================================================= */

  .kplug-hero__logo {
    width: 52px !important;
    height: 52px !important;

    margin: 0 auto 16px !important;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;
  }

  .kplug-hero__logo img {
    width: 39px !important;
    height: 39px !important;

    max-width: 39px !important;
    max-height: 39px !important;

    object-fit: contain;
  }


  /* =========================================================
     TITRE
     ========================================================= */

  .kplug-hero__title {
    margin: 0 !important;

    display: flex;
    flex-direction: column;

    align-items: center;

    font-size: 31px !important;
    line-height: 0.95 !important;

    letter-spacing: 0.3px;

    text-align: center;
  }

  .kplug-hero__title-main {
    color: #ffffff;
  }

  .kplug-hero__title-blue {
    color: #2498ff;
  }


  /* =========================================================
     PETITE PHRASE
     ========================================================= */

  .kplug-hero__tagline {
    position: relative;

    width: 100%;
    max-width: 175px !important;

    margin: 20px auto 0 !important;
    padding-top: 14px !important;

    font-size: 9px !important;
    line-height: 1.45 !important;

    text-align: center;
  }


  /* Petite ligne bleue */

  .kplug-hero__tagline::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 90%;

    height: 1px;

    transform: translateX(-50%);

    background: linear-gradient(
      90deg,
      transparent,
      rgba(45, 157, 255, 0.9),
      transparent
    );
  }


  /* Texte important */

  .kplug-hero__tagline strong {
    color: #39a7ff;
  }


  /* =========================================================
     REEL À DROITE
     ========================================================= */

  .kplug-hero__media {
    position: relative;
    z-index: 2;

    width: 125px !important;

    justify-self: center !important;
    align-self: center !important;

    aspect-ratio: 9 / 16;

    padding: 3px !important;

    border-radius: 19px !important;
  }


  /* Intérieur */

  .kplug-hero__media-inner {
    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: 16px !important;
  }


  /* Vidéo */

  .kplug-hero__media video,
  .kplug-hero__media img {
    display: block;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover;

    border-radius: 16px !important;
  }


  /* AJOUTE TA VIDÉO */

  .kplug-hero__video-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 6px !important;
    letter-spacing: 0.5px;

    text-align: center;
  }

}


/* =========================================================
   TRÈS PETITS TÉLÉPHONES
   ========================================================= */

@media screen and (max-width: 390px) {

  .kplug-hero {
    width: calc(100% - 12px) !important;

    height: auto !important;
    min-height: 0 !important;

    padding: 20px 12px !important;

    grid-template-columns: minmax(0, 1fr) 112px !important;

    gap: 6px !important;
  }


  .kplug-hero__media {
    width: 112px !important;
  }


  .kplug-hero__title {
    font-size: 28px !important;
  }


  .kplug-hero__logo {
    width: 48px !important;
    height: 48px !important;

    margin-bottom: 14px !important;
  }


  .kplug-hero__logo img {
    width: 36px !important;
    height: 36px !important;

    max-width: 36px !important;
    max-height: 36px !important;
  }


  .kplug-hero__tagline {
    max-width: 155px !important;

    margin-top: 17px !important;

    font-size: 8px !important;
  }

}

/* =========================================
   K PLUG HERO — CONTOUR REEL UNIFIÉ
   PC + MOBILE
   ========================================= */

.kplug-hero__media {
  position: relative;

  padding: 4px !important;

  border-radius: 20px !important;

  background:
    linear-gradient(
      145deg,
      rgba(90, 180, 255, 0.95) 0%,
      rgba(40, 120, 225, 0.82) 45%,
      rgba(18, 75, 165, 0.78) 100%
    ) !important;

  box-shadow:
    0 0 0 1px rgba(120, 195, 255, 0.32),
    0 8px 20px rgba(0, 18, 55, 0.24),
    0 0 14px rgba(45, 145, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}


/* Deuxième contour intérieur */

.kplug-hero__media-inner {
  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;

  border-radius: 16px !important;

  background: #082c5a !important;

  border: 1px solid rgba(8, 45, 105, 0.95) !important;

  box-shadow:
    inset 0 0 0 1px rgba(95, 170, 255, 0.16),
    inset 0 0 18px rgba(0, 15, 45, 0.18) !important;
}


/* Vidéo parfaitement collée au cadre */

.kplug-hero__media video,
.kplug-hero__media img {
  display: block;

  width: 100% !important;
  height: 100% !important;

  object-fit: cover;

  border-radius: 15px !important;
}


/* On garde exactement le même style sur mobile */

@media screen and (max-width: 749px) {

  .kplug-hero__media {
    padding: 4px !important;
    border-radius: 20px !important;
  }

  .kplug-hero__media-inner {
    border-radius: 16px !important;
  }

  .kplug-hero__media video,
  .kplug-hero__media img {
    border-radius: 15px !important;
  }
}

/* =========================================================
   K PLUG — ICED G-SHOCKS CARD
   ========================================================= */

.kplug-stock-card {
  position: relative;

  display: block;

  width: calc(100% - 80px);
  max-width: 570px;

  margin: 12px auto 26px;
  padding: 18px 22px;

  overflow: hidden;

  color: #ffffff !important;
  text-decoration: none !important;

  background:
    linear-gradient(
      135deg,
      rgba(4, 49, 105, 0.96),
      rgba(4, 64, 135, 0.96)
    );

  border: 1px solid rgba(79, 171, 255, 0.30);
  border-radius: 16px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 24px rgba(0, 20, 55, 0.16);

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}


/* =========================================================
   ICON + TITRE
   ========================================================= */

.kplug-stock-card__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 7px;
  margin-bottom: 6px;
}


.kplug-stock-card__icon {
  width: 22px;
  height: 22px;

  flex-shrink: 0;

  color: #45b6ff;

  /* Rend le dessin plus épais */
  stroke-width: 2.2px;

  filter:
    drop-shadow(0 0 5px rgba(69, 182, 255, 0.30));
}


.kplug-stock-card__title {
  color: #ffffff;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}


/* =========================================================
   PETITE DESCRIPTION
   ========================================================= */

.kplug-stock-card__text {
  margin: 0;

  color: rgba(215, 230, 248, 0.72);

  font-size: 11px;
  font-weight: 400;

  line-height: 1.4;
}


/* =========================================================
   SURBRILLANCE AUTOMATIQUE
   ========================================================= */



/* =========================================================
   HOVER
   ========================================================= */

.kplug-stock-card:hover {
  background:
    linear-gradient(
      135deg,
      rgba(8, 75, 156, 0.98),
      rgba(8, 95, 190, 0.98)
    );

  border-color: rgba(81, 185, 255, 0.65);

  box-shadow:
    0 12px 28px rgba(0, 22, 60, 0.20),
    0 0 18px rgba(44, 145, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);

  transform: translateY(-1px);
}


/* =========================================================
   AU CLIC
   ========================================================= */

.kplug-stock-card:active {
  background:
    linear-gradient(
      135deg,
      #1c95ff,
      #1479df
    );

  border-color: #69c7ff;

  transform: scale(0.985);

  box-shadow:
    0 0 16px rgba(53, 170, 255, 0.30),
    inset 0 0 12px rgba(255, 255, 255, 0.08);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  .kplug-stock-card {
    width: calc(100% - 16px);

    margin: 8px auto 18px;
    padding: 15px 17px;

    border-radius: 15px;
  }

  .kplug-stock-card__icon {
    width: 17px;
    height: 17px;
  }

  .kplug-stock-card__title {
    font-size: 10px;
    letter-spacing: 1.2px;
  }

  .kplug-stock-card__text {
    font-size: 9px;
  }
}

/* =========================================================
   K PLUG — CARTE PERSONNALISER
   ========================================================= */

.kplug-custom-card {
  margin-top: -12px;
}


/* Icône Personnaliser */

.kplug-custom-card__icon {
  width: 22px;
  height: 22px;

  flex-shrink: 0;

  color: #45b6ff;

  stroke-width: 2.2px;

  filter:
    drop-shadow(0 0 5px rgba(69, 182, 255, 0.30));
}


/* Mobile */

@media screen and (max-width: 749px) {

  .kplug-custom-card {
    margin-top: -7px;
  }

  .kplug-custom-card__icon {
    width: 21px;
    height: 21px;
  }

}

/* =========================================
   PERSONNALISER — ICÔNE SCAN BOX
   ========================================= */

.kplug-custom-card__icon {
  width: 22px !important;
  height: 22px !important;

  color: #45b6ff;

  stroke-width: 2.2px;

  filter:
    drop-shadow(0 0 5px rgba(69, 182, 255, 0.30));
}


/* =========================================
   SUPPRIME LA BRILLANCE AUTOMATIQUE
   UNIQUEMENT SUR PERSONNALISER
   ========================================= */

.kplug-custom-card::before {
  display: none !important;
  animation: none !important;
}

/* =========================================
   K PLUG — CARTE MOISSANITE
   ========================================= */

.kplug-moissanite-card {
  margin-top: -12px;
}

/* Icône diamant */

.kplug-moissanite-card__icon {
  width: 22px !important;
  height: 22px !important;

  color: #45b6ff;

  stroke-width: 2.2px;

  filter:
    drop-shadow(0 0 5px rgba(69, 182, 255, 0.30));
}

/* Pas de surbrillance automatique */
.kplug-moissanite-card::before {
  display: none !important;
  animation: none !important;
}


/* Mobile */

@media screen and (max-width: 749px) {

  .kplug-moissanite-card {
    margin-top: -7px;
  }

  .kplug-moissanite-card__icon {
    width: 21px !important;
    height: 21px !important;
  }

}

/* =========================================================
   K PLUG — SOCIAL GRID
   ========================================================= */

.kplug-social-grid {
  width: calc(100% - 80px);
  max-width: 570px;

  margin: -10px auto 30px;

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

  gap: 10px;
}


/* =========================================================
   BASE DES 4 RECTANGLES
   ========================================================= */

.kplug-social-card {
  position: relative;

  min-height: 105px;

  padding: 17px 18px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  overflow: hidden;

  border-radius: 16px;

  color: #ffffff !important;
  text-decoration: none !important;

  border: 1px solid rgba(105, 190, 255, 0.22);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 8px 22px rgba(0, 15, 45, 0.16);

  transition:
    transform 0.18s ease,
    filter 0.22s ease,
    box-shadow 0.22s ease;
}


/* =========================================================
   ICÔNES
   ========================================================= */

.kplug-social-card__icon {
  position: relative;
  z-index: 2;

  width: 21px;
  height: 21px;

  margin-bottom: 10px;

  stroke-width: 2.1;

  filter:
    drop-shadow(0 0 5px rgba(255,255,255,0.18));
}


/* =========================================================
   TITRES
   ========================================================= */

.kplug-social-card__title {
  position: relative;
  z-index: 2;

  display: block;

  margin-bottom: 5px;

  font-size: 11px;
  font-weight: 800;

  line-height: 1.1;

  letter-spacing: 1.6px;

  text-transform: uppercase;
}


/* =========================================================
   PETIT TEXTE
   ========================================================= */

.kplug-social-card__text {
  position: relative;
  z-index: 2;

  display: block;

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

  font-size: 9px;
  line-height: 1.35;
}


/* =========================================================
   INSTAGRAM — ORANGE BRILLANT
   ========================================================= */

.kplug-social-card--instagram {
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(255, 213, 120, 0.42),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      #ff9a22 0%,
      #ff6b18 55%,
      #e84a12 100%
    );

  border-color: rgba(255, 196, 110, 0.55);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    0 8px 25px rgba(255, 93, 20, 0.18);
}


/* =========================================================
   TIKTOK — NOIR BRILLANT
   ========================================================= */

.kplug-social-card--tiktok {
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(82, 204, 220, 0.14),
      transparent 40%
    ),
    linear-gradient(
      135deg,
      #111820 0%,
      #080c12 60%,
      #020406 100%
    );

  border-color: rgba(82, 200, 220, 0.24);
}


/* =========================================================
   TELEGRAM — VIOLET BRILLANT
   ========================================================= */

.kplug-social-card--telegram {
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(230, 190, 255, 0.32),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      #b64dff 0%,
      #8c39ec 52%,
      #6528cf 100%
    );

  border-color: rgba(214, 157, 255, 0.50);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    0 8px 25px rgba(129, 49, 226, 0.20);
}


/* =========================================================
   CONTACT — BLEU K PLUG
   ========================================================= */

.kplug-social-card--contact {
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(105, 198, 255, 0.25),
      transparent 40%
    ),
    linear-gradient(
      135deg,
      #168ff0 0%,
      #0874d8 55%,
      #0755ae 100%
    );

  border-color: rgba(100, 198, 255, 0.48);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 8px 25px rgba(18, 129, 235, 0.18);
}


/* =========================================================
   REFLET / BRILLANCE
   ========================================================= */

.kplug-social-card::before {
  content: "";

  position: absolute;

  top: -70%;
  left: -55%;

  width: 35%;
  height: 240%;

  opacity: 0;

  pointer-events: none;

  transform: rotate(20deg);

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.32),
      rgba(255,255,255,0.08),
      transparent
    );

  filter: blur(3px);

  animation: kplug-social-shine 6.5s ease-in-out infinite;
}


/* Décalage pour qu'ils ne brillent pas tous ensemble */

.kplug-social-card:nth-child(2)::before {
  animation-delay: 1.5s;
}

.kplug-social-card:nth-child(3)::before {
  animation-delay: 3s;
}

.kplug-social-card:nth-child(4)::before {
  animation-delay: 4.5s;
}


@keyframes kplug-social-shine {

  0%,
  72% {
    left: -55%;
    opacity: 0;
  }

  76% {
    opacity: 1;
  }

  90% {
    left: 125%;
    opacity: 0.85;
  }

  100% {
    left: 125%;
    opacity: 0;
  }
}


/* =========================================================
   SOURIS
   ========================================================= */

.kplug-social-card:hover {
  transform: translateY(-2px);

  filter: brightness(1.12);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    0 12px 28px rgba(0, 15, 45, 0.22);
}


/* =========================================================
   CLIC
   ========================================================= */

.kplug-social-card:active {
  transform: scale(0.975);

  filter: brightness(1.28);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  .kplug-social-grid {
    width: calc(100% - 16px);

    margin: -2px auto 20px;

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

    gap: 8px;
  }


  .kplug-social-card {
    min-height: 96px;

    padding: 14px 13px;

    border-radius: 15px;
  }


  .kplug-social-card__icon {
    width: 19px;
    height: 19px;

    margin-bottom: 8px;
  }


  .kplug-social-card__title {
    font-size: 9px;

    letter-spacing: 1.1px;
  }


  .kplug-social-card__text {
    font-size: 8px;
  }

}

.kplug-social-card--tiktok .kplug-social-card__icon {
  fill: #ffffff;
  stroke: none;
  color: #ffffff;
}

/* =========================================
   ORDRE DES CARTES SOCIALES
   ========================================= */

/* CONTACTEZ-NOUS — haut gauche */
.kplug-social-card--contact {
  grid-column: 1;
  grid-row: 1;
}

/* TELEGRAM — haut droite */
.kplug-social-card--telegram {
  grid-column: 2;
  grid-row: 1;
}

/* INSTAGRAM — bas gauche */
.kplug-social-card--instagram {
  grid-column: 1;
  grid-row: 2;
}

/* TIKTOK — bas droite */
.kplug-social-card--tiktok {
  grid-column: 2;
  grid-row: 2;
}

/* =========================================
   K PLUG — FAQ
   ========================================= */

.kplug-faq-card {
  width: calc(100% - 80px);
  max-width: 570px;

  margin: -20px auto 30px;
  padding: 16px 18px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  position: relative;
  overflow: hidden;

  border-radius: 16px;

  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(68, 181, 255, 0.16),
      transparent 40%
    ),
    linear-gradient(
      135deg,
      #073a75 0%,
      #062f64 100%
    );

  border: 1px solid rgba(74, 181, 255, 0.30);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 8px 22px rgba(0,15,45,0.15);

  color: #fff !important;
  text-decoration: none !important;

  transition:
    transform .18s ease,
    filter .2s ease,
    border-color .2s ease;
}


/* ICÔNE EN HAUT */

.kplug-faq-card__icon {
  width: 22px;
  height: 22px;

  margin-bottom: 8px;

  color: #45b6ff;
  stroke-width: 2.2px;

  filter:
    drop-shadow(0 0 5px rgba(69,182,255,.30));
}


/* CONTENU */

.kplug-faq-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 5px;
}


/* TITRE */

.kplug-faq-card__title {
  font-size: 11px;
  font-weight: 800;

  line-height: 1.1;

  letter-spacing: 1.5px;

  color: #ffffff;

  text-transform: uppercase;
}


/* TEXTE */

.kplug-faq-card__text {
  font-size: 10px;
  font-weight: 400;

  line-height: 1.4;

  color: rgba(220, 234, 250, 0.72);
}


/* SURVOL */

.kplug-faq-card:hover {
  transform: translateY(-2px);

  filter: brightness(1.12);

  border-color: rgba(69,182,255,.55);
}


/* CLIC */

.kplug-faq-card:active {
  transform: scale(.985);

  filter: brightness(1.25);
}


/* =========================================
   MOBILE
   ========================================= */

@media screen and (max-width: 749px) {

  .kplug-faq-card {
    width: calc(100% - 16px);

    margin: -10px auto 20px;
    padding: 14px 16px;

    border-radius: 15px;
  }

  .kplug-faq-card__icon {
    width: 20px;
    height: 20px;

    margin-bottom: 7px;
  }

  .kplug-faq-card__title {
    font-size: 10px;

    letter-spacing: 1.2px;
  }

  .kplug-faq-card__text {
    font-size: 9px;
  }
}

/* =========================================
   PC — ESPACE SOUS LE CONTENU POUR LE HUB
   ========================================= */

@media screen and (min-width: 750px) {

  body {
    padding-bottom: 175px !important;
  }

  main,
  #MainContent {
    padding-bottom: 95px !important;
  }

}

/* =========================================
   K PLUG — PAGE G-SHOCKS HERO
   ========================================= */

.kplug-gshocks-showcase {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 45px 55px 80px;

  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 45px;
  align-items: center;
}


/* ================================
   PARTIE GAUCHE
   ================================ */

.kplug-gshocks-showcase__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.kplug-gshocks-showcase__eyebrow {
  margin: 0 0 18px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;

  color: rgba(255,255,255,.38);
}


/* TITRE */

.kplug-gshocks-showcase__title {
  margin: 0 0 28px;

  font-size: clamp(42px, 4vw, 64px);
  line-height: .95;

  font-weight: 500;
  letter-spacing: 5px;

  color: #ffffff;
}

.kplug-gshocks-showcase__title span {
  display: block;

  margin-bottom: 7px;

  color: #2c9cff;
}


/* TEXTE */

.kplug-gshocks-showcase__description {
  max-width: 310px;
  margin: 0;

  font-size: 15px;
  line-height: 1.7;

  color: rgba(220, 232, 248, .72);
}


/* ================================
   LES 3 REELS
   ================================ */

.kplug-gshocks-reels {
  min-width: 0;

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

  gap: 14px;
}


/* CARTE REEL */

.kplug-gshocks-reel {
  position: relative;

  width: 100%;
  aspect-ratio: 9 / 16;

  overflow: hidden;

  border-radius: 17px;

  background: #052d60;

  border: 1px solid rgba(87, 181, 255, .55);

  box-shadow:
    0 12px 30px rgba(0, 18, 55, .28),
    inset 0 0 0 3px rgba(4, 25, 59, .45);
}


/* VIDÉO */

.kplug-gshocks-reel video {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* PLACEHOLDER AVANT D'AJOUTER LES VIDÉOS */

.kplug-gshocks-reel__placeholder {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;

  color: #55b8ff;
}


/* ================================
   BOUTON INSTAGRAM
   ================================ */

.kplug-gshocks-reel__instagram {
  position: absolute;

  top: 10px;
  right: 10px;

  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255,255,255,.92);

  color: #ff4f87;

  box-shadow: 0 4px 12px rgba(0,0,0,.20);

  z-index: 5;

  transition:
    transform .2s ease,
    filter .2s ease;
}

.kplug-gshocks-reel__instagram svg {
  width: 16px;
  height: 16px;
}

.kplug-gshocks-reel__instagram:hover {
  transform: scale(1.10);
  filter: brightness(1.08);
}


/* =========================================
   MOBILE
   ========================================= */

@media screen and (max-width: 749px) {

  .kplug-gshocks-showcase {
    display: block;

    width: 100%;

    padding: 30px 18px 100px;
  }


  /* TEXTE */

  .kplug-gshocks-showcase__content {
    margin-bottom: 28px;
  }

  .kplug-gshocks-showcase__eyebrow {
    font-size: 8px;
    margin-bottom: 12px;
  }

  .kplug-gshocks-showcase__title {
    font-size: 39px;

    line-height: .96;

    letter-spacing: 3px;

    margin-bottom: 20px;
  }

  .kplug-gshocks-showcase__description {
    max-width: 100%;

    font-size: 13px;
    line-height: 1.6;
  }


  /* REELS DÉFILABLES */

  .kplug-gshocks-reels {
    display: flex;

    width: calc(100% + 18px);

    gap: 10px;

    overflow-x: auto;

    padding-right: 18px;
    padding-bottom: 8px;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;
  }

  .kplug-gshocks-reels::-webkit-scrollbar {
    display: none;
  }

  .kplug-gshocks-reel {
    flex: 0 0 72%;

    scroll-snap-align: start;

    border-radius: 15px;
  }


  /* INSTAGRAM */

  .kplug-gshocks-reel__instagram {
    width: 28px;
    height: 28px;

    top: 8px;
    right: 8px;
  }

  .kplug-gshocks-reel__instagram svg {
    width: 15px;
    height: 15px;
  }

}

/* =========================================================
   K PLUG — G-SHOCKS / HERO
   ========================================================= */

.kplug-gshocks-showcase {
  width: 100%;
  max-width: 1540px;

  min-height: 690px;

  margin: 0 auto;

  padding: 58px 42px 110px;

  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);

  align-items: center;

  gap: 50px;
}


/* =========================================================
   TEXTE GAUCHE
   ========================================================= */

.kplug-gshocks-showcase__content {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  width: 100%;
}


.kplug-gshocks-showcase__eyebrow {
  margin: 0 0 24px;

  color: rgba(160, 202, 255, 0.55);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 4px;

  text-transform: uppercase;
}


/* =========================================================
   TITRE
   ========================================================= */

.kplug-gshocks-showcase__title {
  margin: 0 0 32px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  color: #ffffff;

  font-size: clamp(58px, 5.2vw, 86px);
  font-weight: 800;

  line-height: 0.92;

  letter-spacing: 2px;

  text-transform: uppercase;
}


.kplug-gshocks-showcase__title span {
  display: block;
}


/* G-SHOCKS BLEU */

.kplug-gshocks-showcase__title-blue {
  position: relative;

  color: #168eff;

  text-shadow:
    0 0 10px rgba(23, 144, 255, 0.18);

  overflow: hidden;
}

/* =========================================================
   TEXTE
   ========================================================= */

.kplug-gshocks-showcase__description {
  max-width: 365px;

  margin: 0;

  color: rgba(226, 236, 250, 0.80);

  font-size: 16px;
  font-weight: 400;

  line-height: 1.65;
}


.kplug-gshocks-showcase__description strong {
  color: #269cff;

  font-weight: 700;
}


/* =========================================================
   ZONE DES 3 REELS
   ========================================================= */

.kplug-gshocks-reels {
  min-width: 0;

  display: grid;

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

  gap: 18px;
}


/* =========================================================
   REEL
   ========================================================= */

.kplug-gshocks-reel {
  position: relative;

  width: 100%;

  aspect-ratio: 9 / 16;

  overflow: hidden;

  border-radius: 20px;

  background:
    linear-gradient(
      160deg,
      #071d3e,
      #03132d
    );

  border: 1px solid rgba(39, 153, 255, 0.85);

  box-shadow:
    0 16px 38px rgba(0, 15, 45, 0.28),
    0 0 0 1px rgba(65, 167, 255, 0.14),
    0 0 22px rgba(26, 136, 255, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}


/* VIDÉO */

.kplug-gshocks-reel video {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* PLACEHOLDER */

.kplug-gshocks-reel__placeholder {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #55b8ff;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}


/* =========================================================
   INSTAGRAM
   ========================================================= */

.kplug-gshocks-reel__instagram {
  position: absolute;

  top: 13px;
  right: 13px;

  z-index: 5;

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: #ffffff;

  background: rgba(5, 29, 65, 0.76);

  border: 1px solid rgba(84, 169, 255, 0.42);

  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);

  box-shadow:
    0 5px 14px rgba(0, 0, 0, 0.24),
    0 0 12px rgba(41, 142, 255, 0.13);

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}


.kplug-gshocks-reel__instagram svg {
  width: 19px;
  height: 19px;
}


.kplug-gshocks-reel__instagram:hover {
  transform: scale(1.1);

  background: rgba(27, 139, 240, 0.92);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  .kplug-gshocks-showcase {
    width: 100%;

    min-height: 0;

    padding: 34px 18px 110px;

    display: block;
  }


  .kplug-gshocks-showcase__content {
    margin-bottom: 32px;
  }


  .kplug-gshocks-showcase__eyebrow {
    margin-bottom: 16px;

    font-size: 8px;

    letter-spacing: 3px;
  }


  .kplug-gshocks-showcase__title {
    margin-bottom: 24px;

    font-size: clamp(42px, 13vw, 58px);

    line-height: 0.93;

    letter-spacing: 1px;
  }


  .kplug-gshocks-showcase__description {
    max-width: 100%;

    font-size: 13px;

    line-height: 1.6;
  }


  /* Reels horizontaux */

  .kplug-gshocks-reels {
    display: flex;

    width: calc(100% + 18px);

    gap: 11px;

    overflow-x: auto;

    padding-right: 18px;
    padding-bottom: 8px;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;
  }


  .kplug-gshocks-reels::-webkit-scrollbar {
    display: none;
  }


  .kplug-gshocks-reel {
    flex: 0 0 74%;

    scroll-snap-align: start;

    border-radius: 18px;
  }


  .kplug-gshocks-reel__instagram {
    width: 32px;
    height: 32px;

    top: 10px;
    right: 10px;
  }


  .kplug-gshocks-reel__instagram svg {
    width: 17px;
    height: 17px;
  }

}

/* =====================================================
   K PLUG G-SHOCKS — TYPOGRAPHIE FINALE
   ===================================================== */

.kplug-gshocks-showcase__title {
  margin: 0 0 32px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  font-size: clamp(54px, 4.7vw, 76px);

  /* beaucoup moins épais */
  font-weight: 400;

  line-height: 0.98;
  letter-spacing: 5px;

  text-transform: uppercase;
}


/* G-SHOCKS BLEU */

.kplug-gshocks-showcase__title-blue {
  position: relative;

  display: inline-block;

  color: #6db9ff;

  font-weight: 400;

  /* brillance légère permanente sur les lettres */
  text-shadow:
    0 0 4px rgba(105, 187, 255, 0.45),
    0 0 12px rgba(37, 145, 255, 0.20);

  overflow: hidden;
}


/* SERTIES DE + MOISSANITE */

.kplug-gshocks-showcase__title-light {
  color: #f4f8ff;

  font-weight: 400;

  text-shadow:
    0 0 3px rgba(255, 255, 255, 0.15);
}


/* =====================================================
   MOBILE
   ===================================================== */

@media screen and (max-width: 749px) {

  .kplug-gshocks-showcase__title {
    font-size: clamp(39px, 11vw, 52px);

    font-weight: 400;

    letter-spacing: 3px;

    line-height: 1;
  }

  .kplug-gshocks-showcase__title-blue,
  .kplug-gshocks-showcase__title-light {
    font-weight: 400;
  }

}

/* =========================================
   TITRE G-SHOCKS — VERSION SIMPLE
   ========================================= */

.kplug-gshocks-showcase__title {
  margin: 0 0 32px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  font-size: clamp(54px, 4.7vw, 76px);
  font-weight: 400;

  line-height: 0.98;
  letter-spacing: 5px;

  text-transform: uppercase;
}


/* G-SHOCKS BLEU */

.kplug-gshocks-showcase__title-blue {
  color: #2498ff !important;

  font-weight: 400;

  text-shadow: none !important;
}


/* SERTIES DE + MOISSANITE BLANC */

.kplug-gshocks-showcase__title-light {
  color: #ffffff !important;

  font-weight: 400;

  text-shadow: none !important;
}


/* MOBILE */

@media screen and (max-width: 749px) {

  .kplug-gshocks-showcase__title {
    font-size: clamp(39px, 11vw, 52px);

    line-height: 1;
    letter-spacing: 3px;
  }

}

/* =========================================
   G-SHOCKS — BADGES QUALITÉ
   ========================================= */

.kplug-gshocks-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  gap: 10px;

  margin: 0 0 24px;
}


.kplug-gshocks-badge {
  min-height: 32px;

  padding: 7px 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 7px;

  border-radius: 999px;

  color: rgba(226, 240, 255, 0.92);

  background:
    linear-gradient(
      135deg,
      rgba(7, 43, 91, 0.82),
      rgba(4, 26, 62, 0.72)
    );

  border: 1px solid rgba(49, 151, 255, 0.46);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 4px 12px rgba(0, 35, 80, 0.12);

  white-space: nowrap;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}


.kplug-gshocks-badge svg {
  width: 15px;
  height: 15px;

  flex-shrink: 0;

  color: #43aaff;

  filter:
    drop-shadow(0 0 4px rgba(56, 162, 255, 0.22));
}


.kplug-gshocks-badge span {
  font-size: 8px;
  font-weight: 700;

  line-height: 1;

  letter-spacing: 0.45px;

  text-transform: uppercase;

  white-space: nowrap;
}


.kplug-gshocks-badge:hover {
  background:
    linear-gradient(
      135deg,
      rgba(10, 70, 140, 0.88),
      rgba(6, 43, 96, 0.78)
    );

  border-color: rgba(70, 175, 255, 0.72);

  transform: translateY(-1px);
}


/* =========================================
   MOBILE
   ========================================= */

@media screen and (max-width: 749px) {

  .kplug-gshocks-badges {
    gap: 8px;

    margin-bottom: 20px;
  }


  .kplug-gshocks-badge {
    min-height: 30px;

    padding: 6px 10px;

    gap: 6px;
  }


  .kplug-gshocks-badge svg {
    width: 13px;
    height: 13px;
  }


  .kplug-gshocks-badge span {
    font-size: 7.4px;

    letter-spacing: 0.3px;
  }

}

.kplug-gshocks-showcase__title {
  margin-bottom: 18px !important;
}

/* =========================================
   K PLUG G-SHOCKS — BOUTONS
   ========================================= */

.kplug-gshocks-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  width: 320px;

  gap: 12px;
  margin-top: 30px;
}


.kplug-gshocks-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 320px;
  min-height: 58px;

  padding: 0 24px;

  box-sizing: border-box;

  text-decoration: none !important;

  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 2px;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}


/* PREMIER BOUTON */

.kplug-gshocks-btn--primary {
  color: #ffffff !important;

  background: #2498f5;

  border: 1px solid #2498f5;
}


/* DEUXIÈME BOUTON */

.kplug-gshocks-btn--custom {
  color: #62c2ff !important;

  background: rgba(8, 54, 100, 0.45);

  border: 1.5px solid #2498f5;

  box-shadow:
    inset 0 0 18px rgba(36, 152, 245, 0.08),
    0 0 12px rgba(36, 152, 245, 0.12);
}


.kplug-gshocks-btn--custom span {
  color: #62c2ff !important;
}


/* FLÈCHE */

.kplug-gshocks-btn__arrow {
  margin-left: 20px;

  font-size: 18px;
  line-height: 1;

  transition: transform 0.2s ease;
}


/* HOVER */

.kplug-gshocks-btn:hover {
  transform: translateY(-2px);
}


.kplug-gshocks-btn:hover .kplug-gshocks-btn__arrow {
  transform: translateX(4px);
}


.kplug-gshocks-btn--primary:hover {
  background: #35a5ff;

  box-shadow:
    0 8px 24px rgba(36, 152, 245, 0.25);
}


.kplug-gshocks-btn--custom:hover {
  background: rgba(36, 152, 245, 0.18);

  border-color: #62c2ff;

  box-shadow:
    inset 0 0 20px rgba(36, 152, 245, 0.12),
    0 0 18px rgba(36, 152, 245, 0.22);
}


/* =========================================
   MOBILE UNIQUEMENT
   ========================================= */

@media screen and (max-width: 749px) {

  .kplug-gshocks-actions {
    width: 100%;

    gap: 10px;
    margin-top: 24px;
  }


  .kplug-gshocks-btn {
    width: 100%;
    min-height: 52px;

    padding: 0 18px;

    font-size: 9px;
    letter-spacing: 1.8px;
  }


  .kplug-gshocks-btn__arrow {
    font-size: 17px;
  }

}

/* =========================================================
   K PLUG — TELEGRAM / STOCK BANNER
   ========================================================= */

.kplug-stock-banner {

  --kplug-rotate-x: 0deg;
  --kplug-rotate-y: 0deg;

  --mouse-x: 50%;
  --mouse-y: 50%;

  position: relative;

  width: calc(100% - 48px);
  max-width: 1650px;

  min-height: 180px;

  margin: 28px auto 26px;

  padding: 30px 36px;

  box-sizing: border-box;

  display: grid;

  grid-template-columns:
    82px
    minmax(0, 1fr)
    auto;

  align-items: center;

  gap: 28px;

  border-radius: 24px;

  overflow: hidden;

  background:

    radial-gradient(
      circle at var(--mouse-x) var(--mouse-y),
      rgba(187, 92, 255, 0.11),
      transparent 25%
    ),

    radial-gradient(
      circle at 10% 45%,
      rgba(186, 83, 255, 0.22),
      transparent 30%
    ),

    radial-gradient(
      circle at 85% 75%,
      rgba(111, 45, 220, 0.12),
      transparent 30%
    ),

    linear-gradient(
      120deg,
      #37134f 0%,
      #251043 45%,
      #180a35 100%
    );

  border:
    1px solid
    rgba(192, 108, 255, 0.62);

  box-shadow:
    0 15px 40px rgba(18, 3, 48, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.05);

  transform:

    perspective(1200px)

    rotateX(
      var(--kplug-rotate-x)
    )

    rotateY(
      var(--kplug-rotate-y)
    )

    translateZ(0);

  transform-style: preserve-3d;

  transform-origin: center center;

  transition:
    transform 0.13s ease-out,
    box-shadow 0.28s ease,
    border-color 0.28s ease;

}


/* =========================================================
   HOVER — PROFONDEUR
   ========================================================= */

.kplug-stock-banner:hover {

  transform:

    perspective(1200px)

    rotateX(
      var(--kplug-rotate-x)
    )

    rotateY(
      var(--kplug-rotate-y)
    )

    translateZ(12px);

  border-color:
    rgba(213, 155, 255, 0.88);

  box-shadow:

    0 24px 55px
    rgba(22, 4, 57, 0.36),

    0 0 30px
    rgba(156, 73, 255, 0.16),

    inset 0 1px 0
    rgba(255,255,255,0.07);

}


/* =========================================================
   SURBRILLANCE AUTOMATIQUE
   ========================================================= */

.kplug-stock-banner__shine {

  position: absolute;

  top: -60%;
  left: -45%;

  width: 28%;
  height: 220%;

  pointer-events: none;

  z-index: 1;

  opacity: 0;

  transform:
    rotate(15deg);

  background:

    linear-gradient(
      100deg,

      transparent 0%,

      rgba(255,255,255,0.02) 30%,

      rgba(235, 208, 255, 0.20) 50%,

      rgba(255,255,255,0.03) 70%,

      transparent 100%
    );

  filter:
    blur(3px);

  animation:
    kplugTelegramShine
    7s
    ease-in-out
    infinite;

}


@keyframes kplugTelegramShine {

  0% {
    left: -45%;
    opacity: 0;
  }

  60% {
    left: -45%;
    opacity: 0;
  }

  68% {
    opacity: 1;
  }

  87% {
    left: 120%;
    opacity: 0.95;
  }

  93% {
    left: 120%;
    opacity: 0;
  }

  100% {
    left: 120%;
    opacity: 0;
  }

}


/* =========================================================
   CONTENU AU-DESSUS DE LA SURBRILLANCE
   ========================================================= */

.kplug-stock-banner__icon,
.kplug-stock-banner__content,
.kplug-stock-banner__button {

  position: relative;

  z-index: 3;

}


/* =========================================================
   LOGO TELEGRAM
   ========================================================= */

.kplug-stock-banner__icon {

  width: 72px;
  height: 72px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background:

    linear-gradient(
      145deg,

      rgba(186, 97, 255, 0.18),

      rgba(103, 38, 181, 0.16)
    );

  border:
    1px solid
    rgba(205, 151, 255, 0.28);

  box-shadow:

    0 10px 28px
    rgba(146, 59, 255, 0.25),

    inset 0 1px 0
    rgba(255,255,255,0.06);

  transform:
    translateZ(24px);

}


.kplug-stock-banner__icon svg {

  width: 46px;
  height: 46px;

  display: block;

  filter:

    drop-shadow(
      0 0 10px
      rgba(168, 85, 247, 0.48)
    );

}


/* =========================================================
   CONTENU
   ========================================================= */

.kplug-stock-banner__content {

  min-width: 0;

  transform:
    translateZ(16px);

}


.kplug-stock-banner__eyebrow {

  display: block;

  margin-bottom: 10px;

  color: #cba0f6;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 4px;

  text-transform: uppercase;

}


.kplug-stock-banner__title {

  margin:
    0 0 8px;

  color: #ffffff;

  font-size:
    clamp(
      18px,
      1.55vw,
      26px
    );

  font-weight: 500;

  line-height: 1.25;

  letter-spacing: 1.5px;

}


.kplug-stock-banner__description {

  margin: 0;

  color:
    rgba(
      231,
      220,
      242,
      0.68
    );

  font-size: 13px;

  line-height: 1.5;

}


/* =========================================================
   STOCK MIS À JOUR
   ========================================================= */

.kplug-stock-banner__status {

  width: fit-content;

  margin-top: 13px;

  padding:
    6px 11px;

  display: flex;

  align-items: center;

  gap: 7px;

  border-radius:
    999px;

  color:
    rgba(
      239,
      226,
      250,
      0.80
    );

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

  border:
    1px solid
    rgba(
      198,
      137,
      255,
      0.22
    );

  font-size: 7px;

  font-weight: 700;

  letter-spacing:
    1.3px;

}


.kplug-stock-banner__dot {

  width: 6px;
  height: 6px;

  flex-shrink: 0;

  border-radius: 50%;

  background:
    #42e39a;

  box-shadow:

    0 0 8px
    rgba(
      66,
      227,
      154,
      0.70
    );

}


/* =========================================================
   CTA
   ========================================================= */

.kplug-stock-banner__button {

  min-width: 230px;

  min-height: 54px;

  padding:
    0 24px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 20px;

  border-radius:
    999px;

  color:
    #ffffff !important;

  background:

    linear-gradient(
      135deg,

      #b85cff,

      #8437f1
    );

  border:

    1px solid
    rgba(
      220,
      171,
      255,
      0.75
    );

  box-shadow:

    0 10px 28px
    rgba(
      151,
      57,
      255,
      0.30
    );

  text-decoration:
    none !important;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 2px;

  white-space: nowrap;

  transform:
    translateZ(28px);

  transition:

    transform 0.2s ease,

    filter 0.2s ease,

    box-shadow 0.2s ease;

}


.kplug-stock-banner__button:hover {

  transform:
    translateZ(36px)
    scale(1.025);

  filter:
    brightness(1.10);

  box-shadow:

    0 14px 34px
    rgba(
      151,
      57,
      255,
      0.45
    );

}


.kplug-stock-banner__arrow {

  font-size: 18px;

  transition:
    transform 0.2s ease;

}


.kplug-stock-banner__button:hover
.kplug-stock-banner__arrow {

  transform:
    translateX(5px);

}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  .kplug-stock-banner {

    width:
      calc(100% - 24px);

    min-height: 0;

    margin:
      16px auto 20px;

    padding:
      22px 18px;

    grid-template-columns:
      48px 1fr;

    gap: 14px;

    border-radius:
      18px;

    transform:
      none !important;

  }


  .kplug-stock-banner:hover {

    transform:
      none !important;

  }


  .kplug-stock-banner__icon {

    width: 46px;
    height: 46px;

    border-radius:
      13px;

    transform: none;

  }


  .kplug-stock-banner__icon svg {

    width: 32px;
    height: 32px;

  }


  .kplug-stock-banner__content {

    transform: none;

  }


  .kplug-stock-banner__eyebrow {

    margin-bottom:
      6px;

    font-size:
      6.5px;

    letter-spacing:
      2.4px;

  }


  .kplug-stock-banner__title {

    margin-bottom:
      6px;

    font-size:
      15px;

    line-height:
      1.3;

    letter-spacing:
      0.7px;

  }


  .kplug-stock-banner__description {

    font-size:
      11px;

    line-height:
      1.45;

  }


  .kplug-stock-banner__status {

    margin-top:
      10px;

    font-size:
      6px;

  }


  .kplug-stock-banner__button {

    grid-column:
      1 / -1;

    width: 100%;

    min-width: 0;

    min-height:
      46px;

    margin-top:
      4px;

    font-size:
      7px;

    transform: none;

  }


  .kplug-stock-banner__button:hover {

    transform:
      scale(1.01);

  }


  .kplug-stock-banner__shine {

    width: 35%;

  }

}


/* =========================================================
   ACCESSIBILITÉ — RÉDUIRE LES ANIMATIONS
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .kplug-stock-banner,
  .kplug-stock-banner__shine,
  .kplug-stock-banner__button {

    animation: none !important;

    transition: none !important;

    transform: none !important;

  }

}

/* =========================================
   ESPACE BANNIÈRE → HERO
   ========================================= */

.kplug-stock-banner {
  margin-bottom: 0 !important;
}

.kplug-gshocks-showcase {
  padding-top: 20px !important;
}


/* MOBILE */

@media screen and (max-width: 749px) {

  .kplug-stock-banner {
    margin-bottom: 0 !important;
  }

  .kplug-gshocks-showcase {
    padding-top: 18px !important;
  }

}

/* =========================================
   K PLUG — ICED G-SHOCK INFO
   ========================================= */

.kplug-gshocks-info {
  width: 100%;
  padding: 25px 42px 80px;
  box-sizing: border-box;
}

.kplug-gshocks-info__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.kplug-gshocks-info__index {
  display: block;

  margin-bottom: 18px;

  color: #2498f5;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 5px;
}

.kplug-gshocks-info__title {
  margin: 0;

  max-width: 1000px;

  color: #ffffff;

  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;

  line-height: 1.15;
  letter-spacing: 4px;

  text-transform: uppercase;
}

.kplug-gshocks-info__line {
  width: 100%;
  height: 1px;

  margin: 30px 0 32px;

  background:
    linear-gradient(
      90deg,
      rgba(36, 152, 245, 0.45),
      rgba(36, 152, 245, 0.08),
      transparent
    );
}

.kplug-gshocks-info__text {
  max-width: 900px;

  color: rgba(220, 232, 248, 0.74);

  font-size: 16px;
  line-height: 1.8;
}

.kplug-gshocks-info__text p {
  margin: 0 0 25px;
}

.kplug-gshocks-info__text strong {
  color: #ffffff;
  font-weight: 600;
}

.kplug-gshocks-info__signature {
  margin-top: 36px !important;

  color: #55b8ff !important;

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 1px;
}


/* MOBILE */

@media screen and (max-width: 749px) {

  .kplug-gshocks-info {
  padding: 22px 18px 60px;
}

  .kplug-gshocks-info__index {
    margin-bottom: 14px;

    font-size: 7px;
    letter-spacing: 4px;
  }

  .kplug-gshocks-info__title {
    font-size: 27px;
    line-height: 1.2;
    letter-spacing: 2px;
  }

  .kplug-gshocks-info__line {
    margin: 24px 0;
  }

  .kplug-gshocks-info__text {
    font-size: 14px;
    line-height: 1.7;
  }

  .kplug-gshocks-info__text p {
    margin-bottom: 21px;
  }

  .kplug-gshocks-info__signature {
    margin-top: 28px !important;

    font-size: 12px;
    line-height: 1.6;
  }

}

/* ESPACE HERO → SECTION 01 */

.kplug-gshocks-showcase {
  min-height: auto !important;
  padding-bottom: 35px !important;
}

.kplug-gshocks-info {
  padding-top: 25px !important;
}

/* =========================================
   SECTION 01 — ULTRA COMPACTE PC
   ========================================= */

.kplug-gshocks-info {
  min-height: 0 !important;
  height: auto !important;

  padding: 20px 50px 22px !important;
}

.kplug-gshocks-info__index {
  margin-bottom: 8px !important;
}

.kplug-gshocks-info__title {
  margin: 0 !important;
}

.kplug-gshocks-info__line {
  margin: 16px 0 20px !important;
}

.kplug-gshocks-info__text {
  line-height: 1.5 !important;
}

.kplug-gshocks-info__text p {
  margin: 0 0 12px !important;
}

.kplug-gshocks-info__signature {
  margin: 18px 0 0 !important;
}


/* MOBILE */

@media screen and (max-width: 749px) {

  .kplug-gshocks-info {
    min-height: 0 !important;
    height: auto !important;

    padding: 18px 18px 22px !important;
  }

  .kplug-gshocks-info__index {
    margin-bottom: 7px !important;
  }

  .kplug-gshocks-info__line {
    margin: 14px 0 18px !important;
  }

  .kplug-gshocks-info__text {
    line-height: 1.55 !important;
  }

  .kplug-gshocks-info__text p {
    margin-bottom: 11px !important;
  }

  .kplug-gshocks-info__signature {
    margin-top: 16px !important;
  }

}

/* =========================================
   SECTION 02 — SÉPARATION
   ========================================= */

.kplug-gshocks-info--02 {
  position: relative;

  border-top: 1px solid rgba(36, 152, 245, 0.10);
}

/* =========================================
   NUMÉROS 01 / 02 — STYLE IDENTIQUE
   ========================================= */

.kplug-gshocks-info__index,
.kplug-gshocks-info--02 .kplug-gshocks-info__index {
  display: block !important;

  color: #2498f5 !important;

  font-size: 9px !important;
  font-weight: 700 !important;

  line-height: 1 !important;

  letter-spacing: 5px !important;

  margin: 0 0 12px 0 !important;

  padding: 0 !important;

  text-shadow: none !important;
}

/* =========================================
   K PLUG — PROCESSUS DE PERSONNALISATION
   ========================================= */

.kplug-gshocks-process {
  width: 100%;
  box-sizing: border-box;

  padding: 32px 50px 40px;

  border-top: 1px solid rgba(36, 152, 245, 0.12);
}

.kplug-gshocks-process__inner {
  width: 100%;
  max-width: 1500px;

  margin: 0 auto;
}


/* 03 */

.kplug-gshocks-process__section-number {
  display: block;

  margin-bottom: 12px;

  color: #2498f5;

  font-size: 9px;
  font-weight: 700;

  line-height: 1;

  letter-spacing: 5px;
}


/* TITRE PRINCIPAL */

.kplug-gshocks-process__main-title {
  margin: 0;

  color: #ffffff;

  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 400;

  line-height: 1.15;
  letter-spacing: 4px;

  text-transform: uppercase;
}


/* LIGNE SOUS LE TITRE */

.kplug-gshocks-process__top-line {
  width: 100%;
  height: 1px;

  margin: 22px 0 0;

  background: linear-gradient(
    90deg,
    rgba(36, 152, 245, 0.45),
    rgba(36, 152, 245, 0.08),
    transparent
  );
}


/* CHAQUE ÉTAPE */

.kplug-gshocks-process__step {
  display: grid;

  grid-template-columns: 80px 1fr;

  gap: 25px;

  padding: 24px 0;

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

.kplug-gshocks-process__step:last-child {
  border-bottom: 0;
  padding-bottom: 5px;
}


/* 01 / 02 / 03 / 04 */

.kplug-gshocks-process__number {
  color: rgba(36, 152, 245, 0.58);

  font-size: 27px;
  font-weight: 400;

  line-height: 1;

  letter-spacing: 3px;
}


/* PETITS TITRES */

.kplug-gshocks-process__content h3 {
  margin: 0 0 8px;

  color: #ffffff;

  font-size: 11px;
  font-weight: 700;

  line-height: 1.3;
  letter-spacing: 3px;

  text-transform: uppercase;
}


/* TEXTE */

.kplug-gshocks-process__content p {
  max-width: 950px;

  margin: 0;

  color: rgba(220, 232, 248, 0.72);

  font-size: 15px;
  font-weight: 400;

  line-height: 1.6;
}


/* =========================================
   MOBILE
   ========================================= */

@media screen and (max-width: 749px) {

  .kplug-gshocks-process {
    padding: 24px 16px 30px;
  }

  .kplug-gshocks-process__section-number {
    margin-bottom: 10px;

    font-size: 8px;
    letter-spacing: 4px;
  }

  .kplug-gshocks-process__main-title {
    font-size: 26px;

    line-height: 1.18;
    letter-spacing: 2px;
  }

  .kplug-gshocks-process__top-line {
    margin-top: 17px;
  }


  /* ÉTAPES */

  .kplug-gshocks-process__step {
    grid-template-columns: 42px 1fr;

    gap: 12px;

    padding: 20px 0;
  }

  .kplug-gshocks-process__number {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .kplug-gshocks-process__content h3 {
    margin-bottom: 7px;

    font-size: 9px;
    line-height: 1.4;

    letter-spacing: 2px;
  }

  .kplug-gshocks-process__content p {
    font-size: 13px;
    line-height: 1.55;
  }

}

/* =========================================
   SECTION 04 — POURQUOI K PLUG
   ========================================= */

.kplug-gshocks-info--04 {
  position: relative;

  border-top: 1px solid rgba(36, 152, 245, 0.10);

  background:
    radial-gradient(
      circle at 82% 45%,
      rgba(36, 152, 245, 0.08),
      transparent 38%
    );
}


/* 04 — même style que les autres numéros */

.kplug-gshocks-info--04 .kplug-gshocks-info__index {
  color: #2498f5 !important;
}


/* texte un peu plus resserré */

.kplug-gshocks-info--04 .kplug-gshocks-info__text {
  max-width: 950px;
}

.kplug-gshocks-info--04 .kplug-gshocks-info__text p {
  margin-bottom: 16px !important;
}


/* MOBILE */

@media screen and (max-width: 749px) {

  .kplug-gshocks-info--04 {
    background:
      radial-gradient(
        circle at 100% 40%,
        rgba(36, 152, 245, 0.07),
        transparent 46%
      );
  }

  .kplug-gshocks-info--04 .kplug-gshocks-info__text p {
    margin-bottom: 14px !important;
  }

}

/* =========================================
   K PLUG — CTA FINAL G-SHOCKS
   ========================================= */

.kplug-gshocks-final-cta {
  width: 100%;

  padding: 42px 50px 46px;

  box-sizing: border-box;

  border-top: 1px solid rgba(36, 152, 245, 0.12);

  background:
    radial-gradient(
      circle at 50% 100%,
      rgba(36, 152, 245, 0.12),
      transparent 45%
    );
}


.kplug-gshocks-final-cta__inner {
  width: 100%;
  max-width: 1500px;

  margin: 0 auto;

  text-align: center;
}


/* PETIT TEXTE */

.kplug-gshocks-final-cta__eyebrow {
  display: block;

  margin-bottom: 10px;

  color: #2498f5;

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 4px;
}


/* TITRE */

.kplug-gshocks-final-cta__title {
  margin: 0;

  color: #ffffff;

  font-size: clamp(27px, 2.6vw, 42px);
  font-weight: 400;

  line-height: 1.15;

  letter-spacing: 3px;

  text-transform: uppercase;
}


/* DESCRIPTION */

.kplug-gshocks-final-cta__text {
  margin: 12px auto 0;

  color: rgba(220, 232, 248, 0.68);

  font-size: 14px;
  line-height: 1.5;
}


/* =========================================
   BOUTONS
   ========================================= */

.kplug-gshocks-final-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  margin-top: 24px;
}


.kplug-gshocks-final-cta__button {
  width: 255px;
  min-height: 54px;

  padding: 0 20px;

  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #ffffff !important;

  text-decoration: none !important;

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 1.8px;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}


/* DÉCOUVRE NOS MODÈLES */

.kplug-gshocks-final-cta__button--primary {
  background: #2498f5;

  border: 1px solid #2498f5;

  box-shadow:
    0 8px 24px rgba(36, 152, 245, 0.18);
}


/* CRÉE TA MONTRE */

.kplug-gshocks-final-cta__button--secondary {
  color: #5dbbff !important;

  background: rgba(36, 152, 245, 0.06);

  border: 1px solid rgba(36, 152, 245, 0.55);
}


/* FLÈCHES */

.kplug-gshocks-final-cta__arrow {
  margin-left: 18px;

  font-size: 17px;

  transition: transform 0.2s ease;
}


/* HOVER */

.kplug-gshocks-final-cta__button:hover {
  transform: translateY(-2px);
}


.kplug-gshocks-final-cta__button:hover
.kplug-gshocks-final-cta__arrow {
  transform: translateX(4px);
}


.kplug-gshocks-final-cta__button--primary:hover {
  background: #35a5ff;

  box-shadow:
    0 10px 28px rgba(36, 152, 245, 0.28);
}


.kplug-gshocks-final-cta__button--secondary:hover {
  background: rgba(36, 152, 245, 0.13);

  border-color: #2498f5;
}


/* =========================================
   MOBILE
   ========================================= */

@media screen and (max-width: 749px) {

  .kplug-gshocks-final-cta {
    padding: 32px 18px 36px;
  }

  .kplug-gshocks-final-cta__eyebrow {
    font-size: 7px;
  }

  .kplug-gshocks-final-cta__title {
    font-size: 25px;

    letter-spacing: 1.7px;
  }

  .kplug-gshocks-final-cta__text {
    max-width: 330px;

    font-size: 12px;
  }

  .kplug-gshocks-final-cta__actions {
    gap: 8px;

    margin-top: 20px;
  }

  .kplug-gshocks-final-cta__button {
    width: 50%;
    min-height: 48px;

    padding: 0 12px;

    font-size: 6.5px;

    letter-spacing: 1px;
  }

  .kplug-gshocks-final-cta__arrow {
    margin-left: 7px;

    font-size: 14px;
  }

}

/* =========================================
   CRÉE TA MONTRE — PLUS VISIBLE
   ========================================= */

.kplug-gshocks-final-cta__button--secondary {
  color: #ffffff !important;

  background: #07366f !important;

  border: 1px solid #2498f5 !important;

  box-shadow:
    inset 0 0 20px rgba(36, 152, 245, 0.08),
    0 6px 18px rgba(0, 30, 70, 0.18);
}

.kplug-gshocks-final-cta__button--secondary
.kplug-gshocks-final-cta__arrow {
  color: #43aaff !important;
}


/* SURVOL */

.kplug-gshocks-final-cta__button--secondary:hover {
  background: #0a4489 !important;

  border-color: #55b7ff !important;

  box-shadow:
    inset 0 0 25px rgba(36, 152, 245, 0.14),
    0 8px 24px rgba(0, 30, 70, 0.25);

  transform: translateY(-2px);
}

/* =========================================
   HERO — CRÉE TA MONTRE BLEU NUIT
   ========================================= */

.kplug-gshocks-btn--custom {
  color: #ffffff !important;

  background: #07366f !important;

  border: 1px solid #2498f5 !important;

  box-shadow:
    inset 0 0 20px rgba(36, 152, 245, 0.08),
    0 6px 18px rgba(0, 30, 70, 0.18) !important;
}

.kplug-gshocks-btn--custom .kplug-gshocks-btn__arrow {
  color: #43aaff !important;
}


/* HOVER */

.kplug-gshocks-btn--custom:hover {
  background: #0a4489 !important;

  border-color: #55b7ff !important;

  box-shadow:
    inset 0 0 25px rgba(36, 152, 245, 0.14),
    0 8px 24px rgba(0, 30, 70, 0.25) !important;

  transform: translateY(-2px);
}

/* =========================================
   K PLUG — CTA FINAL COMPACT
   ========================================= */

.kplug-gshocks-final-cta {
  width: 100%;

  padding: 24px 40px 26px;

  box-sizing: border-box;

  border-top: 1px solid rgba(36, 152, 245, 0.12);

  background:
    radial-gradient(
      circle at 50% 100%,
      rgba(36, 152, 245, 0.10),
      transparent 40%
    );
}

.kplug-gshocks-final-cta__inner {
  width: 100%;
  max-width: 1500px;

  margin: 0 auto;

  text-align: center;
}

.kplug-gshocks-final-cta__eyebrow {
  display: block;

  margin-bottom: 6px;

  color: #2498f5;

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 3px;
}

.kplug-gshocks-final-cta__title {
  margin: 0;

  color: #ffffff;

  font-size: clamp(25px, 2.4vw, 38px);
  font-weight: 400;

  line-height: 1.1;

  letter-spacing: 2.5px;

  text-transform: uppercase;
}

.kplug-gshocks-final-cta__text {
  margin: 8px auto 0;

  color: rgba(220, 232, 248, 0.68);

  font-size: 13px;
  line-height: 1.4;
}


/* BOUTONS */

.kplug-gshocks-final-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  margin-top: 16px;
}

.kplug-gshocks-final-cta__button {
  width: 240px;
  min-height: 50px;

  padding: 0 18px;

  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: space-between;

  text-decoration: none !important;

  font-size: 7.5px;
  font-weight: 800;

  letter-spacing: 1.6px;
}


/* PRIMARY */

.kplug-gshocks-final-cta__button--primary {
  color: #ffffff !important;

  background: #2498f5;

  border: 1px solid #2498f5;
}


/* SECONDARY */

.kplug-gshocks-final-cta__button--secondary {
  color: #ffffff !important;

  background: #07366f !important;

  border: 1px solid #2498f5 !important;
}

.kplug-gshocks-final-cta__button--secondary
.kplug-gshocks-final-cta__arrow {
  color: #43aaff !important;
}


/* FLÈCHE */

.kplug-gshocks-final-cta__arrow {
  margin-left: 14px;

  font-size: 16px;
}


/* MOBILE */

@media screen and (max-width: 749px) {

  .kplug-gshocks-final-cta {
    padding: 22px 16px 24px;
  }

  .kplug-gshocks-final-cta__title {
    font-size: 23px;
    letter-spacing: 1.5px;
  }

  .kplug-gshocks-final-cta__text {
    margin-top: 7px;

    font-size: 11.5px;
  }

  .kplug-gshocks-final-cta__actions {
    gap: 7px;

    margin-top: 14px;
  }

  .kplug-gshocks-final-cta__button {
    width: 50%;
    min-height: 46px;

    padding: 0 11px;

    font-size: 6.2px;
    letter-spacing: 0.8px;
  }

}

.kplug-no-break {
  white-space: nowrap;
}

.kplug-no-break {
  white-space: nowrap;
}

/* MOBILE — réduire le vide sous le CTA final */

@media screen and (max-width: 749px) {

  .kplug-gshocks-final-cta {
    padding-bottom: 12px !important;
  }

  .kplug-gshocks-final-cta__actions {
    margin-bottom: 0 !important;
  }

}
/* MOBILE — réduire le vide sous le CTA final */

@media screen and (max-width: 749px) {

  .kplug-gshocks-final-cta {
    padding-bottom: 12px !important;
  }

  .kplug-gshocks-final-cta__actions {
    margin-bottom: 0 !important;
  }

}

/* SUPPRIMER LA SECTION COLLECTION VIDE SOUS LA PAGE G-SHOCKS */

#shopify-section-template--27467656790345__collection_list_Y66Rtq {
  display: none !important;
}

/* =========================================
   CTA FINAL — RECTANGLE K PLUG
   ========================================= */

.kplug-gshocks-final-cta__inner {
  max-width: 1050px;

  margin: 0 auto;

  padding: 28px 35px 30px;

  box-sizing: border-box;

  background:
    linear-gradient(
      135deg,
      rgba(5, 48, 101, 0.55),
      rgba(4, 37, 82, 0.38)
    );

  border: 1px solid rgba(57, 169, 255, 0.45);

  border-radius: 14px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 35px rgba(0, 32, 75, 0.12);
}


/* MOBILE */

@media screen and (max-width: 749px) {

  .kplug-gshocks-final-cta__inner {
    width: 100%;

    padding: 20px 12px 18px;

    border-radius: 12px;
  }

}

.kplug-gshocks-final-cta__inner {
  padding: 22px 35px 24px;

  border: 1px solid rgba(57, 169, 255, 0.60);
}

/* =========================================
   CTA FINAL — ESPACEMENTS CORRIGÉS
   ========================================= */

.kplug-gshocks-final-cta {
  width: 100%;

  /* moins de vide avant le rectangle */
  padding: 18px 36px 30px !important;

  box-sizing: border-box;
}


/* RECTANGLE */

.kplug-gshocks-final-cta__inner {
  width: 100%;
  max-width: 1050px;

  margin: 0 auto !important;

  /* respiration à l'intérieur */
  padding: 24px 34px 26px !important;

  box-sizing: border-box;

  background:
    linear-gradient(
      135deg,
      rgba(5, 48, 101, 0.58),
      rgba(4, 37, 82, 0.42)
    );

  border: 1px solid rgba(57, 169, 255, 0.60);

  border-radius: 14px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 35px rgba(0, 32, 75, 0.12);
}


/* =========================================
   MOBILE
   ========================================= */

@media screen and (max-width: 749px) {

  .kplug-gshocks-final-cta {
    /* rapproche le rectangle du texte précédent */
    padding-top: 10px !important;

    padding-left: 4px !important;
    padding-right: 4px !important;

    /* crée l'espace AVANT le K PLUG JEWELRY HUB */
    padding-bottom: 14px !important;

    min-height: 0 !important;
    height: auto !important;
  }


  .kplug-gshocks-final-cta__inner {
    width: 100%;

    margin: 0 auto !important;

    padding: 18px 12px 22px !important;

    border-radius: 12px;
  }


  /* K PLUG JEWELRY */

  .kplug-gshocks-final-cta__eyebrow {
    margin-bottom: 7px !important;
  }


  /* TITRE */

  .kplug-gshocks-final-cta__title {
    margin: 0 !important;

    line-height: 1.12;
  }


  /* PETITE DESCRIPTION */

  .kplug-gshocks-final-cta__text {
    margin-top: 9px !important;
  }


  /* BOUTONS */

  .kplug-gshocks-final-cta__actions {
    margin-top: 14px !important;
    margin-bottom: 0 !important;

    padding-bottom: 0 !important;

    gap: 7px;
  }

}

@media screen and (max-width: 749px) {

  .kplug-gshocks-final-cta {
    padding-top: 4px !important;
    padding-left: 4px !important;
    padding-right: 4px !important;
    padding-bottom: 12px !important;

    min-height: 0 !important;
    height: auto !important;
  }

  .kplug-gshocks-final-cta__inner {
    width: 100%;

    margin: 0 auto !important;

    padding: 16px 12px 18px !important;

    border-radius: 12px;
  }

  .kplug-gshocks-final-cta__eyebrow {
    margin-bottom: 6px !important;
  }

  .kplug-gshocks-final-cta__text {
    margin-top: 7px !important;
  }

  .kplug-gshocks-final-cta__actions {
    margin-top: 11px !important;
    margin-bottom: 0 !important;

    gap: 7px;
  }
}

/* =========================================
   01 + 02 AVEC VIDÉO À DROITE
   ========================================= */

.kplug-gshocks-story {
  width: 100%;
  max-width: 1500px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;

  gap: 45px;

  align-items: stretch;
}


.kplug-gshocks-story__left {
  min-width: 0;
}


.kplug-gshocks-story__video {
  width: 100%;
  height: 100%;

  min-height: 620px;

  overflow: hidden;

  border-radius: 18px;

  background: #071f45;

  border: 1px solid rgba(36, 152, 245, 0.65);
}


.kplug-gshocks-story__video video {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}


.kplug-gshocks-story__placeholder {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #55b8ff;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 2px;
}


/* MOBILE : ON CACHE LA VIDÉO */

@media screen and (max-width: 749px) {

  .kplug-gshocks-story {
    display: block;
  }

  .kplug-gshocks-story__video {
    display: none;
  }

}

/* SUPPRIMER LA BARRE AVANT LES NUMÉROS 01 / 02 / 03 / 04 */

.kplug-gshocks-info,
.kplug-gshocks-process {
  border-top: none !important;
}

.kplug-gshocks-info::before,
.kplug-gshocks-process::before {
  display: none !important;
  content: none !important;
}

/* =========================================
   STRUCTURE RESPONSIVE 01 → 04
   ========================================= */

.kplug-gshocks-editorial {
  width: 100%;
  max-width: 1500px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    310px;

  column-gap: 20px;

  align-items: stretch;
}


/* 01 + 02 */

.kplug-gshocks-editorial__story {
  grid-column: 1;
  min-width: 0;
}


/* VIDÉO */

.kplug-gshocks-editorial__video {
  grid-column: 2;

  width: 100%;
  height: 100%;

  overflow: hidden;

  border-radius: 18px;

  background: #071f45;

  border: 1px solid rgba(36, 152, 245, 0.65);
}

.kplug-gshocks-editorial__video video {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* 03 + 04 */

.kplug-gshocks-editorial__below {
  grid-column: 1;

  width: 100%;

  min-width: 0;
}


/* IMPORTANT :
   on supprime tous les faux décalages */

.kplug-gshocks-editorial
.kplug-gshocks-info,

.kplug-gshocks-editorial
.kplug-gshocks-process {
  width: 100% !important;
  max-width: none !important;

  margin-left: 0 !important;
  margin-right: 0 !important;
}


/* même largeur intérieure partout */

.kplug-gshocks-editorial
.kplug-gshocks-info__inner,

.kplug-gshocks-editorial
.kplug-gshocks-process__inner {
  width: 100% !important;
  max-width: none !important;

  margin-left: 0 !important;
  margin-right: 0 !important;
}


/* MOBILE */

@media screen and (max-width: 749px) {

  .kplug-gshocks-editorial {
    display: block;
  }

  .kplug-gshocks-editorial__video {
    display: none;
  }

}

/* =========================================
   SECTION 04 — RETIRER L'EFFET DE CARRÉ
   ========================================= */

.kplug-gshocks-info--04 {
  background: transparent !important;

  border: none !important;

  box-shadow: none !important;

  width: 100% !important;
  max-width: none !important;

  margin: 0 !important;
}

/* VIDÉO 01 + 02 — DÉCALAGE VERS LA GAUCHE */

.kplug-gshocks-editorial__video {
  transform: translateX(-30px);
}

.kplug-france {
  display: inline-block;

  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #2498f5 25%,
    #ffffff 50%,
    #ef3340 75%,
    #ffffff 100%
  );

  background-size: 300% 100%;

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;

  animation: kplug-france-wave 3.5s linear infinite;
}

@keyframes kplug-france-wave {
  from {
    background-position: 100% 50%;
  }

  to {
    background-position: -50% 50%;
  }
}

/* =========================================
   HOME HERO — JEWELRY VAGUE BLEU / BLANC
   ========================================= */

.kplug-jewelry-wave {
  display: inline-block;

  background: linear-gradient(
    90deg,
    #2498f5 0%,
    #2498f5 25%,
    #ffffff 50%,
    #2498f5 75%,
    #2498f5 100%
  );

  background-size: 300% 100%;

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent !important;
  color: transparent !important;

  animation: kplug-jewelry-wave 3.5s linear infinite;
}


@keyframes kplug-jewelry-wave {
  from {
    background-position: 100% 50%;
  }

  to {
    background-position: -50% 50%;
  }
}

/* =========================================================
   CTA FINAL — STYLE CANAL K PLUG
   ========================================================= */

.kplug-gshocks-final-cta__inner {
  position: relative;

  width: 100%;
  max-width: 1050px;

  margin: 0 auto !important;
  padding: 26px 34px 28px !important;

  box-sizing: border-box;

  overflow: hidden;

  border-radius: 22px !important;

  background:
    radial-gradient(
      circle at 10% 45%,
      rgba(187, 92, 255, 0.20),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 65%,
      rgba(113, 45, 220, 0.12),
      transparent 30%
    ),
    linear-gradient(
      120deg,
      #35124f 0%,
      #251043 48%,
      #180a35 100%
    ) !important;

  border:
    1px solid rgba(190, 105, 255, 0.65) !important;

  box-shadow:
    0 16px 40px rgba(28, 5, 66, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


/* =========================================================
   SURBRILLANCE QUI TRAVERSE
   ========================================================= */

.kplug-gshocks-final-cta__inner::before {
  content: "";

  position: absolute;

  top: -60%;
  left: -40%;

  width: 24%;
  height: 220%;

  pointer-events: none;

  z-index: 1;

  background:
    linear-gradient(
      100deg,
      transparent 0%,
      rgba(255,255,255,0.02) 30%,
      rgba(236, 208, 255, 0.18) 50%,
      rgba(255,255,255,0.03) 70%,
      transparent 100%
    );

  filter: blur(3px);

  transform: rotate(14deg);

  animation:
    kplug-final-cta-shine
    7s
    linear
    infinite;
}


@keyframes kplug-final-cta-shine {

  0% {
    left: -40%;
  }

  55% {
    left: -40%;
  }

  78% {
    left: 120%;
  }

  100% {
    left: 120%;
  }

}


/* contenu au-dessus de la lumière */

.kplug-gshocks-final-cta__eyebrow,
.kplug-gshocks-final-cta__title,
.kplug-gshocks-final-cta__text,
.kplug-gshocks-final-cta__actions {
  position: relative;
  z-index: 2;
}


/* PETIT K PLUG JEWELRY */

.kplug-gshocks-final-cta__eyebrow {
  color: #c795ff !important;
}


/* =========================================================
   BOUTON PRINCIPAL — VIOLET
   ========================================================= */

.kplug-gshocks-final-cta__button--primary {
  color: #ffffff !important;

  background:
    linear-gradient(
      135deg,
      #b45cff,
      #8737f2
    ) !important;

  border:
    1px solid rgba(218, 165, 255, 0.78) !important;

  box-shadow:
    0 8px 24px rgba(151, 57, 255, 0.28) !important;
}


/* =========================================================
   BOUTON SECONDAIRE — VIOLET NUIT
   ========================================================= */

.kplug-gshocks-final-cta__button--secondary {
  color: #ffffff !important;

  background:
    rgba(41, 15, 79, 0.75) !important;

  border:
    1px solid rgba(178, 87, 255, 0.85) !important;

  box-shadow:
    inset 0 0 18px rgba(174, 83, 255, 0.07) !important;
}


.kplug-gshocks-final-cta__button--secondary
.kplug-gshocks-final-cta__arrow {
  color: #c276ff !important;
}


/* =========================================================
   HOVER
   ========================================================= */

.kplug-gshocks-final-cta__inner:hover {
  transform: translateY(-2px);

  border-color:
    rgba(213, 152, 255, 0.88) !important;

  box-shadow:
    0 22px 50px rgba(28, 5, 66, 0.30),
    0 0 26px rgba(157, 72, 255, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.06) !important;
}


.kplug-gshocks-final-cta__button--primary:hover {
  filter: brightness(1.08);
}


.kplug-gshocks-final-cta__button--secondary:hover {
  background:
    rgba(76, 29, 128, 0.78) !important;

  border-color:
    #c172ff !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  .kplug-gshocks-final-cta__inner {
    padding: 18px 12px 20px !important;

    border-radius: 17px !important;
  }

}

.kplug-gshocks-final-cta__inner {
  padding-top: 20px !important;
  padding-bottom: 22px !important;
}

.kplug-gshocks-final-cta__actions {
  margin-top: 14px !important;
}

/* ÉTAPES PROCESSUS — ESPACEMENT RÉGULIER */

.kplug-gshocks-process__step {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  margin: 0 !important;
}

.kplug-gshocks-process__step + .kplug-gshocks-process__step {
  margin-top: 0 !important;
}

/* MÊME LARGEUR DE TEXTE — SECTIONS 01 ET 02 */

.kplug-gshocks-info--01 .kplug-gshocks-info__text,
.kplug-gshocks-info--02 .kplug-gshocks-info__text {
  width: 100% !important;
  max-width: 820px !important;
}

/* =========================================================
   K PLUG — CANAL TELEGRAM
   ========================================================= */

.kplug-telegram-banner {
  width: 100%;
  box-sizing: border-box;

  padding: 14px 28px 18px;

  background: transparent;
}


/* CARTE */

.kplug-telegram-banner__link {
  position: relative;

  display: flex;
  align-items: center;

  width: 100%;
  max-width: 1500px;
  min-height: 150px;

  margin: 0 auto;
  padding: 26px 42px;

  box-sizing: border-box;

  overflow: hidden;

  text-decoration: none !important;

  border-radius: 22px;

  border: 1px solid rgba(190, 87, 255, .65);

  background:
    radial-gradient(
      circle at 8% 40%,
      rgba(190, 77, 255, .30),
      transparent 25%
    ),
    radial-gradient(
      circle at 90% 60%,
      rgba(113, 45, 220, .14),
      transparent 30%
    ),
    linear-gradient(
      120deg,
      #4b1767 0%,
      #34104f 45%,
      #210b3c 100%
    );

  box-shadow:
    0 16px 40px rgba(23, 5, 55, .20),
    inset 0 1px 0 rgba(255, 255, 255, .05);

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


/* PETITE LUMIÈRE ANIMÉE */

.kplug-telegram-banner__link::before {
  content: "";

  position: absolute;
  top: -80%;
  left: -30%;

  width: 18%;
  height: 260%;

  pointer-events: none;

  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, .12),
    transparent
  );

  transform: rotate(15deg);

  animation: kplugTelegramShine 7s linear infinite;
}


@keyframes kplugTelegramShine {

  0%,
  58% {
    left: -30%;
  }

  80% {
    left: 120%;
  }

  100% {
    left: 120%;
  }

}


/* =========================================================
   ICÔNE TELEGRAM
   ========================================================= */

.kplug-telegram-banner__icon {
  position: relative;
  z-index: 2;

  flex: 0 0 68px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 68px;
  height: 68px;

  margin-right: 30px;

  border-radius: 18px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #bd62ff,
      #812ee6
    );

  border: 1px solid rgba(224, 177, 255, .35);

  box-shadow:
    0 0 28px rgba(172, 72, 255, .25);
}


.kplug-telegram-banner__icon svg {
  width: 34px;
  height: 34px;
}


/* =========================================================
   CONTENU
   ========================================================= */

.kplug-telegram-banner__content {
  position: relative;
  z-index: 2;

  flex: 1;

  min-width: 0;
}


.kplug-telegram-banner__eyebrow {
  display: block;

  margin-bottom: 9px;

  color: #c78cff;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 5px;
}


.kplug-telegram-banner__title {
  margin: 0 0 7px;

  color: #ffffff;

  font-size: clamp(21px, 2vw, 31px);
  line-height: 1.05;

  font-weight: 800;

  letter-spacing: 1px;
}


.kplug-telegram-banner__text {
  margin: 0 0 12px;

  color: rgba(255, 255, 255, .62);

  font-size: 14px;
  line-height: 1.4;
}


/* STATUS */

.kplug-telegram-banner__status {
  display: inline-flex;
  align-items: center;

  gap: 7px;

  padding: 6px 12px;

  border-radius: 999px;

  border: 1px solid rgba(194, 115, 255, .32);

  background: rgba(255, 255, 255, .04);

  color: rgba(255, 255, 255, .70);

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 1.5px;
}


.kplug-telegram-banner__dot {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #43ef9c;

  box-shadow:
    0 0 9px rgba(67, 239, 156, .85);
}


/* FLÈCHE */

.kplug-telegram-banner__arrow {
  position: relative;
  z-index: 2;

  margin-left: 35px;

  color: #c879ff;

  font-size: 25px;

  transition: transform .25s ease;
}


/* HOVER */

.kplug-telegram-banner__link:hover {
  transform: translateY(-2px);

  border-color: rgba(211, 139, 255, .90);

  box-shadow:
    0 20px 45px rgba(23, 5, 55, .28),
    0 0 25px rgba(177, 75, 255, .10);
}


.kplug-telegram-banner__link:hover
.kplug-telegram-banner__arrow {
  transform: translateX(6px);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  .kplug-telegram-banner {
    padding: 10px 8px 14px;
  }


  .kplug-telegram-banner__link {
    min-height: 0;

    padding: 18px 15px;

    border-radius: 18px;
  }


  .kplug-telegram-banner__icon {
    flex: 0 0 50px;

    width: 50px;
    height: 50px;

    margin-right: 14px;

    border-radius: 14px;
  }


  .kplug-telegram-banner__icon svg {
    width: 25px;
    height: 25px;
  }


  .kplug-telegram-banner__eyebrow {
    margin-bottom: 6px;

    font-size: 7px;

    letter-spacing: 3px;
  }


  .kplug-telegram-banner__title {
    margin-bottom: 6px;

    font-size: 16px;
    line-height: 1.1;
  }


  .kplug-telegram-banner__text {
    margin-bottom: 9px;

    font-size: 11px;
    line-height: 1.35;
  }


  .kplug-telegram-banner__status {
    padding: 5px 9px;

    font-size: 6px;
  }


  .kplug-telegram-banner__arrow {
    display: none;
  }

}

/* =========================================================
   K PLUG — CANAL TELEGRAM
   ========================================================= */

.kplug-telegram-banner {
  width: 100%;
  box-sizing: border-box;

  padding: 14px 28px 18px;

  background: transparent;
}


/* CARTE */

.kplug-telegram-banner__link {
  position: relative;

  display: flex;
  align-items: center;

  width: 100%;
  max-width: 1500px;
  min-height: 150px;

  margin: 0 auto;
  padding: 26px 42px;

  box-sizing: border-box;

  overflow: hidden;

  text-decoration: none !important;

  border-radius: 22px;

  border: 1px solid rgba(190, 87, 255, .65);

  background:
    radial-gradient(
      circle at 8% 40%,
      rgba(190, 77, 255, .30),
      transparent 25%
    ),
    radial-gradient(
      circle at 90% 60%,
      rgba(113, 45, 220, .14),
      transparent 30%
    ),
    linear-gradient(
      120deg,
      #4b1767 0%,
      #34104f 45%,
      #210b3c 100%
    );

  box-shadow:
    0 16px 40px rgba(23, 5, 55, .20),
    inset 0 1px 0 rgba(255, 255, 255, .05);

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


/* PETITE LUMIÈRE ANIMÉE */

.kplug-telegram-banner__link::before {
  content: "";

  position: absolute;
  top: -80%;
  left: -30%;

  width: 18%;
  height: 260%;

  pointer-events: none;

  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, .12),
    transparent
  );

  transform: rotate(15deg);

  animation: kplugTelegramShine 7s linear infinite;
}


@keyframes kplugTelegramShine {

  0%,
  58% {
    left: -30%;
  }

  80% {
    left: 120%;
  }

  100% {
    left: 120%;
  }

}


/* =========================================================
   ICÔNE TELEGRAM
   ========================================================= */

.kplug-telegram-banner__icon {
  position: relative;
  z-index: 2;

  flex: 0 0 68px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 68px;
  height: 68px;

  margin-right: 30px;

  border-radius: 18px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #bd62ff,
      #812ee6
    );

  border: 1px solid rgba(224, 177, 255, .35);

  box-shadow:
    0 0 28px rgba(172, 72, 255, .25);
}


.kplug-telegram-banner__icon svg {
  width: 34px;
  height: 34px;
}


/* =========================================================
   CONTENU
   ========================================================= */

.kplug-telegram-banner__content {
  position: relative;
  z-index: 2;

  flex: 1;

  min-width: 0;
}


.kplug-telegram-banner__eyebrow {
  display: block;

  margin-bottom: 9px;

  color: #c78cff;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 5px;
}


.kplug-telegram-banner__title {
  margin: 0 0 7px;

  color: #ffffff;

  font-size: clamp(21px, 2vw, 31px);
  line-height: 1.05;

  font-weight: 800;

  letter-spacing: 1px;
}


.kplug-telegram-banner__text {
  margin: 0 0 12px;

  color: rgba(255, 255, 255, .62);

  font-size: 14px;
  line-height: 1.4;
}


/* STATUS */

.kplug-telegram-banner__status {
  display: inline-flex;
  align-items: center;

  gap: 7px;

  padding: 6px 12px;

  border-radius: 999px;

  border: 1px solid rgba(194, 115, 255, .32);

  background: rgba(255, 255, 255, .04);

  color: rgba(255, 255, 255, .70);

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 1.5px;
}


.kplug-telegram-banner__dot {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #43ef9c;

  box-shadow:
    0 0 9px rgba(67, 239, 156, .85);
}


/* FLÈCHE */

.kplug-telegram-banner__arrow {
  position: relative;
  z-index: 2;

  margin-left: 35px;

  color: #c879ff;

  font-size: 25px;

  transition: transform .25s ease;
}


/* HOVER */

.kplug-telegram-banner__link:hover {
  transform: translateY(-2px);

  border-color: rgba(211, 139, 255, .90);

  box-shadow:
    0 20px 45px rgba(23, 5, 55, .28),
    0 0 25px rgba(177, 75, 255, .10);
}


.kplug-telegram-banner__link:hover
.kplug-telegram-banner__arrow {
  transform: translateX(6px);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  .kplug-telegram-banner {
    padding: 10px 8px 14px;
  }


  .kplug-telegram-banner__link {
    min-height: 0;

    padding: 18px 15px;

    border-radius: 18px;
  }


  .kplug-telegram-banner__icon {
    flex: 0 0 50px;

    width: 50px;
    height: 50px;

    margin-right: 14px;

    border-radius: 14px;
  }


  .kplug-telegram-banner__icon svg {
    width: 25px;
    height: 25px;
  }


  .kplug-telegram-banner__eyebrow {
    margin-bottom: 6px;

    font-size: 7px;

    letter-spacing: 3px;
  }


  .kplug-telegram-banner__title {
    margin-bottom: 6px;

    font-size: 16px;
    line-height: 1.1;
  }


  .kplug-telegram-banner__text {
    margin-bottom: 9px;

    font-size: 11px;
    line-height: 1.35;
  }


  .kplug-telegram-banner__status {
    padding: 5px 9px;

    font-size: 6px;
  }


  .kplug-telegram-banner__arrow {
    display: none;
  }

}

/* =========================================
   K PLUG — PAGE MOISSANITE
   SECTION INTRO
   ========================================= */

.kplug-moissanite-intro {
  width: 100%;

  padding: 70px 4% 75px;

  background:
    radial-gradient(
      circle at 85% 55%,
      rgba(42, 148, 255, 0.18),
      transparent 38%
    ),
    linear-gradient(
      110deg,
      #31577f 0%,
      #0b2b55 43%,
      #0b4c9d 100%
    );
}


/* CONTENEUR */

.kplug-moissanite-intro__inner {
  width: 100%;
  max-width: 1720px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(600px, 1.45fr);

  align-items: center;

  gap: 90px;
}


/* =========================================
   PARTIE TEXTE
   ========================================= */

.kplug-moissanite-intro__content {
  max-width: 590px;
}


/* PETIT TEXTE */

.kplug-moissanite-intro__eyebrow {
  display: block;

  margin-bottom: 22px;

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

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;
}


/* TITRE */

.kplug-moissanite-intro__title {
  margin: 0 0 26px;

  color: #ffffff;

  font-size: clamp(45px, 4vw, 72px);
  font-weight: 500;

  line-height: 0.98;

  letter-spacing: 7px;

  text-transform: uppercase;
}


/* MOT BLEU */

.kplug-moissanite-intro__title-blue {
  color: #2c9cff;
}


/* PARAGRAPHES */

.kplug-moissanite-intro__text {
  max-width: 540px;

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

  font-size: 16px;

  line-height: 1.75;
}


.kplug-moissanite-intro__text p {
  margin: 0 0 16px;
}


.kplug-moissanite-intro__text strong {
  color: #ffffff;

  font-weight: 700;
}


/* PHRASE FINALE */

.kplug-moissanite-intro__signature {
  margin-top: 22px !important;

  color: #40a9ff !important;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1.5px;
}


/* =========================================
   IMAGE
   ========================================= */

.kplug-moissanite-intro__media {
  position: relative;

  width: 100%;

  overflow: hidden;
}


.kplug-moissanite-intro__media img {
  display: block;

  width: 100%;
  height: 460px;

  object-fit: cover;
}


/* PETIT ÉCLAT AUTOUR IMAGE */

.kplug-moissanite-intro__media::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  box-shadow:
    inset 0 0 45px rgba(35, 150, 255, 0.08);
}


/* =========================================
   TABLETTE
   ========================================= */

@media screen and (max-width: 1100px) {

  .kplug-moissanite-intro {
    padding: 60px 5%;
  }

  .kplug-moissanite-intro__inner {
    grid-template-columns: 1fr 1.15fr;

    gap: 50px;
  }

  .kplug-moissanite-intro__title {
    font-size: 46px;
    letter-spacing: 5px;
  }

  .kplug-moissanite-intro__media img {
    height: 400px;
  }

}


/* =========================================
   MOBILE
   ========================================= */

@media screen and (max-width: 749px) {

  .kplug-moissanite-intro {
    padding: 42px 20px 50px;
  }

  .kplug-moissanite-intro__inner {
    display: flex;
    flex-direction: column;

    align-items: stretch;

    gap: 32px;
  }

  .kplug-moissanite-intro__content {
    max-width: none;
  }

  .kplug-moissanite-intro__eyebrow {
    margin-bottom: 16px;

    font-size: 8px;

    letter-spacing: 3px;
  }

  .kplug-moissanite-intro__title {
    margin-bottom: 22px;

    font-size: clamp(35px, 10vw, 46px);

    line-height: 1.02;

    letter-spacing: 3px;
  }

  .kplug-moissanite-intro__text {
    max-width: none;

    font-size: 14px;

    line-height: 1.65;
  }

  .kplug-moissanite-intro__signature {
    font-size: 11px;

    line-height: 1.5;
  }

  .kplug-moissanite-intro__media {
    order: 2;
  }

  .kplug-moissanite-intro__media img {
    height: 260px;
  }

}

.kplug-moissanite-intro__placeholder {
  width: 100%;
  height: 460px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #071f45;

  border: 1px solid rgba(36, 152, 245, 0.45);

  color: #2498f5;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 2px;
}

@media screen and (max-width: 749px) {
  .kplug-moissanite-intro__placeholder {
    height: 260px;
  }
}

.kplug-moissanite-intro {
  width: 100%;
  padding: 70px 4% 75px;

  /* PAS DE NOUVEAU FOND */
  background: transparent;
}

.kplug-moissanite-intro__text {
  max-width: 540px;

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

  font-size: 16px;
  line-height: 1.75;
}

.kplug-moissanite-intro__eyebrow {
  display: block;
  margin-bottom: 22px;

  color: #2498f5;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.kplug-moissanite-intro__title {
  margin: 0 0 26px;

  color: #ffffff;

  font-size: clamp(45px, 4vw, 72px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.kplug-moissanite-intro__title-blue {
  color: #2498f5;
}

.kplug-moissanite-intro__text strong {
  color: #ffffff;
  font-weight: 700;
}

.kplug-moissanite-intro__signature {
  color: #2498f5 !important;
}

/* =========================================================
   MOISSANITE — SCIENCE / COMPARAISON
   ========================================================= */

.kplug-moissanite-science {
  width: 100%;
  padding: 42px 4% 48px;
  box-sizing: border-box;
}

.kplug-moissanite-science__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 70px;

  align-items: center;
}


/* =========================
   TEXTE GAUCHE
   ========================= */

.kplug-moissanite-science__index {
  display: block;

  margin-bottom: 12px;

  color: #2498f5;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 5px;
}

.kplug-moissanite-science__title {
  margin: 0;

  color: #ffffff;

  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;

  line-height: 1.1;
  letter-spacing: 4px;

  text-transform: uppercase;
}

.kplug-moissanite-science__line {
  width: 100%;
  height: 1px;

  margin: 20px 0 24px;

  background: linear-gradient(
    90deg,
    rgba(36, 152, 245, .42),
    rgba(36, 152, 245, .08),
    transparent
  );
}

.kplug-moissanite-science__text {
  max-width: 620px;

  color: rgba(255,255,255,.58);

  font-size: 15px;
  line-height: 1.7;
}

.kplug-moissanite-science__text p {
  margin: 0 0 18px;
}

.kplug-moissanite-science__text strong {
  color: #ffffff;
}


/* =========================
   CARTE COMPARAISON
   ========================= */

.kplug-moissanite-compare {
  position: relative;

  padding: 28px 30px 30px;

  overflow: hidden;

  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      rgba(5, 25, 55, .94),
      rgba(4, 16, 37, .98)
    );

  border: 1px solid rgba(36,152,245,.38);

  box-shadow:
    0 20px 45px rgba(0,20,55,.18),
    inset 0 1px 0 rgba(255,255,255,.03);
}


/* grille technique */

.kplug-moissanite-compare::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: .16;

  background-image:
    linear-gradient(
      rgba(77,155,255,.20) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(77,155,255,.20) 1px,
      transparent 1px
    );

  background-size: 44px 44px;
}


.kplug-moissanite-compare > * {
  position: relative;
  z-index: 2;
}


/* EYEBROW */

.kplug-moissanite-compare__eyebrow {
  display: table;

  margin: 0 auto 12px;

  padding: 6px 12px;

  border-radius: 999px;

  border: 1px solid rgba(36,152,245,.45);

  color: #2498f5;

  font-size: 7px;
  font-weight: 800;

  letter-spacing: 2.5px;
}


/* TITRE */

.kplug-moissanite-compare__title {
  margin: 0;

  text-align: center;

  color: #ffffff;

  font-size: 22px;
  font-weight: 500;

  letter-spacing: 3px;
}

.kplug-moissanite-compare__title span {
  color: #2498f5;

  font-size: 10px;
}


/* =========================
   PIERRES
   ========================= */

.kplug-moissanite-compare__stones {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 30px;

  margin: 28px 0 32px;
}

.kplug-moissanite-compare__stone-block {
  text-align: center;
}

.kplug-moissanite-compare__stone {
  width: 92px;
  height: 92px;

  margin: 0 auto 14px;

  border-radius: 50%;
}

.kplug-moissanite-compare__stone--moissanite {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #b6e8ff;

  font-size: 16px;

  background:
    radial-gradient(
      circle at 35% 28%,
      #c9efff,
      #56bfff 18%,
      #1689f4 46%,
      #0754ae 72%,
      #04316e 100%
    );

  box-shadow:
    0 0 30px rgba(36,152,245,.38);
}

.kplug-moissanite-compare__stone--diamond {
  background:
    radial-gradient(
      circle at 35% 28%,
      #ffffff,
      #e4e9ef 30%,
      #b9c1ca 68%,
      #727d89 100%
    );

  box-shadow:
    0 0 24px rgba(255,255,255,.12);
}

.kplug-moissanite-compare__stone-block strong {
  display: block;

  color: #ffffff;

  font-size: 9px;
  letter-spacing: 3px;
}

.kplug-moissanite-compare__stone-block:first-child strong {
  color: #2498f5;
}

.kplug-moissanite-compare__stone-block small {
  display: block;

  margin-top: 5px;

  color: rgba(255,255,255,.38);

  font-size: 8px;
}


/* =========================
   MÉTRIQUES
   ========================= */

.kplug-moissanite-compare__metric {
  margin-top: 18px;
}

.kplug-moissanite-compare__metric-head {
  display: flex;
  justify-content: space-between;
  gap: 15px;

  margin-bottom: 8px;

  color: rgba(255,255,255,.48);

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 1.5px;
}

.kplug-moissanite-compare__metric-head strong {
  color: #2498f5;

  font-weight: 700;
}


/* 2 BARRES */

.kplug-moissanite-compare__bars {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 8px;
}

.kplug-moissanite-compare__bar {
  position: relative;

  display: block;

  height: 6px;

  overflow: hidden;

  border-radius: 999px;

  background: rgba(255,255,255,.07);
}

.kplug-moissanite-compare__bar::after {
  content: "";

  display: block;

  width: var(--bar-width);
  height: 100%;

  border-radius: inherit;
}

.kplug-moissanite-compare__bar--blue::after {
  background:
    linear-gradient(
      90deg,
      #2498f5,
      #76deff
    );
}

.kplug-moissanite-compare__bar--gray::after {
  background:
    rgba(255,255,255,.28);
}


/* TEXTE FINAL */

.kplug-moissanite-compare__bottom {
  margin: 26px 0 0;

  text-align: center;

  color: #2498f5;

  font-size: 11px;
  font-weight: 600;

  line-height: 1.5;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  .kplug-moissanite-science {
    padding: 28px 16px 34px;
  }

  .kplug-moissanite-science__inner {
    display: block;
  }

  .kplug-moissanite-science__title {
    font-size: 26px;

    letter-spacing: 2px;
  }

  .kplug-moissanite-science__text {
    font-size: 13px;
    line-height: 1.6;
  }

  .kplug-moissanite-compare {
    margin-top: 28px;

    padding: 22px 16px 24px;

    border-radius: 14px;
  }

  .kplug-moissanite-compare__title {
    font-size: 17px;

    letter-spacing: 2px;
  }

  .kplug-moissanite-compare__stones {
    gap: 15px;

    margin: 23px 0 26px;
  }

  .kplug-moissanite-compare__stone {
    width: 72px;
    height: 72px;
  }

  .kplug-moissanite-compare__metric-head {
    font-size: 7px;

    letter-spacing: .8px;
  }

}

/* =========================================================
   K PLUG — COMPARATIF SCIENTIFIQUE V2
   ========================================================= */

.kplug-moissanite-compare {
  position: relative;

  padding: 30px 34px 32px;

  border: 1px solid rgba(36, 152, 245, .28);
  border-radius: 16px;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      rgba(5, 22, 48, .96),
      rgba(3, 13, 30, .98)
    );
}


/* GRILLE TECHNIQUE */

.kplug-moissanite-compare::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: .16;

  background-image:
    linear-gradient(
      rgba(36,152,245,.22) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(36,152,245,.22) 1px,
      transparent 1px
    );

  background-size: 42px 42px;
}


.kplug-moissanite-compare > * {
  position: relative;
  z-index: 2;
}


/* BADGE */

.kplug-moissanite-compare__badge {
  width: fit-content;

  margin: 0 auto 14px;
  padding: 6px 14px;

  border: 1px solid rgba(36,152,245,.55);
  border-radius: 999px;

  color: #2498f5;

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 2.5px;
}


/* TITRE */

.kplug-moissanite-compare__title {
  margin: 0;

  text-align: center;

  color: #ffffff;

  font-size: 24px;
  font-weight: 500;

  line-height: 1.2;

  letter-spacing: 3px;
}


/* INTRO */

.kplug-moissanite-compare__intro {
  max-width: 500px;

  margin: 9px auto 0;

  text-align: center;

  color: rgba(255,255,255,.46);

  font-size: 11px;
  line-height: 1.55;
}


/* =========================================================
   PIERRES
   ========================================================= */

.kplug-moissanite-compare__stones {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 60px;

  margin: 30px 0 34px;
}


.kplug-moissanite-compare__stone-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.kplug-moissanite-compare__stone {
  width: 96px;
  height: 96px;

  margin-bottom: 14px;

  border-radius: 50%;
}


/* MOISSANITE */

.kplug-moissanite-compare__stone--moissanite {
  display: flex;
  align-items: center;
  justify-content: center;

  color: #bcecff;

  background:
    radial-gradient(
      circle at 32% 25%,
      #d8f4ff 0%,
      #7ed8ff 12%,
      #2498f5 38%,
      #0872dc 64%,
      #043a87 100%
    );

  box-shadow:
    0 0 22px rgba(36,152,245,.45),
    0 0 55px rgba(36,152,245,.18);

  font-size: 18px;
}


/* DIAMANT */

.kplug-moissanite-compare__stone--diamond {
  background:
    radial-gradient(
      circle at 32% 25%,
      #ffffff 0%,
      #f1f4f7 25%,
      #c9cfd6 58%,
      #7e8791 100%
    );

  box-shadow:
    0 0 30px rgba(255,255,255,.10);
}


/* NOM */

.kplug-moissanite-compare__stone-name {
  color: rgba(255,255,255,.72);

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 3px;
}


.kplug-moissanite-compare__stone-name--blue {
  color: #2498f5;
}


.kplug-moissanite-compare__stone-description {
  margin-top: 5px;

  color: rgba(255,255,255,.30);

  font-size: 7px;
}


/* =========================================================
   STATISTIQUES
   ========================================================= */

.kplug-moissanite-stat {
  margin-top: 22px;
}


.kplug-moissanite-stat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 8px;
}


.kplug-moissanite-stat__label {
  color: rgba(255,255,255,.58);

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 1.8px;
}


.kplug-moissanite-stat__values {
  color: rgba(255,255,255,.35);

  font-size: 10px;
  font-weight: 600;

  letter-spacing: .6px;
}


.kplug-moissanite-stat__values strong {
  color: #2498f5;

  font-weight: 700;
}


.kplug-moissanite-stat__values span {
  margin: 0 5px;

  color: rgba(255,255,255,.25);
}


/* DEUX BARRES CÔTE À CÔTE */

.kplug-moissanite-stat__bars {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 8px;
}


.kplug-moissanite-stat__track {
  width: 100%;
  height: 6px;

  overflow: hidden;

  border-radius: 999px;

  background: rgba(255,255,255,.06);
}


.kplug-moissanite-stat__fill {
  height: 100%;

  border-radius: inherit;
}


.kplug-moissanite-stat__fill--blue {
  background:
    linear-gradient(
      90deg,
      #2498f5,
      #70ddff
    );

  box-shadow:
    0 0 10px rgba(36,152,245,.25);
}


.kplug-moissanite-stat__fill--gray {
  background: rgba(255,255,255,.27);
}


/* PETITE INFO BLEUE */

.kplug-moissanite-stat__note {
  display: block;

  margin-top: 6px;

  color: #2498f5;

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 1px;
}


/* =========================================================
   CONCLUSION
   ========================================================= */

.kplug-moissanite-compare__conclusion {
  margin-top: 30px;
  padding-top: 22px;

  border-top: 1px solid rgba(36,152,245,.15);

  text-align: center;
}


.kplug-moissanite-compare__conclusion strong {
  display: block;

  color: #2498f5;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: .8px;
}


.kplug-moissanite-compare__conclusion span {
  display: block;

  margin-top: 5px;

  color: rgba(255,255,255,.43);

  font-size: 9px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  .kplug-moissanite-compare {
    padding: 22px 16px 24px;
  }

  .kplug-moissanite-compare__title {
    font-size: 18px;

    letter-spacing: 2px;
  }

  .kplug-moissanite-compare__stones {
    gap: 20px;

    margin: 25px 0 28px;
  }

  .kplug-moissanite-compare__stone {
    width: 74px;
    height: 74px;
  }

  .kplug-moissanite-stat__head {
    gap: 10px;
  }

  .kplug-moissanite-stat__label {
    font-size: 7px;
  }

  .kplug-moissanite-stat__values {
    font-size: 8px;
  }

}

/* =========================================================
   MOISSANITE — BOULE BRILLANCE ANIMÉE
   ========================================================= */

.kplug-moissanite-compare__stone--moissanite {
  position: relative;

  overflow: visible;

  background:
    radial-gradient(
      circle at 30% 22%,
      #d9f7ff 0%,
      #9fe7ff 7%,
      #53c4ff 18%,
      #2498f5 42%,
      #0871dd 68%,
      #034391 100%
    );

  box-shadow:
    0 0 18px rgba(36, 152, 245, 0.42),
    0 0 42px rgba(36, 152, 245, 0.20),
    inset -12px -14px 24px rgba(0, 36, 105, 0.30),
    inset 10px 8px 18px rgba(170, 235, 255, 0.15);

  animation:
    kplugMoissaniteGlow 3.8s ease-in-out infinite;
}


/* =========================================================
   GROS REFLET EN HAUT À GAUCHE
   ========================================================= */

.kplug-moissanite-glint--main {
  position: absolute;

  width: 28px;
  height: 28px;

  top: 13px;
  left: 14px;

  border-radius: 50%;

  pointer-events: none;

  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.75) 12%,
      rgba(180, 235, 255, 0.30) 35%,
      transparent 70%
    );

  filter: blur(0.4px);

  opacity: 0;

  animation:
    kplugMoissaniteMainGlint 4s ease-in-out infinite;
}


/* croix lumineuse du gros reflet */

.kplug-moissanite-glint--main::before,
.kplug-moissanite-glint--main::after {
  content: "";

  position: absolute;

  left: 50%;
  top: 50%;

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

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.95),
      transparent
    );
}


.kplug-moissanite-glint--main::before {
  width: 44px;
  height: 2px;
}


.kplug-moissanite-glint--main::after {
  width: 2px;
  height: 44px;

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(255,255,255,0.95),
      transparent
    );
}


/* =========================================================
   ÉTOILES
   ========================================================= */

.kplug-moissanite-spark {
  position: absolute;

  display: block;

  color: #ffffff;

  pointer-events: none;

  text-shadow:
    0 0 4px #ffffff,
    0 0 10px rgba(129, 220, 255, 0.95),
    0 0 18px rgba(36, 152, 245, 0.60);

  transform-origin: center;
}


/* étoile centrale */

.kplug-moissanite-spark--center {
  left: 49%;
  top: 48%;

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

  font-size: 17px;

  animation:
    kplugMoissaniteCenterSpark 2.8s ease-in-out infinite;
}


/* petite étoile bas gauche */

.kplug-moissanite-spark--one {
  left: 18%;
  top: 68%;

  font-size: 8px;

  opacity: 0;

  animation:
    kplugMoissaniteTinySparkOne 3.6s ease-in-out infinite;
}


/* petite étoile droite */

.kplug-moissanite-spark--two {
  right: 12%;
  top: 45%;

  font-size: 6px;

  opacity: 0;

  animation:
    kplugMoissaniteTinySparkTwo 4.2s ease-in-out infinite;
}


/* =========================================================
   ANIMATIONS
   ========================================================= */


/* respiration générale */

@keyframes kplugMoissaniteGlow {

  0%,
  100% {
    box-shadow:
      0 0 18px rgba(36, 152, 245, 0.38),
      0 0 40px rgba(36, 152, 245, 0.16),
      inset -12px -14px 24px rgba(0, 36, 105, 0.30),
      inset 10px 8px 18px rgba(170, 235, 255, 0.15);
  }

  50% {
    box-shadow:
      0 0 26px rgba(36, 152, 245, 0.58),
      0 0 60px rgba(36, 152, 245, 0.28),
      inset -12px -14px 24px rgba(0, 36, 105, 0.30),
      inset 10px 8px 22px rgba(190, 242, 255, 0.25);
  }

}


/* gros flash */

@keyframes kplugMoissaniteMainGlint {

  0%,
  12% {
    opacity: 0;
    transform: scale(0.55) rotate(0deg);
  }

  20% {
    opacity: 1;
    transform: scale(1.15) rotate(12deg);
  }

  29% {
    opacity: 0.55;
    transform: scale(0.9) rotate(20deg);
  }

  38%,
  100% {
    opacity: 0;
    transform: scale(0.6) rotate(25deg);
  }

}


/* étoile centrale */

@keyframes kplugMoissaniteCenterSpark {

  0%,
  100% {
    opacity: 0.65;

    transform:
      translate(-50%, -50%)
      scale(0.75)
      rotate(0deg);
  }

  50% {
    opacity: 1;

    transform:
      translate(-50%, -50%)
      scale(1.25)
      rotate(45deg);
  }

}


/* petite étoile 1 */

@keyframes kplugMoissaniteTinySparkOne {

  0%,
  45%,
  100% {
    opacity: 0;
    transform: scale(0.4) rotate(0deg);
  }

  55% {
    opacity: 1;
    transform: scale(1.15) rotate(35deg);
  }

  65% {
    opacity: 0;
    transform: scale(0.6) rotate(65deg);
  }

}


/* petite étoile 2 */

@keyframes kplugMoissaniteTinySparkTwo {

  0%,
  62%,
  100% {
    opacity: 0;
    transform: scale(0.4);
  }

  70% {
    opacity: 0.9;
    transform: scale(1.2);
  }

  78% {
    opacity: 0;
    transform: scale(0.5);
  }

}


/* =========================================================
   ACCESSIBILITÉ
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .kplug-moissanite-compare__stone--moissanite,
  .kplug-moissanite-glint,
  .kplug-moissanite-spark {
    animation: none !important;
  }

}

/* =========================================
   PAGE MOISSANITE — GRILLE COMMUNE
   ========================================= */

.kplug-moissanite-page {
  width: 100%;
  box-sizing: border-box;
}

.kplug-moissanite-page__inner {
  width: min(92%, 1500px);
  margin: 0 auto;
}

.kplug-moissanite-row {
  width: 100%;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);

  gap: clamp(40px, 5vw, 90px);

  align-items: start;
}

.kplug-moissanite-row--intro {
  margin-bottom: clamp(70px, 8vw, 120px);
}

.kplug-moissanite-intro__content,
.kplug-moissanite-intro__media,
.kplug-moissanite-science__content,
.kplug-moissanite-compare {
  width: 100%;
  min-width: 0;
}

.kplug-moissanite-intro__media img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: cover;
}

.kplug-moissanite-compare {
  margin: 0 !important;
  max-width: none !important;
}


/* MOBILE */

@media screen and (max-width: 749px) {

  .kplug-moissanite-page__inner {
    width: calc(100% - 32px);
  }

  .kplug-moissanite-row {
    grid-template-columns: 1fr;

    gap: 28px;
  }

  .kplug-moissanite-row--intro {
    margin-bottom: 55px;
  }

}

/* =========================================
   PAGE MOISSANITE — ESPACEMENTS HAUT / BAS
   ========================================= */

.kplug-moissanite-page {
  padding-top: 34px;
  padding-bottom: 46px;
}


/* un peu d'air entre 01 et 02 */

.kplug-moissanite-row--intro {
  margin-bottom: clamp(78px, 7vw, 110px);
}


/* MOBILE */

@media screen and (max-width: 749px) {

  .kplug-moissanite-page {
    padding-top: 22px;
    padding-bottom: 28px;
  }

  .kplug-moissanite-row--intro {
    margin-bottom: 52px;
  }

}

/* =========================================
   SCIENCE — MÊME TEXTE QUE INTRO MOISSANITE
   ========================================= */

.kplug-moissanite-science__text {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

/* Copie exactement le style de l'intro */
.kplug-moissanite-science__text,
.kplug-moissanite-intro__text {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.kplug-moissanite-science__text p,
.kplug-moissanite-intro__text p {
  margin-top: 0;
  margin-bottom: 20px;
}

.kplug-moissanite-science__text strong,
.kplug-moissanite-intro__text strong {
  color: #ffffff;
  font-weight: 700;
}

.kplug-moissanite-intro__last-line {
  white-space: nowrap;
}

.kplug-moissanite-intro__title-blue {
  color: #2498f5;
}

.kplug-moissanite-intro__question {
  color: #ffffff;
}

/* =========================================================
   K PLUG — FOND GLOBAL ANIMÉ
   VERSION ÉQUILIBRÉE / ENTRE-DEUX
========================================================= */

html {
  background: #0a3772 !important;
}

body {
  position: relative;
  margin: 0;
  isolation: isolate;
  overflow-x: hidden;

  background:
    linear-gradient(
      135deg,
      #0a336b 0%,
      #0b3b79 18%,
      #0d4588 36%,
      #0d4c93 52%,
      #0c4586 68%,
      #0a3b77 84%,
      #092f62 100%
    ) !important;

  background-color: #0b3f82 !important;
}


/* =========================================================
   COUCHE LUMIÈRE
========================================================= */


/* =========================================================
   COUCHE OMBRE / CONTRASTE
========================================================= */


/* =========================================================
   CONTENU DEVANT LE FOND
========================================================= */

.page-wrapper {
  position: relative;
  z-index: 1;
  background: transparent !important;
}

main,
#MainContent,
.content-for-layout,
.shopify-section,
.section,
.section-background,
.color-background-1,
.color-background-2,
.gradient,
.kp-collection,
.kplug-telegram-section {
  background: transparent !important;
  background-color: transparent !important;
}

#MainContent [id^="kplug-telegram-section-"] {
  background: transparent !important;
  background-color: transparent !important;
}


/* =========================================================
   ANIMATION LUMIÈRES
========================================================= */


/* =========================================================
   ANIMATION OMBRES
========================================================= */


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 749px) {}


/* =========================================================
   ACCESSIBILITÉ
========================================================= */

@media (prefers-reduced-motion: reduce) {
  body::before,}

/* =========================================================
   K PLUG — MENU EXPLORER
   Dropdown desktop compact
   ========================================================= */


/* ---------------------------------------------------------
   1. EXPLORER DEVIENT LE POINT DE RÉFÉRENCE DU DROPDOWN
   --------------------------------------------------------- */

.menu-list li:has(#submenu-4) {
  position: relative !important;
}


/* ---------------------------------------------------------
   2. WRAPPER DU SOUS-MENU
   --------------------------------------------------------- */

.menu-list__submenu:has(#submenu-4) {
  position: absolute !important;

  top: 100% !important;

  /* Centre le menu sous EXPLORER */
  left: 50% !important;
  right: auto !important;

  transform: translateX(-50%) !important;

  width: 245px !important;
  min-width: 245px !important;
  max-width: 245px !important;

  height: auto !important;
  min-height: 0 !important;

  margin: 8px 0 0 !important;
  padding: 0 !important;

  overflow: visible !important;

  background: transparent !important;

  border: 0 !important;

  z-index: 9999 !important;
}


/* ---------------------------------------------------------
   3. CARTE DU DROPDOWN
   --------------------------------------------------------- */

#submenu-4.menu-list__submenu-inner {
  display: block !important;

  position: relative !important;

  width: 245px !important;
  min-width: 245px !important;
  max-width: 245px !important;

  height: auto !important;
  min-height: 0 !important;

  margin: 0 !important;
  padding: 9px !important;

  box-sizing: border-box !important;

  background: #092652 !important;

  border: 1px solid rgba(36, 152, 245, 0.35) !important;

  border-radius: 12px !important;

  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.28) !important;

  overflow: hidden !important;
}


/* ---------------------------------------------------------
   4. SUPPRESSION DE LA GRILLE DU MEGA MENU SHOPIFY
   --------------------------------------------------------- */

#submenu-4 .menu-list__submenu-content {
  display: flex !important;

  flex-direction: column !important;
  align-items: stretch !important;

  gap: 2px !important;

  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;

  height: auto !important;
  min-height: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  grid-template-columns: none !important;
  grid-template-rows: none !important;

  box-sizing: border-box !important;
}


/* ---------------------------------------------------------
   5. ITEMS
   --------------------------------------------------------- */

#submenu-4 li {
  display: block !important;

  position: relative !important;

  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;

  height: auto !important;

  margin: 0 !important;
  padding: 0 !important;

  box-sizing: border-box !important;
}


/* ---------------------------------------------------------
   6. LIENS : À PROPOS / SOINS / FAQ
   --------------------------------------------------------- */

#submenu-4 a {
  display: flex !important;

  align-items: center !important;
  justify-content: flex-start !important;

  width: 100% !important;
  min-width: 0 !important;

  height: auto !important;

  margin: 0 !important;

  padding:
    11px
    16px !important;

  box-sizing: border-box !important;

  color: #ffffff !important;

  font-size: 11px !important;
  font-weight: 700 !important;

  line-height: 1.2 !important;

  text-align: left !important;

  white-space: nowrap !important;

  word-break: normal !important;
  overflow-wrap: normal !important;

  text-decoration: none !important;

  border-radius: 7px !important;

  transition:
    color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease !important;
}


/* ---------------------------------------------------------
   7. HOVER
   --------------------------------------------------------- */

#submenu-4 a:hover {
  color: #38a8ff !important;

  background:
    rgba(36, 152, 245, 0.12) !important;

  transform: translateX(2px);
}


/* ---------------------------------------------------------
   8. ÉVITE LES ANCIENS STYLES DE COLONNES DU THÈME
   --------------------------------------------------------- */

#submenu-4 ul {
  display: flex !important;

  flex-direction: column !important;

  width: 100% !important;

  gap: 2px !important;

  margin: 0 !important;
  padding: 0 !important;

  list-style: none !important;
}


/* ---------------------------------------------------------
   9. MOBILE
   On ne force pas le dropdown desktop sur téléphone
   --------------------------------------------------------- */

@media screen and (max-width: 749px) {

  .menu-list__submenu:has(#submenu-4) {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;

    left: 0 !important;
    right: auto !important;

    transform: none !important;

    margin-top: 0 !important;
  }


  #submenu-4.menu-list__submenu-inner {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;

    border-radius: 0 !important;
  }

}

/* =========================================
   EXPLORER — POSITION FINALE
   ========================================= */

.menu-list__submenu:has(#submenu-4) {
  margin-top: -60px !important;

  z-index: 99999 !important;
}


/* =========================================
   EXPLORER — SUPPRIMER LE FOND / UNDERLAY
   ========================================= */

.header__underlay,
.header__underlay-open,
.header__underlay-open::before,
.header__underlay-open::after {
  background: transparent !important;

  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  filter: none !important;

  box-shadow: none !important;

  opacity: 0 !important;

  pointer-events: none !important;
}

@media screen and (min-width: 750px) {

  .menu-list__submenu:has(#submenu-4) {
    width: 190px !important;
    min-width: 190px !important;
    max-width: 190px !important;

    left: 50% !important;
    transform: translateX(-50%) !important;

    padding: 0 !important;
  }

  #submenu-4.menu-list__submenu-inner {
    width: 190px !important;
    min-width: 190px !important;
    max-width: 190px !important;

    height: 180px !important;
    min-height: 180px !important;

    padding: 0 !important;

    background: #092652 !important;
    border: 1px solid rgba(36, 152, 245, 0.55) !important;
    border-radius: 10px !important;

    overflow: hidden !important;
  }

  #submenu-4 .menu-list__submenu-content,
  #submenu-4 .mega-menu,
  #submenu-4 .mega-menu__grid,
  #submenu-4 ul {
    width: 100% !important;
    height: 100% !important;

    display: grid !important;
    grid-template-rows: repeat(3, 1fr) !important;

    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #submenu-4 .mega-menu__column,
  #submenu-4 li {
    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
  }

  #submenu-4 .mega-menu__link,
  #submenu-4 a {
    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 18px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    color: #ffffff !important;
    background: transparent !important;

    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: 1px !important;

    white-space: nowrap !important;

    border: none !important;
    border-radius: 0 !important;

    text-decoration: none !important;
  }

  #submenu-4 .mega-menu__link:hover,
  #submenu-4 a:hover {
    background: rgba(36, 152, 245, 0.16) !important;
    color: #38a8ff !important;
  }
}

/* =========================================
   SUPPRIMER LE TRAIT AU-DESSUS DU CTA
   ========================================= */

.kplug-gshocks-final-cta {
  border-top: none !important;
  border-bottom: none !important;
}

.kplug-gshocks-final-cta::before,
.kplug-gshocks-final-cta::after {
  border: none !important;
}

/* =========================================================
   K PLUG — PAGE À PROPOS
   ========================================================= */

.kplug-about {
  width: 100%;
  padding: 55px 4% 60px;
  box-sizing: border-box;
  background: #092652;
}

.kplug-about__inner {
  width: min(92%, 1500px);
  margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.kplug-about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(45px, 6vw, 90px);
  align-items: center;

  margin-bottom: clamp(85px, 8vw, 130px);
}

.kplug-about-hero__content,
.kplug-about-hero__media {
  min-width: 0;
}

.kplug-about-hero__badge {
  display: inline-block;

  margin-bottom: 18px;
  padding: 7px 14px;

  color: #2498f5;

  border: 1px solid rgba(36, 152, 245, 0.45);
  border-radius: 999px;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
}

.kplug-about-hero__title {
  margin: 0;

  color: #ffffff;

  font-size: clamp(46px, 6vw, 88px);
  font-weight: 700;

  line-height: 0.92;
  letter-spacing: 2px;

  text-transform: uppercase;
}

.kplug-about-hero__title span {
  display: block;

  color: #2498f5;
}

.kplug-about-hero__subtitle {
  margin: 22px 0 0;

  color: #ffffff;

  font-size: clamp(22px, 2vw, 34px);
  font-weight: 700;

  letter-spacing: 2px;
}

.kplug-about-hero__line {
  width: 55px;
  height: 2px;

  margin: 22px 0;

  background: #2498f5;
}

.kplug-about-hero__text {
  max-width: 600px;

  color: rgba(255,255,255,.68);

  font-size: 15px;
  line-height: 1.7;
}

.kplug-about-hero__text p {
  margin: 0 0 14px;
}

.kplug-about-hero__features {
  display: flex;
  flex-wrap: wrap;

  gap: 28px;

  margin-top: 30px;
}

.kplug-about-hero__feature {
  display: flex;
  align-items: center;

  gap: 10px;
}

.kplug-about-hero__feature-icon {
  color: #2498f5;

  font-size: 24px;
}

.kplug-about-hero__feature strong,
.kplug-about-hero__feature span {
  display: block;
}

.kplug-about-hero__feature strong {
  color: #ffffff;

  font-size: 10px;
  letter-spacing: 1px;
}

.kplug-about-hero__feature span {
  margin-top: 3px;

  color: rgba(255,255,255,.45);

  font-size: 8px;
  letter-spacing: 1px;
}

.kplug-about-hero__media {
  overflow: hidden;

  border-radius: 12px;
}

.kplug-about-hero__media img {
  display: block;

  width: 100%;
  height: 100%;

  min-height: 480px;

  object-fit: cover;
}


/* =========================================================
   PLACEHOLDERS
   ========================================================= */

.kplug-about-placeholder,
.kplug-about-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 420px;

  color: #2498f5;

  background: #071f44;

  border: 1px solid rgba(36,152,245,.28);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 2px;
}

.kplug-about-card__placeholder {
  min-height: 220px;
}


/* =========================================================
   BLOCS 01 / 02
   ========================================================= */

.kplug-about-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);

  gap: clamp(45px, 6vw, 90px);

  align-items: center;

  margin-bottom: clamp(85px, 8vw, 130px);
}

.kplug-about-row__index {
  display: block;

  margin-bottom: 12px;

  color: #2498f5;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 4px;
}

.kplug-about-row__title {
  margin: 0;

  color: #ffffff;

  font-size: clamp(32px, 3vw, 48px);
  font-weight: 700;

  line-height: 1.05;
  letter-spacing: 2px;

  text-transform: uppercase;
}

.kplug-about-row__line {
  width: 100%;
  height: 1px;

  margin: 20px 0 24px;

  background:
    linear-gradient(
      90deg,
      rgba(36,152,245,.42),
      rgba(36,152,245,.08),
      transparent
    );
}

.kplug-about-row__text {
  color: rgba(255,255,255,.68);

  font-size: 15px;
  line-height: 1.7;
}

.kplug-about-row__text p {
  margin: 0 0 18px;
}

.kplug-about-row__media img {
  display: block;

  width: 100%;
  height: auto;

  border-radius: 12px;

  object-fit: cover;
}


/* =========================================================
   VALEURS
   ========================================================= */

.kplug-about-values {
  margin-bottom: clamp(85px, 8vw, 120px);
}

.kplug-about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 22px;

  margin-top: 30px;
}

.kplug-about-card {
  overflow: hidden;

  background: #071f44;

  border: 1px solid rgba(36,152,245,.35);
  border-radius: 12px;
}

.kplug-about-card__top {
  display: flex;
  align-items: center;

  gap: 10px;

  padding: 18px 18px 16px;
}

.kplug-about-card__icon {
  color: #2498f5;

  font-size: 22px;
}

.kplug-about-card__top h3 {
  margin: 0;

  color: #2498f5;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 1px;
}

.kplug-about-card__media {
  width: 100%;
  height: 220px;

  overflow: hidden;
}

.kplug-about-card__media img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.kplug-about-card__text {
  padding: 20px;

  color: rgba(255,255,255,.62);

  font-size: 13px;
  line-height: 1.6;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  .kplug-about {
    padding: 32px 16px 40px;
  }

  .kplug-about__inner {
    width: 100%;
  }

  .kplug-about-hero,
  .kplug-about-row {
    grid-template-columns: 1fr;

    gap: 28px;
  }

  .kplug-about-hero {
    margin-bottom: 65px;
  }

  .kplug-about-hero__title {
    font-size: 48px;
  }

  .kplug-about-hero__media img {
    min-height: 300px;
  }

  .kplug-about-row {
    margin-bottom: 65px;
  }

  .kplug-about-values__grid {
    grid-template-columns: 1fr;
  }

  .kplug-about-card__media {
    height: 200px;
  }

}

/* =========================================================
   À PROPOS — AJUSTEMENTS HERO / VISION / MINI BLOCS
   ========================================================= */


/* -----------------------------------------
   TEXTE HERO
   ----------------------------------------- */

.kplug-about-hero__text {
  color: rgba(255, 255, 255, 0.72);

  font-size: 15px;
  line-height: 1.75;
}

.kplug-about-hero__text p {
  margin: 0 0 16px;
}

.kplug-about-hero__text strong {
  color: #ffffff;
  font-weight: 700;
}


/* -----------------------------------------
   RÉDUIRE ESPACE SOUS LE HERO
   ----------------------------------------- */

.kplug-about-hero {
  margin-bottom: 34px !important;
}


/* =========================================================
   GRAND RECTANGLE DES 3 POINTS FORTS
   ========================================================= */

.kplug-about-trust {
  width: 100%;

  display: grid;
  grid-template-columns:
    1fr
    1px
    1fr
    1px
    1fr;

  align-items: center;

  margin-bottom: 58px;

  padding: 22px 28px;

  box-sizing: border-box;

  background:
    linear-gradient(
      135deg,
      rgba(7, 31, 68, 0.96),
      rgba(8, 39, 83, 0.92)
    );

  border: 1px solid rgba(36, 152, 245, 0.38);

  border-radius: 14px;

  box-shadow:
    inset 0 0 24px rgba(36, 152, 245, 0.03);
}


.kplug-about-trust__item {
  display: flex;
  align-items: center;

  gap: 14px;

  min-width: 0;

  padding: 4px 18px;
}


.kplug-about-trust__icon {
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  color: #2498f5;

  font-size: 23px;
}


.kplug-about-trust__item strong {
  display: block;

  color: #ffffff;

  font-size: 11px;
  font-weight: 700;

  line-height: 1.2;

  letter-spacing: .8px;

  white-space: nowrap;
}


.kplug-about-trust__item span {
  display: block;

  margin-top: 5px;

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

  font-size: 8px;
  font-weight: 600;

  letter-spacing: 1px;
}


/* séparateurs verticaux */

.kplug-about-trust__separator {
  width: 1px;
  height: 38px;

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(36, 152, 245, 0.65),
      transparent
    );
}


/* =========================================================
   NOTRE VISION
   ========================================================= */

.kplug-about-row--vision {
  margin-top: 0 !important;
  margin-bottom: 75px !important;
}


/* plus de présence dans le texte */

.kplug-about-row__text {
  color: rgba(255, 255, 255, 0.70);

  font-size: 15px;
  line-height: 1.75;
}


.kplug-about-row__text p {
  margin: 0 0 18px;
}


.kplug-about-row__text strong {
  color: #ffffff;
  font-weight: 700;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  .kplug-about-hero {
    margin-bottom: 24px !important;
  }


  .kplug-about-trust {
    grid-template-columns: 1fr;

    gap: 0;

    padding: 12px 14px;

    margin-bottom: 42px;
  }


  .kplug-about-trust__item {
    padding: 15px 10px;
  }


  .kplug-about-trust__separator {
    width: 100%;
    height: 1px;

    background:
      linear-gradient(
        90deg,
        transparent,
        rgba(36, 152, 245, 0.35),
        transparent
      );
  }


  .kplug-about-trust__item strong {
    font-size: 10px;
  }


  .kplug-about-row--vision {
    margin-bottom: 55px !important;
  }

}

/* =========================================
   PAGE À PROPOS UNIQUEMENT
   ESPACEMENT CTA → HUB
   ========================================= */

.kplug-about {
  padding-bottom: 0 !important;
}

.kplug-about .kplug-gshocks-final-cta {
  margin-bottom: 35px !important;
  padding-bottom: 0 !important;
}

/* Le hub juste après la page À propos */
.kplug-about + .kplug-hub {
  margin-top: 0 !important;
}

/* =========================================
   À PROPOS UNIQUEMENT — REMONTER LE CTA
   ========================================= */

.kplug-about .kplug-gshocks-final-cta {
  margin-top: -100px !important;
}

/* =========================================
   À PROPOS — CTA MOBILE
   ========================================= */

@media screen and (max-width: 749px) {

  /* Annule la remontée desktop sur téléphone */
  main[data-template="page.a-propos"] .kplug-gshocks-final-cta {
    margin-top: -55px !important;
    margin-bottom: 24px !important;
    padding-bottom: 0 !important;
  }

}

/* =========================================================
   K PLUG — PAGE SOINS
   ========================================================= */

.kplug-care {
  width: 100%;

  padding: 52px 4% 55px;

  box-sizing: border-box;

  background: #092652;
}


.kplug-care__inner {
  width: min(92%, 1500px);

  margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.kplug-care-hero {
  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);

  align-items: center;

  gap: clamp(45px, 6vw, 90px);

  margin-bottom: 70px;
}


.kplug-care-hero__eyebrow {
  display: block;

  margin-bottom: 16px;

  color: #2498f5;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 2px;
}


.kplug-care-hero__title {
  margin: 0;

  color: #ffffff;

  font-size: clamp(40px, 5vw, 72px);

  font-weight: 800;

  line-height: 0.98;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.kplug-care-hero__title span {
  color: #2498f5;
}


.kplug-care-hero__text {
  max-width: 600px;

  margin: 26px 0 0;

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

  font-size: 15px;

  line-height: 1.7;
}


.kplug-care-hero__trust {
  display: grid;

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

  margin-top: 32px;

  border: 1px solid rgba(36, 152, 245, 0.35);

  border-radius: 12px;

  overflow: hidden;
}


.kplug-care-hero__trust-item {
  padding: 16px 18px;

  text-align: center;

  border-right: 1px solid rgba(36, 152, 245, 0.22);
}


.kplug-care-hero__trust-item:last-child {
  border-right: none;
}


.kplug-care-hero__trust-item strong {
  display: block;

  color: #ffffff;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.8px;
}


.kplug-care-hero__trust-item span {
  display: block;

  margin-top: 4px;

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

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.8px;
}


.kplug-care-hero__media {
  overflow: hidden;

  border-radius: 12px;
}


.kplug-care-hero__media img {
  display: block;

  width: 100%;

  min-height: 470px;

  object-fit: cover;
}


.kplug-care-placeholder {
  display: flex;

  align-items: center;
  justify-content: center;

  min-height: 470px;

  color: #2498f5;

  background: #071f44;

  border: 1px solid rgba(36, 152, 245, 0.3);

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 2px;
}


/* =========================================================
   PANELS
   ========================================================= */

.kplug-care-panel {
  display: grid;

  grid-template-columns: 260px minmax(0, 1fr);

  gap: 30px;

  margin-bottom: 28px;

  padding: 28px;

  background: #071f44;

  border: 1px solid rgba(36, 152, 245, 0.35);

  border-radius: 14px;
}


.kplug-care-panel__heading {
  padding-right: 24px;

  border-right: 1px solid rgba(36, 152, 245, 0.22);
}


.kplug-care-panel__index {
  display: block;

  margin-bottom: 10px;

  color: #2498f5;

  font-size: 28px;
  font-weight: 800;

  line-height: 1;
}


.kplug-care-panel__title {
  margin: 0;

  color: #ffffff;

  font-size: 26px;
  font-weight: 800;

  line-height: 1.05;

  text-transform: uppercase;
}


.kplug-care-panel__intro {
  margin: 14px 0 0;

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

  font-size: 11px;

  line-height: 1.6;
}


/* =========================================================
   ITEMS
   ========================================================= */

.kplug-care-grid {
  display: grid;

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


.kplug-care-item {
  min-width: 0;

  padding: 8px 24px;

  border-right: 1px solid rgba(36, 152, 245, 0.22);
}


.kplug-care-item:last-child {
  border-right: none;
}


.kplug-care-item__number {
  margin-bottom: 13px;

  color: rgba(36, 152, 245, 0.55);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 1.5px;
}


.kplug-care-item h3 {
  margin: 0 0 12px;

  color: #2498f5;

  font-size: 11px;
  font-weight: 800;

  line-height: 1.2;

  letter-spacing: 0.8px;

  text-transform: uppercase;
}


.kplug-care-item p {
  margin: 0;

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

  font-size: 12px;

  line-height: 1.6;
}


.kplug-care-item strong {
  color: #ffffff;

  font-weight: 700;
}


/* =========================================================
   WARNING PANEL
   ========================================================= */

.kplug-care-panel--warning {
  border-color: rgba(160, 70, 255, 0.42);

  background:
    linear-gradient(
      135deg,
      rgba(7, 31, 68, 1),
      rgba(24, 21, 72, 0.96)
    );
}


.kplug-care-panel--warning .kplug-care-item h3 {
  color: #c058ff;
}


.kplug-care-panel--warning .kplug-care-panel__index {
  color: #a855f7;
}


/* =========================================================
   CTA FINAL
   ========================================================= */

.kplug-care .kplug-gshocks-final-cta {
  margin-top: 58px;

  margin-bottom: 30px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  .kplug-care {
    padding: 30px 14px 35px;
  }


  .kplug-care__inner {
    width: 100%;
  }


  .kplug-care-hero {
    grid-template-columns: 1fr;

    gap: 26px;

    margin-bottom: 42px;
  }


  .kplug-care-hero__title {
    font-size: 42px;
  }


  .kplug-care-hero__media img,
  .kplug-care-placeholder {
    min-height: 300px;
  }


  .kplug-care-hero__trust {
    grid-template-columns: 1fr;
  }


  .kplug-care-hero__trust-item {
    border-right: none;

    border-bottom:
      1px solid rgba(36, 152, 245, 0.22);
  }


  .kplug-care-hero__trust-item:last-child {
    border-bottom: none;
  }


  .kplug-care-panel {
    grid-template-columns: 1fr;

    gap: 22px;

    padding: 20px 16px;
  }


  .kplug-care-panel__heading {
    padding-right: 0;

    padding-bottom: 18px;

    border-right: none;

    border-bottom:
      1px solid rgba(36, 152, 245, 0.22);
  }


  .kplug-care-grid {
    grid-template-columns: 1fr;
  }


  .kplug-care-item {
    padding: 17px 0;

    border-right: none;

    border-bottom:
      1px solid rgba(36, 152, 245, 0.18);
  }


  .kplug-care-item:last-child {
    border-bottom: none;
  }


  .kplug-care .kplug-gshocks-final-cta {
    margin-top: 32px;

    margin-bottom: 22px;
  }

}

/* =========================================
   SOINS — ICONES
   ========================================= */

.kplug-care-item__icon {
  width: 42px;
  height: 42px;

  margin: 0 auto 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #2498f5;
}

.kplug-care-item__icon svg {
  width: 34px;
  height: 34px;

  fill: none;
  stroke: currentColor;

  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Bloc "à éviter" en violet */
.kplug-care-panel--warning .kplug-care-item__icon {
  color: #c058ff;
}

.kplug-care-item h3 {
  text-align: center;
}

.kplug-care-item p {
  text-align: center;
}

/* =========================================
   SOINS — ESPACEMENT CTA / HUB
   ========================================= */

/* PC */
.kplug-care .kplug-gshocks-final-cta {
  margin-bottom: -55px !important;
}

/* MOBILE */
@media screen and (max-width: 749px) {
  .kplug-care .kplug-gshocks-final-cta {
    margin-bottom: -35px !important;
  }
}

/* =========================================
   PAGE SOINS — RAPPROCHER LE CTA DU CONTENU
   ========================================= */

.kplug-care .kplug-gshocks-final-cta {
  margin-top: 30px !important;
}

/* PAGE SOINS — remonter le texte du hero sur PC */
@media screen and (min-width: 750px) {
  .kplug-care-hero__content {
    transform: translateY(-50px);
  }
}

/* =========================================
   MOISSANITE — IMAGE INTRO ARRONDIE
   ========================================= */

.kplug-moissanite-intro__media {
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  border: none !important;
}

.kplug-moissanite-intro__media img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0 !important;
}

.kplug-care-hero__text p {
  color: #b8c2d1;
  font-weight: 400;
}

.kplug-care-hero__text strong {
  color: #ffffff;
  font-weight: 700;
}

/* ==========================================================
   K PLUG CONFIGURATOR
   VERSION PROPRE / ISOLÉE
   ========================================================== */


.kpconfig {
  --kp-blue: #2498f5;
  --kp-bg: #07182f;
  --kp-card: #09264d;
  --kp-border: rgba(36, 152, 245, .30);
  --kp-text: #b7c1cf;
  --kp-green: #25e7a3;

  width: 100%;
  padding: 42px 20px;

  box-sizing: border-box;

  background: #0a2c59;
}


/* ==========================================================
   RECTANGLE PRINCIPAL
   ========================================================== */

.kpconfig__box {
  position: relative;

  width: min(100%, 1120px);
  margin: 0 auto;

  padding: 48px 40px 38px;

  box-sizing: border-box;

  overflow: hidden;

  border: 1px solid var(--kp-border);
  border-radius: 22px;

  background-color: var(--kp-bg);

  background-image:
    linear-gradient(
      rgba(36, 152, 245, .055) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(36, 152, 245, .055) 1px,
      transparent 1px
    );

  background-size: 46px 46px;
}


/* ==========================================================
   SCANNER
   ========================================================== */

.kpconfig__scanner {
  position: absolute;

  left: 0;
  right: 0;

  height: 2px;

  pointer-events: none;

  z-index: 0;

  opacity: .7;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(36, 152, 245, .95),
    transparent
  );

  box-shadow:
    0 0 8px rgba(36, 152, 245, .6),
    0 0 22px rgba(36, 152, 245, .3);

  animation: kpconfig-scan 6s ease-in-out infinite alternate;
}


@keyframes kpconfig-scan {

  from {
    top: 14%;
  }

  to {
    top: 86%;
  }

}


/* Le contenu reste devant le scanner */

.kpconfig__header,
.kpconfig__step {
  position: relative;
  z-index: 1;
}


/* ==========================================================
   HEADER
   ========================================================== */

.kpconfig__header {
  text-align: center;

  margin-bottom: 38px;
}


.kpconfig__status {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  margin-bottom: 17px;

  color: var(--kp-blue);

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 4px;
}


.kpconfig__status-dot {
  width: 8px;
  height: 8px;

  flex: 0 0 8px;

  border-radius: 50%;

  background: var(--kp-blue);

  box-shadow:
    0 0 6px var(--kp-blue),
    0 0 15px rgba(36, 152, 245, .55);
}


.kpconfig__title {
  margin: 0;

  color: #fff;

  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;

  line-height: .95;

  letter-spacing: -1px;
}


.kpconfig__title span {
  color: var(--kp-blue);
}


.kpconfig__subtitle {
  margin: 17px 0 0;

  color: var(--kp-text);

  font-size: 15px;
  line-height: 1.6;
}


/* ==========================================================
   BADGES
   ========================================================== */

.kpconfig__badges {
  display: flex;

  justify-content: center;
  align-items: center;

  flex-wrap: wrap;

  gap: 10px;

  margin-top: 23px;
}


.kpconfig__badge {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  min-height: 36px;

  padding: 0 15px;

  box-sizing: border-box;

  border-radius: 999px;

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 2px;
}


.kpconfig__badge--green {
  color: var(--kp-green);

  border: 1px solid rgba(37, 231, 163, .65);

  background: rgba(37, 231, 163, .04);
}


.kpconfig__badge--blue {
  color: var(--kp-blue);

  border: 1px solid rgba(36, 152, 245, .65);

  background: rgba(36, 152, 245, .04);
}


.kpconfig__badge-symbol {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 17px;
  height: 17px;

  border: 1px solid currentColor;
  border-radius: 50%;

  font-size: 10px;
}


.kpconfig__diamond {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 18px;
  height: 18px;

  font-size: 20px;
  line-height: 1;
}


/* ==========================================================
   ÉTAPE
   ========================================================== */

.kpconfig__step-heading {
  display: flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 20px;
}


.kpconfig__step-number {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  flex: 0 0 36px;

  border: 1px solid rgba(36, 152, 245, .7);
  border-radius: 9px;

  color: var(--kp-blue);

  font-size: 10px;
  font-weight: 800;
}


.kpconfig__step-label {
  color: #d5deea;

  white-space: nowrap;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 3px;
}


.kpconfig__step-line {
  width: 100%;
  height: 1px;

  background: linear-gradient(
    90deg,
    rgba(36, 152, 245, .45),
    rgba(36, 152, 245, .05)
  );
}


/* ==========================================================
   GRILLE
   ========================================================== */

.kpconfig__options {
  display: grid;

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

  gap: 14px;
}


/* ==========================================================
   CARTE
   ========================================================== */

.kpconfig__card {
  appearance: none;
  -webkit-appearance: none;

  position: relative;

  min-width: 0;
  min-height: 330px;

  padding: 26px 24px 20px;

  box-sizing: border-box;

  display: flex;
  flex-direction: column;

  align-items: center;

  color: inherit;

  font: inherit;

  text-align: center;

  cursor: pointer;

  border: 1px solid rgba(118, 153, 197, .25);
  border-radius: 16px;

  background:
    linear-gradient(
      180deg,
      rgba(15, 49, 91, .82),
      rgba(8, 32, 65, .94)
    );

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


/* HOVER */

.kpconfig__card:hover {
  transform: translateY(-5px);

  border-color: rgba(36, 152, 245, .65);

  background:
    linear-gradient(
      180deg,
      rgba(18, 62, 111, .95),
      rgba(8, 36, 73, .98)
    );

  box-shadow:
    0 14px 35px rgba(0, 0, 0, .16),
    inset 0 0 30px rgba(36, 152, 245, .04);
}


/* CARTE SÉLECTIONNÉE */

.kpconfig__card.is-selected {
  border-color: var(--kp-blue);

  background:
    linear-gradient(
      180deg,
      rgba(13, 57, 105, .98),
      rgba(8, 37, 76, .98)
    );

  box-shadow:
    inset 0 0 30px rgba(36, 152, 245, .06);
}


/* ==========================================================
   CHECK
   ========================================================== */

.kpconfig__selected-check {
  position: absolute;

  top: 13px;
  right: 13px;

  width: 23px;
  height: 23px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: #fff;

  background: var(--kp-blue);

  font-size: 11px;

  opacity: 0;

  transform: scale(.7);

  transition:
    opacity .2s ease,
    transform .2s ease;
}


.kpconfig__card.is-selected
.kpconfig__selected-check {
  opacity: 1;
  transform: scale(1);
}


/* ==========================================================
   ICÔNES
   IMPORTANT : UNIQUEMENT LES SVG DU CONFIGURATEUR
   ========================================================== */

.kpconfig__card-icon {
  width: 50px;
  height: 50px;

  flex: 0 0 50px;

  margin: 0 auto 14px;

  display: flex;

  align-items: center;
  justify-content: center;

  box-sizing: border-box;

  color: #fff;

  border: 1px solid rgba(36, 152, 245, .35);
  border-radius: 12px;

  background: rgba(36, 152, 245, .10);
}


.kpconfig__card-icon > svg {
  display: block !important;

  width: 23px !important;
  height: 23px !important;

  min-width: 23px !important;
  min-height: 23px !important;

  max-width: 23px !important;
  max-height: 23px !important;

  flex: 0 0 23px !important;

  margin: 0 !important;

  overflow: visible;
}


/* ==========================================================
   TEXTE CARTE
   ========================================================== */

.kpconfig__card-title {
  display: block;

  width: 100%;

  margin: 0 auto 10px;

  color: #fff;

  font-size: 13px;
  font-weight: 900;

  line-height: 1.25;

  text-align: center;
}


.kpconfig__card-tag {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: fit-content;
  max-width: 90%;

  min-height: 21px;

  margin: 0 auto 20px;

  padding: 0 9px;

  box-sizing: border-box;

  border-radius: 5px;

  color: var(--kp-blue);

  background: rgba(36, 152, 245, .11);

  font-size: 7px;
  font-weight: 800;

  line-height: 1.25;

  letter-spacing: .8px;

  text-align: center;
}


.kpconfig__card-description {
  display: block;

  width: 100%;
  max-width: 280px;

  margin: 0 auto;

  color: var(--kp-text);

  font-size: 12px;
  font-weight: 400;

  line-height: 1.55;

  text-align: center;
}


.kpconfig__card-description strong {
  color: #fff;

  font-weight: 800;
}


/* ==========================================================
   NOTE ENVOI
   ========================================================== */

.kpconfig__card-note {
  display: block;

  width: 100%;
  max-width: 260px;

  margin: 17px auto 0;

  padding: 10px 12px;

  box-sizing: border-box;

  border: 1px solid rgba(36, 152, 245, .25);
  border-radius: 8px;

  color: #8f9caf;

  font-size: 8px;

  line-height: 1.45;

  text-align: center;
}


/* ==========================================================
   SÉLECTION
   ========================================================== */

.kpconfig__select {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  margin: auto auto 0;

  padding-top: 25px;

  color: var(--kp-blue);
}


.kpconfig__radio {
  width: 18px;
  height: 18px;

  flex: 0 0 18px;

  box-sizing: border-box;

  border: 1px solid #c4cfdb;
  border-radius: 50%;

  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}


.kpconfig__select-text {
  display: none;

  font-size: 7px;
  font-weight: 800;

  letter-spacing: 1.5px;
}


.kpconfig__card.is-selected
.kpconfig__radio {
  border: 5px solid var(--kp-blue);

  box-shadow: 0 0 12px rgba(36, 152, 245, .55);
}


.kpconfig__card.is-selected
.kpconfig__select-text {
  display: inline;
}


/* ==========================================================
   RÉSULTAT
   ========================================================== */

.kpconfig__result {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 11px;

  margin-top: 24px;

  padding: 14px 20px;

  box-sizing: border-box;

  border: 1px solid rgba(36, 152, 245, .30);
  border-radius: 12px;

  background: rgba(4, 20, 42, .55);

  text-align: left;
}


.kpconfig__result-dot {
  width: 7px;
  height: 7px;

  flex: 0 0 7px;

  border-radius: 50%;

  background: var(--kp-blue);

  box-shadow: 0 0 10px var(--kp-blue);
}


.kpconfig__result strong {
  display: block;

  color: var(--kp-blue);

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 1.5px;
}


.kpconfig__result p {
  margin: 4px 0 0;

  color: #8f9caf;

  font-size: 9px;

  line-height: 1.4;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media screen and (max-width: 749px) {

  .kpconfig {
    padding: 20px 12px;
  }


  .kpconfig__box {
    padding: 34px 14px 24px;

    border-radius: 18px;

    background-size: 38px 38px;
  }


  .kpconfig__header {
    margin-bottom: 31px;
  }


  .kpconfig__status {
    font-size: 7px;

    letter-spacing: 2.5px;
  }


  .kpconfig__title {
    font-size: 42px;
  }


  .kpconfig__subtitle {
    margin-top: 13px;

    font-size: 13px;
  }


  .kpconfig__badges {
    gap: 7px;

    margin-top: 19px;
  }


  .kpconfig__badge {
    min-height: 32px;

    padding: 0 11px;

    font-size: 6px;

    letter-spacing: 1.2px;
  }


  .kpconfig__step-heading {
    gap: 10px;
  }


  .kpconfig__step-label {
    font-size: 7px;

    letter-spacing: 2px;
  }


  .kpconfig__options {
    grid-template-columns: 1fr;

    gap: 12px;
  }


  .kpconfig__card {
    min-height: 300px;

    padding: 25px 18px 18px;
  }


  .kpconfig__card-title {
    font-size: 14px;
  }


  .kpconfig__card-description {
    max-width: 290px;

    font-size: 12px;
  }


  .kpconfig__result {
    align-items: flex-start;

    justify-content: flex-start;

    padding: 13px 15px;
  }

}


/* ==========================================================
   ACCESSIBILITÉ ANIMATION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

  .kpconfig__scanner {
    animation: none;
  }


  .kpconfig__card {
    transition: none;
  }

}

/* =========================================
   MINI BADGES — HOVER
   ========================================= */

.kpconfig__badge {
  cursor: default;

  transition:
    transform .22s ease,
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}


/* TESTEUR DIAMANT */

.kpconfig__badge--green:hover {
  transform: translateY(-3px) scale(1.02);

  background: rgba(37, 231, 163, .10);

  border-color: rgba(37, 231, 163, .95);

  box-shadow:
    0 8px 24px rgba(37, 231, 163, .12),
    0 0 18px rgba(37, 231, 163, .08);
}


/* MOISSANITE */

.kpconfig__badge--blue:hover {
  transform: translateY(-3px) scale(1.02);

  background: rgba(36, 152, 245, .12);

  border-color: #2498f5;

  box-shadow:
    0 8px 24px rgba(36, 152, 245, .14),
    0 0 18px rgba(36, 152, 245, .10);
}


/* Petit mouvement de l'icône */

.kpconfig__badge-symbol,
.kpconfig__diamond {
  transition:
    transform .22s ease,
    filter .22s ease;
}

.kpconfig__badge:hover .kpconfig__badge-symbol,
.kpconfig__badge:hover .kpconfig__diamond {
  transform: scale(1.15);

  filter: brightness(1.18);
}

/* =========================================================
   FLOW MONTRE COMPLÈTE
   ========================================================= */

.kpfull {
  margin-top: 26px;

  opacity: 0;
  transform: translateY(14px);

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

.kpfull.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================================
   ÉTAPES
   ========================================================= */

.kpfull__step {
  margin-top: 24px;
  padding-top: 26px;

  border-top:
    1px solid rgba(36,152,245,.16);
}

.kpfull__heading {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 12px;
}

.kpfull__number {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  flex: 0 0 36px;

  color: #2498f5;

  border:
    1px solid rgba(36,152,245,.65);

  border-radius: 8px;

  font-size: 10px;
  font-weight: 800;
}

.kpfull__eyebrow {
  display: block;

  color: #2498f5;

  font-size: 7px;
  font-weight: 800;

  letter-spacing: 1.5px;
}

.kpfull__heading h2 {
  margin: 4px 0 0;

  color: #ffffff;

  font-size: 18px;
  font-weight: 800;
}

.kpfull__line {
  flex: 1;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(36,152,245,.35),
      transparent
    );
}

.kpfull__intro {
  margin: 0 0 18px 50px;

  color: #b7c1cf;

  font-size: 11px;
}


/* =========================================================
   COULEUR BASE
   ========================================================= */

.kpfull__base-grid {
  display: grid;

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

  gap: 12px;
}

.kpfull-base {
  position: relative;

  overflow: hidden;

  padding: 12px;

  cursor: pointer;

  color: inherit;

  background: #071f41;

  border:
    1px solid rgba(255,255,255,.14);

  border-radius: 12px;

  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.kpfull-base:hover {
  transform: translateY(-3px);

  border-color:
    rgba(36,152,245,.65);
}

.kpfull-base.is-selected {
  border-color: #2498f5;

  box-shadow:
    inset 0 0 22px rgba(36,152,245,.05);
}

.kpfull-base__check,
.kpfull-bezel__check {
  position: absolute;

  top: 10px;
  right: 10px;

  display: none;

  align-items: center;
  justify-content: center;

  width: 21px;
  height: 21px;

  color: #ffffff;

  background: #2498f5;

  border-radius: 50%;

  font-size: 9px;
}

.kpfull-base.is-selected
.kpfull-base__check,
.kpfull-bezel.is-selected
.kpfull-bezel__check {
  display: flex;
}

.kpfull-base__visual {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 100px;

  margin-bottom: 12px;

  border-radius: 8px;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 1px;
}

.kpfull-base__visual--black {
  color: #fff;
  background: #090b0f;
}

.kpfull-base__visual--white {
  color: #09182e;
  background: #e8edf3;
}

.kpfull-base__visual--blue {
  color: #fff;
  background: #0a4282;
}

.kpfull-base > strong {
  display: block;

  color: #ffffff;

  font-size: 10px;
  font-weight: 800;

  text-align: center;
}


/* =========================================================
   LUNETTES
   ========================================================= */

.kpfull__bezel-grid {
  display: grid;

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

  gap: 12px;

  margin-top: 17px;
}

.kpfull-bezel {
  position: relative;

  padding: 12px;

  cursor: pointer;

  color: inherit;

  background: #071f41;

  border:
    1px solid rgba(255,255,255,.14);

  border-radius: 12px;

  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.kpfull-bezel:hover {
  transform: translateY(-3px);

  border-color:
    rgba(36,152,245,.65);
}

.kpfull-bezel.is-selected {
  border-color: #2498f5;

  box-shadow:
    inset 0 0 22px rgba(36,152,245,.05);
}

.kpfull-bezel__visual {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 110px;

  margin-bottom: 11px;

  color: #2498f5;

  background:
    rgba(36,152,245,.04);

  border-radius: 8px;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 1px;
}

.kpfull-bezel > strong {
  display: block;

  color: #ffffff;

  font-size: 10px;
  font-weight: 800;

  text-align: center;
}


/* =========================================================
   FINITIONS
   ========================================================= */

.kpfull__finish {
  margin-top: 23px;
}

.kpfull__finish-label {
  display: block;

  margin-bottom: 12px;

  color: #c6d0dc;

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 2px;
}

.kpfull__finish-grid {
  display: grid;

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

  gap: 9px;
}

.kpfull-finish {
  min-height: 44px;

  padding: 0 12px;

  cursor: pointer;

  color: #b7c1cf;

  background: #071f41;

  border:
    1px solid rgba(255,255,255,.14);

  border-radius: 8px;

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 1px;

  transition:
    transform .2s ease,
    border-color .2s ease,
    color .2s ease,
    background .2s ease;
}

.kpfull-finish:hover {
  transform: translateY(-2px);

  color: #ffffff;

  border-color:
    rgba(36,152,245,.65);
}

.kpfull-finish.is-selected {
  color: #ffffff;

  background:
    rgba(36,152,245,.15);

  border-color: #2498f5;
}

.kpfull__finish-note {
  margin: 10px 0 0;

  color: #7e8998;

  font-size: 8px;
}


/* =========================================================
   RÉSUMÉ / PRIX
   ========================================================= */

.kpfull-summary {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    190px
    250px;

  gap: 24px;

  align-items: center;

  margin-top: 30px;

  padding: 24px;

  background:
    linear-gradient(
      145deg,
      #071f40,
      #09264b
    );

  border:
    1px solid rgba(36,152,245,.35);

  border-radius: 14px;
}

.kpfull-summary__eyebrow {
  color: #2498f5;

  font-size: 7px;
  font-weight: 800;

  letter-spacing: 1.5px;
}

.kpfull-summary h2 {
  margin: 5px 0 14px;

  color: #ffffff;

  font-size: 19px;
}

.kpfull-summary__rows {
  max-width: 430px;
}

.kpfull-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 6px 0;

  border-bottom:
    1px solid rgba(255,255,255,.06);
}

.kpfull-summary__row span {
  color: #778395;

  font-size: 8px;
}

.kpfull-summary__row strong {
  color: #ffffff;

  font-size: 8px;
  font-weight: 700;

  text-align: right;
}

.kpfull-summary__price > span {
  display: block;

  color: #2498f5;

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 1px;
}

.kpfull-summary__price > strong {
  display: block;

  margin: 6px 0;

  color: #2498f5;

  font-size: 34px;
  font-weight: 800;
}

.kpfull-summary__price small {
  color: #7e8998;

  font-size: 7px;

  line-height: 1.4;
}

.kpfull-summary__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;

  padding: 17px 18px;

  color: #ffffff;

  background:
    linear-gradient(
      90deg,
      #2498f5,
      #2855df
    );

  border: none;
  border-radius: 8px;

  cursor: pointer;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: .4px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  .kpfull__base-grid,
  .kpfull__bezel-grid {
    grid-template-columns: 1fr;
  }

  .kpfull__finish-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kpfull__intro {
    margin-left: 0;
  }

  .kpfull-summary {
    grid-template-columns: 1fr;

    gap: 20px;

    padding: 19px;
  }

}

/* =========================================
   COULEURS GA-2100 — MINI CARTES
   ========================================= */

.kpfull-colors {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 18px;
}


.kpfull-color {
  position: relative;

  width: 78px;
  height: 82px;

  padding: 10px 6px 9px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: rgba(5, 18, 37, .55);
  border: 1px solid rgba(115, 174, 226, .22);
  border-radius: 14px;

  color: #fff;
  cursor: pointer;

  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}


/* ROND DE COULEUR */

.kpfull-color__dot {
  display: block;

  width: 29px;
  height: 29px;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.10);
}


/* COULEURS */

.kpfull-color__dot--black {
  background: #111315;
}

.kpfull-color__dot--white {
  background: #f1f2f4;
}

.kpfull-color__dot--blue {
  background: #2159a8;
}

.kpfull-color__dot--red {
  background: #e20d16;
}


/* NOM */

.kpfull-color__name {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .8px;
  line-height: 1;

  color: rgba(255,255,255,.72);
}


/* HOVER */

.kpfull-color:hover {
  transform: translateY(-3px);

  border-color: rgba(39, 157, 255, .7);

  background: rgba(12, 44, 78, .72);

  box-shadow:
    0 8px 22px rgba(0,0,0,.18),
    0 0 18px rgba(32, 153, 255, .08);
}


/* SÉLECTION */

.kpfull-color.is-selected {
  border-color: #249cff;

  background: rgba(20, 75, 126, .38);

  box-shadow:
    inset 0 0 0 1px rgba(36,156,255,.12),
    0 0 20px rgba(36,156,255,.10);
}


.kpfull-color__check {
  position: absolute;

  top: 6px;
  right: 7px;

  opacity: 0;

  font-size: 9px;
  font-weight: 900;

  color: #35a9ff;
}


.kpfull-color.is-selected .kpfull-color__check {
  opacity: 1;
}


/* AUTRE */

.kpfull-color__plus {
  width: 29px;
  height: 29px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px dashed rgba(54, 165, 255, .55);
  border-radius: 50%;

  color: #35a9ff;

  font-size: 19px;
  font-weight: 400;
}


/* MOBILE */

@media screen and (max-width: 749px) {

  .kpfull-colors {
    gap: 8px;
  }

  .kpfull-color {
    width: 68px;
    height: 74px;

    border-radius: 12px;
  }

  .kpfull-color__dot,
  .kpfull-color__plus {
    width: 25px;
    height: 25px;
  }

}

.kpfull-colors {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}

/* =========================================================
   K PLUG — DEMANDE DE PERSONNALISATION
   ========================================================= */

.kpfull-request {
  margin-top: 24px;
  padding: 26px;

  border: 1px solid rgba(36, 152, 245, .35);
  border-radius: 14px;

  background:
    linear-gradient(
      145deg,
      rgba(7, 31, 64, .96),
      rgba(9, 38, 75, .96)
    );
}


/* HEADER */

.kpfull-request__head {
  text-align: left;
}

.kpfull-request__head > span {
  display: block;

  margin-bottom: 6px;

  color: #2498f5;

  font-size: 7px;
  font-weight: 800;

  letter-spacing: 2px;
}

.kpfull-request__head h2 {
  margin: 0 0 9px;

  color: #fff;

  font-size: 19px;
  font-weight: 900;
}

.kpfull-request__head p {
  max-width: 560px;

  margin: 0;

  color: #98a5b6;

  font-size: 10px;
  line-height: 1.6;
}

.kpfull-request__head p strong {
  color: #dbe4ee;
  font-weight: 700;
}


/* FORMULAIRE */

.kpfull-request__form {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px;

  margin-top: 22px;
}

.kpfull-request__field {
  display: flex;
  flex-direction: column;

  gap: 7px;
}

.kpfull-request__field--full {
  grid-column: 1 / -1;
}

.kpfull-request__field label {
  color: #8390a1;

  font-size: 7px;
  font-weight: 800;

  letter-spacing: 1.5px;
}

.kpfull-request__field input,
.kpfull-request__field textarea {
  width: 100%;

  box-sizing: border-box;

  padding: 13px 14px;

  color: #fff;

  outline: none;

  border: 1px solid rgba(126, 163, 203, .22);
  border-radius: 8px;

  background: rgba(3, 17, 36, .55);

  font-family: inherit;
  font-size: 11px;

  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.kpfull-request__field textarea {
  resize: vertical;
  min-height: 82px;
}

.kpfull-request__field input:focus,
.kpfull-request__field textarea:focus {
  border-color: #2498f5;

  background: rgba(5, 25, 51, .8);

  box-shadow:
    0 0 0 2px rgba(36, 152, 245, .08);
}

.kpfull-request__field input::placeholder,
.kpfull-request__field textarea::placeholder {
  color: #59677a;
}


/* MESSAGE */

.kpfull-request__notice {
  display: flex;
  align-items: flex-start;

  gap: 10px;

  margin-top: 16px;
  padding: 12px 14px;

  border: 1px solid rgba(36, 152, 245, .18);
  border-radius: 8px;

  background: rgba(36, 152, 245, .035);
}

.kpfull-request__notice-dot {
  width: 6px;
  height: 6px;

  flex: 0 0 6px;

  margin-top: 5px;

  border-radius: 50%;

  background: #2498f5;

  box-shadow: 0 0 9px #2498f5;
}

.kpfull-request__notice p {
  margin: 0;

  color: #8593a5;

  font-size: 9px;
  line-height: 1.5;
}

.kpfull-request__notice strong {
  color: #cbd5e1;
}


/* BOUTON */

.kpfull-request__button {
  width: 100%;

  min-height: 52px;

  margin-top: 16px;
  padding: 0 19px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  cursor: pointer;

  color: #fff;

  border: 0;
  border-radius: 8px;

  background:
    linear-gradient(
      90deg,
      #2498f5,
      #2855df
    );

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 1px;

  transition:
    transform .2s ease,
    filter .2s ease,
    box-shadow .2s ease;
}

.kpfull-request__button:hover {
  transform: translateY(-2px);

  filter: brightness(1.08);

  box-shadow:
    0 10px 28px rgba(36, 152, 245, .20);
}


/* MOBILE */

@media screen and (max-width: 749px) {

  .kpfull-request {
    padding: 19px 15px;
  }

  .kpfull-request__form {
    grid-template-columns: 1fr;
  }

  .kpfull-request__field--full {
    grid-column: auto;
  }

}

/* ===== RÉSUMÉ + FORMULAIRE ===== */

.kpfull-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.kpfull-request {
  width: 100%;
  max-width: 520px;
  margin: 0;
  padding: 28px;
  box-sizing: border-box;
}

.kpfull-request__form {
  width: 100%;
}

/* MOBILE */
@media screen and (max-width: 749px) {
  .kpfull-summary {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .kpfull-request {
    max-width: 100%;
  }
}

/* ALIGNEMENT FIN RÉSUMÉ / FORMULAIRE */

.kpfull-summary {
  align-items: start;
}

.kpfull-request {
  margin-top: 0 !important;
}

/* TEXTAREA UN PEU PLUS COMPACT */

.kpfull-request__field textarea {
  min-height: 72px;
}

/* RÉSUMÉ UN PEU PLUS RESPIRANT */

.kpfull-summary__row {
  gap: 30px;
}

.kpfull-summary__row strong {
  max-width: 58%;
}

.kpfull-bezel__visual {
  height: 150px;
  overflow: hidden;
  background: #000;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.kpfull-bezel__visual img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;
}

/* =========================================
   FINITIONS — RONDS DE COULEUR
   ========================================= */

.kpfull-finish {
  position: relative;

  min-height: 48px;

  padding: 0 16px;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  gap: 12px;

  color: #b7c1cf;
  background: #071f41;

  border: 1px solid rgba(255,255,255,.14);
  border-radius: 9px;

  cursor: pointer;

  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}


.kpfull-finish:hover {
  transform: translateY(-2px);

  border-color: rgba(36,152,245,.65);

  background: rgba(36,152,245,.07);
}


.kpfull-finish.is-selected {
  border-color: #2498f5;

  background: rgba(36,152,245,.12);

  box-shadow:
    inset 0 0 18px rgba(36,152,245,.05);
}


/* ROND */

.kpfull-finish__dot {
  width: 22px;
  height: 22px;

  flex: 0 0 22px;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.16);
}


/* COULEURS */

.kpfull-finish__dot--silver {
  background: #d7dce2;
}

.kpfull-finish__dot--gold {
  background: #e7b53f;
}

.kpfull-finish__dot--rose {
  background: #e6a0a0;
}

.kpfull-finish__dot--black {
  background: #161616;
}


/* TEXTE */

.kpfull-finish__label {
  font-size: 8px;
  font-weight: 800;

  letter-spacing: 1.2px;

  color: #ffffff;
}


/* CHECK */

.kpfull-finish__check {
  position: absolute;

  right: 13px;

  opacity: 0;

  color: #2498f5;

  font-size: 11px;
  font-weight: 900;
}


.kpfull-finish.is-selected
.kpfull-finish__check {
  opacity: 1;
}

.kpfull-finish-note {
  margin: 10px 0 0;

  color: #7f8da0;
  font-size: 9px;
  line-height: 1.5;
}

.kpfull-finish-note strong {
  color: #b9c5d3;
  font-weight: 700;
}

.kpfull-finish--black {
  display: none !important;
}

.kpfull-finish--black.is-visible {
  display: flex !important;
}

/* MOBILE — cacher le badge MOISSANITE VVS */
@media screen and (max-width: 749px) {
  .kpconfig__badge--blue {
    display: none !important;
  }
}

/* SUPPRIMER L'ESPACE ENTRE TELEGRAM ET CONFIGURATEUR */

.kplug-telegram-banner {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.kpconfig {
  margin-top: 0 !important;
  padding-top: 20px !important;
  border-top: none !important;
}

body,
main,
.kpconfig {
  background-color: #092652 !important;
}

/* =========================================================
   K PLUG — ENVOIE TA G-SHOCK
   ========================================================= */

.kpsend {
  width: 100%;
  max-width: 100%;

  margin-top: 26px;

  box-sizing: border-box;
}

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


/* ===== ÉTAPES ===== */

.kpsend__step {
  padding-top: 26px;
  margin-top: 24px;

  border-top: 1px solid rgba(36,152,245,.16);
}


.kpsend__heading {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 18px;
}


.kpsend__number {
  width: 36px;
  height: 36px;

  flex: 0 0 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #2498f5;

  border: 1px solid rgba(36,152,245,.65);
  border-radius: 8px;

  font-size: 10px;
  font-weight: 800;
}


.kpsend__eyebrow {
  display: block;

  color: #2498f5;

  font-size: 7px;
  font-weight: 800;

  letter-spacing: 1.5px;
}


.kpsend__heading h2 {
  margin: 4px 0 0;

  color: #fff;

  font-size: 18px;
  font-weight: 800;
}


.kpsend__line {
  flex: 1;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(36,152,245,.35),
      transparent
    );
}


/* ===== GA-2100 ===== */

.kpsend__model {
  position: relative;

  max-width: 360px;

  display: flex;
  align-items: center;

  gap: 14px;

  padding: 15px;

  background: rgba(5,18,37,.55);

  border: 1px solid rgba(36,152,245,.38);
  border-radius: 11px;
}


.kpsend__model-icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #2498f5;

  background: rgba(36,152,245,.08);

  border: 1px solid rgba(36,152,245,.25);
  border-radius: 9px;
}


.kpsend__model-icon svg {
  width: 22px;
  height: 22px;
}


.kpsend__model div:nth-child(2) {
  display: flex;
  flex-direction: column;

  gap: 3px;
}


.kpsend__model div:nth-child(2) span {
  color: #758397;

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 1px;
}


.kpsend__model div:nth-child(2) strong {
  color: #fff;

  font-size: 11px;
  font-weight: 800;
}


.kpsend__model-check {
  margin-left: auto;

  color: #2498f5;

  font-size: 12px;
  font-weight: 900;
}


/* ===== LUNETTES ===== */

.kpsend__bezel-grid {
  display: grid;

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

  gap: 12px;
}


.kpsend-bezel {
  position: relative;

  padding: 10px;

  cursor: pointer;

  background: #071f41;

  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;

  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}


.kpsend-bezel:hover {
  transform: translateY(-3px);

  border-color: rgba(36,152,245,.65);
}


.kpsend-bezel.is-selected {
  border-color: #2498f5;

  box-shadow:
    inset 0 0 22px rgba(36,152,245,.05);
}


.kpsend-bezel__visual {
  height: 150px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: #000;

  border-radius: 8px;
}


.kpsend-bezel__visual img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;
}


.kpsend-bezel > strong {
  display: block;

  margin-top: 11px;

  color: #fff;

  text-align: center;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: .8px;
}


.kpsend-bezel__check {
  position: absolute;

  top: 8px;
  right: 8px;

  z-index: 2;

  width: 21px;
  height: 21px;

  display: none;
  align-items: center;
  justify-content: center;

  color: #fff;
  background: #2498f5;

  border-radius: 50%;

  font-size: 9px;
}


.kpsend-bezel.is-selected
.kpsend-bezel__check {
  display: flex;
}


/* ===== FINITIONS ===== */

.kpsend__finish {
  margin-top: 23px;
}


.kpsend__finish-title {
  display: block;

  margin-bottom: 12px;

  color: #c6d0dc;

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 2px;
}


.kpsend__finish-grid {
  display: grid;

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

  gap: 9px;
}


.kpsend-finish {
  position: relative;

  min-height: 48px;

  display: flex;
  align-items: center;

  gap: 11px;

  padding: 0 15px;

  cursor: pointer;

  color: #fff;
  background: #071f41;

  border: 1px solid rgba(255,255,255,.14);
  border-radius: 9px;

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 1px;

  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease;
}


.kpsend-finish:hover {
  transform: translateY(-2px);

  border-color: rgba(36,152,245,.65);
}


.kpsend-finish.is-selected {
  border-color: #2498f5;

  background: rgba(36,152,245,.12);
}


.kpsend-finish__dot {
  width: 22px;
  height: 22px;

  flex: 0 0 22px;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.16);
}


.kpsend-finish__dot--silver {
  background: #d7dce2;
}

.kpsend-finish__dot--gold {
  background: #e7b53f;
}

.kpsend-finish__dot--rose {
  background: #e6a0a0;
}

.kpsend-finish__dot--black {
  background: #111;
}


.kpsend-finish__check {
  margin-left: auto;

  display: none;

  color: #2498f5;

  font-size: 11px;
}


.kpsend-finish.is-selected
.kpsend-finish__check {
  display: inline;
}


/* NOIR CACHÉ PAR DÉFAUT */

.kpsend-finish--black {
  display: none;
}


.kpsend-finish--black.is-visible {
  display: flex;
}


.kpsend__finish-note {
  margin: 10px 0 0;

  color: #7f8da0;

  font-size: 9px;
  line-height: 1.5;
}


.kpsend__finish-note strong {
  color: #b9c5d3;
}


/* ===== RÉSUMÉ ===== */

.kpsend-summary {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  gap: 50px;

  align-items: start;

  margin-top: 30px;
  padding-top: 28px;

  border-top: 1px solid rgba(36,152,245,.16);
}


.kpsend-summary__eyebrow,
.kpsend-request__eyebrow {
  color: #2498f5;

  font-size: 7px;
  font-weight: 800;

  letter-spacing: 1.5px;
}


.kpsend-summary h2,
.kpsend-request h2 {
  margin: 5px 0 15px;

  color: #fff;

  font-size: 19px;
  font-weight: 900;
}


.kpsend-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;

  padding: 7px 0;

  border-bottom: 1px solid rgba(255,255,255,.06);
}


.kpsend-summary__row span {
  color: #778395;

  font-size: 8px;
}


.kpsend-summary__row strong {
  color: #fff;

  font-size: 8px;
  font-weight: 700;

  text-align: right;
}


/* ===== FORMULAIRE ===== */

.kpsend-request {
  width: 100%;

  padding: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(7,31,64,.96),
      rgba(9,38,75,.96)
    );

  border: 1px solid rgba(36,152,245,.35);
  border-radius: 14px;
}


.kpsend-request__intro {
  margin: 0 0 19px;

  color: #98a5b6;

  font-size: 10px;
  line-height: 1.6;
}


.kpsend-request__intro strong {
  color: #dbe4ee;
}


.kpsend-request__form {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px;
}


.kpsend-field {
  display: flex;
  flex-direction: column;

  gap: 7px;
}


.kpsend-field--full {
  grid-column: 1 / -1;
}


.kpsend-field label {
  color: #8390a1;

  font-size: 7px;
  font-weight: 800;

  letter-spacing: 1.5px;
}


.kpsend-field input,
.kpsend-field textarea {
  width: 100%;

  padding: 13px 14px;

  color: #fff;

  outline: none;

  background: rgba(3,17,36,.55);

  border: 1px solid rgba(126,163,203,.22);
  border-radius: 8px;

  font-family: inherit;
  font-size: 11px;
}


.kpsend-field textarea {
  min-height: 72px;

  resize: vertical;
}


.kpsend-field input:focus,
.kpsend-field textarea:focus {
  border-color: #2498f5;
}


.kpsend-request__info {
  display: flex;
  align-items: flex-start;

  gap: 10px;

  margin-top: 16px;
  padding: 12px 14px;

  background: rgba(36,152,245,.035);

  border: 1px solid rgba(36,152,245,.18);
  border-radius: 8px;
}


.kpsend-request__dot {
  width: 6px;
  height: 6px;

  flex: 0 0 6px;

  margin-top: 5px;

  background: #2498f5;

  border-radius: 50%;

  box-shadow: 0 0 9px #2498f5;
}


.kpsend-request__info p {
  margin: 0;

  color: #8593a5;

  font-size: 9px;
  line-height: 1.5;
}


.kpsend-request__info strong {
  color: #cbd5e1;
}


.kpsend-request__button {
  width: 100%;
  min-height: 52px;

  margin-top: 16px;
  padding: 0 19px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #fff;

  background:
    linear-gradient(
      90deg,
      #2498f5,
      #2855df
    );

  border: 0;
  border-radius: 8px;

  cursor: pointer;

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 1px;

  transition:
    transform .2s ease,
    filter .2s ease;
}


.kpsend-request__button:hover {
  transform: translateY(-2px);

  filter: brightness(1.08);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  .kpsend__bezel-grid {
    grid-template-columns: 1fr;
  }

  .kpsend__finish-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kpsend-summary {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .kpsend-request {
    padding: 19px 15px;
  }

  .kpsend-request__form {
    grid-template-columns: 1fr;
  }

  .kpsend-field--full {
    grid-column: auto;
  }

  .kpsend__model {
    max-width: 100%;
  }

}

.kpsend-summary {
  margin-top: 30px !important;
  padding: 24px !important;

  background: #0b2f60 !important;

  border: 1px solid rgba(36, 152, 245, .35) !important;
  border-radius: 14px !important;

  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 50px !important;

  align-items: start !important;
}

@media screen and (max-width: 749px) {
  .kpsend-summary {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
    padding: 18px !important;
  }
}

/* =========================================================
   ENVOIE TA G-SHOCK
   RÉSUMÉ — MÊME DESIGN QUE MONTRE COMPLÈTE
   ========================================================= */

.kpsend-summary {
  width: 100% !important;

  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 50px !important;
  align-items: start !important;

  margin-top: 30px !important;
  padding: 24px !important;

  /* même fond sombre que le configurateur */
  background: rgba(7, 31, 64, .96) !important;

  border: 1px solid rgba(36, 152, 245, .35) !important;
  border-radius: 14px !important;
}


/* -------------------------
   PETITS TITRES BLEUS
   ------------------------- */

.kpsend-summary__eyebrow,
.kpsend-request__eyebrow {
  color: #2498f5 !important;

  font-size: 7px !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
}


/* -------------------------
   TITRES
   ------------------------- */

.kpsend-summary h2,
.kpsend-request h2 {
  color: #ffffff !important;

  margin: 5px 0 15px !important;

  font-size: 19px !important;
  font-weight: 900 !important;
}


/* -------------------------
   LIGNES DU RÉSUMÉ
   ------------------------- */

.kpsend-summary__row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;

  gap: 25px !important;

  padding: 7px 0 !important;

  border-bottom: 1px solid rgba(255,255,255,.06) !important;
}


/* TYPE / MODÈLE / LUNETTE... */

.kpsend-summary__row span {
  color: #778395 !important;

  font-size: 8px !important;
  font-weight: 400 !important;
}


/* VALEURS À DROITE */

.kpsend-summary__row strong {
  color: #ffffff !important;

  font-size: 8px !important;
  font-weight: 700 !important;

  text-align: right !important;
}


/* =========================================================
   CARTE FORMULAIRE À DROITE
   ========================================================= */

.kpsend-request {
  width: 100% !important;

  padding: 24px !important;

  background: rgba(7, 31, 64, .96) !important;

  border: 1px solid rgba(36, 152, 245, .35) !important;
  border-radius: 14px !important;
}


/* TEXTE SOUS "TA CONFIGURATION EST PRÊTE" */

.kpsend-request__intro {
  margin: 0 0 19px !important;

  color: #98a5b6 !important;

  font-size: 10px !important;
  line-height: 1.6 !important;
}

.kpsend-request__intro strong {
  color: #dbe4ee !important;
}


/* LABELS */

.kpsend-field label {
  color: #8390a1 !important;

  font-size: 7px !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
}


/* INPUTS */

.kpsend-field input,
.kpsend-field textarea {
  color: #ffffff !important;

  background: rgba(3, 17, 36, .55) !important;

  border: 1px solid rgba(126, 163, 203, .22) !important;
}


/* PLACEHOLDERS */

.kpsend-field input::placeholder,
.kpsend-field textarea::placeholder {
  color: #66758a !important;
  opacity: 1 !important;
}


/* PETIT BLOC D'INFORMATION */

.kpsend-request__info {
  background: rgba(36, 152, 245, .035) !important;

  border: 1px solid rgba(36, 152, 245, .18) !important;
}

.kpsend-request__info p {
  color: #8593a5 !important;
}

.kpsend-request__info strong {
  color: #cbd5e1 !important;
}


/* BOUTON */

.kpsend-request__button {
  color: #ffffff !important;

  background: linear-gradient(
    90deg,
    #2498f5,
    #2855df
  ) !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  .kpsend-summary {
    grid-template-columns: 1fr !important;

    gap: 25px !important;

    padding: 18px !important;
  }

  .kpsend-request {
    padding: 19px 15px !important;
  }

}

/* =========================================
   LUNETTE UNIQUEMENT
   ========================================= */

.kponly {
  width: 100%;
  max-width: 100%;
  margin-top: 26px;
  box-sizing: border-box;
}

.kponly__bezel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.kponly__finish-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

@media screen and (max-width: 749px) {

  .kponly__bezel-grid {
    grid-template-columns: 1fr;
  }

  .kponly__finish-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

/* =========================================
   TEST NOUVEAU MENU MOBILE K PLUG
   ========================================= */

@media screen and (max-width: 749px) {

  header-drawer .menu-drawer__menu.has-submenu {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;

    gap: 0 !important;

    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

}

/* =========================================
   K PLUG — NOUVEAU STYLE MENU MOBILE
   ========================================= */

@media screen and (max-width: 749px) {

  /* FOND DU MENU */
  header-drawer .menu-drawer {
    background: #06172b !important;
    background-image: none !important;
  }


  /* ZONE NAVIGATION */
  header-drawer .menu-drawer__navigation {
    padding: 82px 24px 30px !important;
  }


  /* CHAQUE LIGNE */
  header-drawer .menu-drawer__list-item--flat {
    min-height: 66px !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;

    border: 0 !important;
    border-bottom: 1px solid rgba(36, 152, 245, 0.25) !important;

    border-radius: 0 !important;
    box-shadow: none !important;
  }


  /* PREMIÈRE LIGNE */
  header-drawer .menu-drawer__list-item--flat:first-child {
    border-top: 1px solid rgba(36, 152, 245, 0.25) !important;
  }


  /* LIENS */
  header-drawer .menu-drawer__list-item--flat > a,
  header-drawer .menu-drawer__list-item--flat > button {
    width: 100% !important;
    min-height: 66px !important;

    display: flex !important;
    align-items: center !important;

    padding: 0 4px !important;

    background: transparent !important;

    border: 0 !important;
    border-radius: 0 !important;

    box-shadow: none !important;

    color: #ffffff !important;
  }


  /* TEXTE */
  header-drawer .menu-drawer__list-item--flat a {
    font-size: 13px !important;
    font-weight: 700 !important;

    letter-spacing: 1.5px !important;
  }


  /* ICÔNES À GAUCHE */
  header-drawer .menu-drawer__list-item--flat svg {
    color: #2498f5 !important;
  }


  /* FLÈCHES À DROITE */
  header-drawer .menu-drawer__list-item--flat .svg-wrapper:last-child {
    margin-left: auto !important;

    color: #2498f5 !important;
  }

}

@media screen and (max-width: 749px) {

  header-drawer .menu-drawer__menu.has-submenu > li > a:hover,
  header-drawer .menu-drawer__menu.has-submenu > li > a:focus,
  header-drawer .menu-drawer__menu.has-submenu > li > a:active,
  #HeaderDrawer-explorer + .menu-drawer__menu--childlist > li > a:hover,
  #HeaderDrawer-explorer + .menu-drawer__menu--childlist > li > a:focus,
  #HeaderDrawer-explorer + .menu-drawer__menu--childlist > li > a:active {
    background: transparent !important;
    background-image: none !important;

    box-shadow: none !important;

    border-radius: 0 !important;

    color: #ffffff !important;

    transform: none !important;
  }

}

@media screen and (max-width: 749px) {

  header-drawer .kplug-mobile-cart > a {
    background: transparent !important;
    background-image: none !important;
    border: none !important;
    border-bottom: 1px solid rgba(36, 152, 245, 0.28) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .kplug-mobile-cart__icon {
    width: 20px;
    flex: 0 0 20px;

    color: #42b8ff;
    font-size: 19px;
    line-height: 1;
  }

  .kplug-mobile-cart__count {
    margin-left: auto;

    color: #42b8ff;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
  }

  .kplug-mobile-cart__arrow {
    margin-left: 8px;

    color: #42b8ff;

    font-size: 20px;
    line-height: 1;
  }

  header-drawer .kplug-mobile-cart > a:hover,
  header-drawer .kplug-mobile-cart > a:focus,
  header-drawer .kplug-mobile-cart > a:active {
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
  }

}

@media screen and (max-width: 749px) {

  header-drawer .kplug-mobile-cart > a {
    background: transparent !important;
    background-image: none !important;
    border: none !important;
    border-bottom: 1px solid rgba(36, 152, 245, 0.28) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .kplug-mobile-cart__icon {
    width: 20px;
    flex: 0 0 20px;

    color: #42b8ff;
    font-size: 19px;
    line-height: 1;
  }

  .kplug-mobile-cart__count {
    margin-left: auto;

    color: #42b8ff;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
  }

  .kplug-mobile-cart__arrow {
    margin-left: 8px;

    color: #42b8ff;

    font-size: 20px;
    line-height: 1;
  }

  header-drawer .kplug-mobile-cart > a:hover,
  header-drawer .kplug-mobile-cart > a:focus,
  header-drawer .kplug-mobile-cart > a:active {
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
  }

}

@media screen and (max-width: 749px) {

  .kplug-mobile-cart__count {
    margin-left: auto !important;
    margin-right: 28px !important;

    color: #42b8ff !important;

    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
  }

}

@media screen and (max-width: 749px) {

  /* Supprime l'icône automatique uniquement sur PANIER */
  header-drawer .kplug-mobile-cart > a::before {
    content: none !important;
    display: none !important;
  }

  /* Réaligne PANIER comme les autres */
  header-drawer .kplug-mobile-cart > a {
    padding-left: 28px !important;
  }

}

@media screen and (max-width: 749px) {

  /* K PLUG — RETIRE TOUTES LES ICÔNES DU MENU MOBILE */

  header-drawer .menu-drawer__menu.has-submenu > li > a::before,
  #HeaderDrawer-explorer + .menu-drawer__menu--childlist > li > a::before,
  .kplug-mobile-cart__icon {
    display: none !important;
    content: none !important;
  }

  /* Garde les textes bien alignés */
  header-drawer .menu-drawer__menu.has-submenu > li > a,
  #HeaderDrawer-explorer + .menu-drawer__menu--childlist > li > a {
    gap: 0 !important;
  }

}

/* =========================================
   FIX MENU MOBILE — NE PAS TOUCHER AU DRAWER
   ========================================= */

@media screen and (max-width: 749px) {

  header-component .header__drawer > header-drawer {
    position: static !important;

    left: auto !important;
    right: auto !important;
    top: auto !important;

    transform: none !important;

    width: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    contain: none !important;
  }

}

@media screen and (max-width: 749px) {

  /* FIX DRAWER MOBILE :
     le blur du header crée un mauvais repère pour position:fixed */
  header-component .header__row--top {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  header-component .header__underlay,
  header-component .header__underlay-closed,
  header-component .header__underlay-open {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

}

@media screen and (max-width: 749px) {

  header-drawer .menu-drawer {
    width: 88vw !important;
    max-width: 330px !important;
  }

}

@media screen and (max-width: 749px) {
  header-drawer .menu-drawer__navigation {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

@media screen and (max-width: 749px) {

  /* Texte des liens plus gros */
  header-drawer .menu-drawer__menu-item-text {
    font-size: 11px !important;
    letter-spacing: 0.8px !important;
    font-weight: 700 !important;
  }

  /* Tous les séparateurs exactement identiques */
  header-drawer .menu-drawer__menu > li,
  #HeaderDrawer-explorer + .menu-drawer__menu--childlist > li {
    border-bottom: 1px solid rgba(69, 181, 255, 0.42) !important;
  }

}

@media screen and (max-width: 749px) {
  header-drawer .menu-drawer__list-item--flat:first-child {
    border-top: none !important;
  }
}

/* ==========================================
   K PLUG — BOUTON PANIER DRAWER MOBILE
   ========================================== */

@media screen and (max-width: 749px) {

  header-drawer .kplug-cart-cta {
    list-style: none !important;

    margin: 22px 0 0 !important;
    padding: 0 !important;

    border: 0 !important;
  }

  header-drawer .kplug-cart-cta__link {
    width: 100% !important;
    min-height: 58px !important;

    padding: 0 17px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    background:
      linear-gradient(
        135deg,
        #087ee8 0%,
        #169cff 100%
      ) !important;

    border: 1px solid rgba(94, 199, 255, 0.75) !important;
    border-radius: 10px !important;

    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.15),
      0 8px 24px rgba(0,126,255,.18) !important;

    color: #ffffff !important;
    text-decoration: none !important;

    box-sizing: border-box !important;
  }

  header-drawer .kplug-cart-cta__left {
    display: flex !important;
    align-items: center !important;
    gap: 11px !important;

    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
  }

  header-drawer .kplug-cart-cta__icon {
    width: 19px !important;
    height: 19px !important;

    color: #ffffff !important;
    flex-shrink: 0 !important;
  }

  header-drawer .kplug-cart-cta__count {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-width: 25px !important;
    height: 25px !important;
    padding: 0 7px !important;

    border-radius: 999px !important;

    background: rgba(255,255,255,.18) !important;

    color: #ffffff !important;

    font-size: 10px !important;
    font-weight: 800 !important;
  }

}

/* ==========================================
   K PLUG — FINITION PANIER MOBILE
   ========================================== */

@media screen and (max-width: 749px) {

  /* Contenu du panier */
  header-drawer .kplug-cart-cta__link {
    justify-content: flex-start !important;
    gap: 0 !important;
  }

  /* Icône + PANIER */
  header-drawer .kplug-cart-cta__left {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  /* Icône panier */
  header-drawer .kplug-cart-cta__icon {
    width: 17px !important;
    height: 17px !important;
    color: #54c4ff !important;
  }

  /* Badge quantité */
  header-drawer .kplug-cart-cta__count {
    margin-left: 14px !important;

    min-width: 22px !important;
    height: 22px !important;
    padding: 0 6px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 999px !important;

    background: rgba(84, 196, 255, 0.18) !important;
    border: 1px solid rgba(84, 196, 255, 0.28) !important;

    color: #54c4ff !important;

    font-size: 9px !important;
    font-weight: 800 !important;
  }

  @media screen and (max-width: 749px) {

  header-drawer .kplug-cart-cta__link {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
  }

  header-drawer .kplug-cart-cta__link::after {
    content: "›" !important;

    margin-left: auto !important;

    color: #69c8f7 !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
  }

}

@media screen and (max-width: 749px) {

  header-drawer .kplug-cart-cta__link {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
  }

  header-drawer .kplug-cart-cta__left {
    flex: 0 0 auto !important;
  }

  header-drawer .kplug-cart-cta__count {
    margin-left: 12px !important;
    margin-right: 0 !important;
  }

  header-drawer .kplug-cart-cta__link::after {
    content: "›" !important;
    margin-left: auto !important;

    color: #69c8f7 !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
  }

}

@media screen and (max-width: 749px) {
  header-drawer .kplug-cart-cta__link::after {
    display: none !important;
    content: none !important;
  }
}

/* =========================================
   K PLUG — POPUP SUCCÈS CONFIGURATEUR
========================================= */

.kplug-success-popup {
  position: fixed;
  inset: 0;

  z-index: 999999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity .25s ease,
    visibility .25s ease;
}


/* POPUP OUVERT */

.kplug-success-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* FOND ASSOMBRI */

.kplug-success-popup__overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 8, 20, .82);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}


/* CARTE */

.kplug-success-popup__card {
  position: relative;

  width: min(520px, 100%);

  padding: 58px 48px 42px;

  background:
    radial-gradient(
      circle at 50% 10%,
      rgba(31, 145, 255, .14),
      transparent 40%
    ),
    #03192d;

  border: 1px solid #28a9ff;
  border-radius: 20px;

  box-shadow:
    0 0 0 1px rgba(40, 169, 255, .18),
    0 0 35px rgba(0, 139, 255, .20),
    0 30px 80px rgba(0, 0, 0, .45);

  text-align: center;

  transform: translateY(15px) scale(.97);

  transition: transform .28s ease;
}


.kplug-success-popup.is-open
.kplug-success-popup__card {
  transform: translateY(0) scale(1);
}


/* CROIX */

.kplug-success-popup__close {
  position: absolute;

  top: 17px;
  right: 20px;

  border: 0;
  padding: 0;

  background: transparent;

  color: rgba(255, 255, 255, .65);

  font-size: 28px;
  font-weight: 300;
  line-height: 1;

  cursor: pointer;
}


/* CHECK */

.kplug-success-popup__check {
  width: 86px;
  height: 86px;

  margin: 0 auto 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 3px solid #53c5ff;
  border-radius: 50%;

  color: #53c5ff;

  box-shadow:
    0 0 20px rgba(48, 177, 255, .45),
    inset 0 0 18px rgba(48, 177, 255, .08);
}


.kplug-success-popup__check svg {
  width: 42px;
  height: 42px;
}


/* TITRE */

.kplug-success-popup__title {
  margin: 0;

  color: #ffffff;

  font-size: 30px;
  font-weight: 900;
  line-height: 1.08;

  letter-spacing: .8px;
}


.kplug-success-popup__title span {
  display: block;

  margin-top: 4px;

  color: #2daaff;
}


/* PETIT TRAIT */

.kplug-success-popup__line {
  width: 90px;
  height: 3px;

  margin: 30px auto;

  border-radius: 20px;

  background: #2daaff;

  box-shadow: 0 0 10px rgba(45, 170, 255, .45);
}


/* TEXTE */

.kplug-success-popup__text {
  margin: 0 auto;

  max-width: 400px;

  color: rgba(255, 255, 255, .82);

  font-size: 15px;
  line-height: 1.7;
}


/* DÉLAI */

.kplug-success-popup__delay {
  margin-top: 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  color: #ffffff;

  font-size: 14px;
  font-weight: 600;
}


.kplug-success-popup__delay svg {
  width: 22px;
  height: 22px;

  color: #2daaff;
}


/* BOUTON */

.kplug-success-popup__button {
  width: 100%;

  margin-top: 32px;
  padding: 17px 20px;

  border: 1px solid #2daaff;
  border-radius: 12px;

  background: rgba(14, 84, 151, .20);

  color: #48baff;

  font-size: 13px;
  font-weight: 900;

  letter-spacing: 1.5px;

  cursor: pointer;

  transition:
    background .2s ease,
    color .2s ease,
    box-shadow .2s ease;
}


.kplug-success-popup__button:hover {
  background: #168ee6;

  color: #ffffff;

  box-shadow: 0 0 22px rgba(22, 142, 230, .30);
}


/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 749px) {

  .kplug-success-popup {
    padding: 16px;
  }

  .kplug-success-popup__card {
    width: 100%;

    padding: 48px 24px 28px;

    border-radius: 16px;
  }

  .kplug-success-popup__check {
    width: 70px;
    height: 70px;

    margin-bottom: 23px;
  }

  .kplug-success-popup__check svg {
    width: 34px;
    height: 34px;
  }

  .kplug-success-popup__title {
    font-size: 23px;
  }

  .kplug-success-popup__line {
    margin: 24px auto;
  }

  .kplug-success-popup__text {
    font-size: 13px;
    line-height: 1.65;
  }

  .kplug-success-popup__delay {
    margin-top: 20px;

    font-size: 13px;
  }

  .kplug-success-popup__button {
    margin-top: 27px;
  }

}

@media screen and (max-width: 749px) {

  .kpfull-colors {
    display: flex !important;
    flex-wrap: nowrap !important;

    gap: 10px !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;

    -webkit-overflow-scrolling: touch !important;

    padding-bottom: 8px !important;

    scrollbar-width: none;
  }

  .kpfull-colors::-webkit-scrollbar {
    display: none;
  }

  .kpfull-color {
    flex: 0 0 64px !important;
    min-width: 64px !important;
  }

}

@media screen and (max-width: 749px) {

  .kpfull-colors {
    padding: 4px 2px 10px !important;
  }

  .kpfull-color {
    box-sizing: border-box !important;
  }

}

/* K PLUG — CHIFFRE COMPTEUR PANIER */

.header-actions .cart-bubble__text-count {
  color: #061a35 !important;
  -webkit-text-fill-color: #061a35 !important;

  opacity: 1 !important;
  visibility: visible !important;

  font-size: 10px !important;
  font-weight: 900 !important;
}

/* =========================================
   K PLUG — MENU MOBILE PLUS HAUT
   ========================================= */

@media screen and (max-width: 749px) {

  .menu-drawer__navigation,
  .menu-drawer__menu,
  .header__drawer-menu {
    transform: translateY(-55px) !important;
  }

}

@media screen and (max-width: 749px) {

  /* Remonter uniquement EXPLORER */
  .menu-drawer__navigation > :first-child {
    transform: translateY(-18px) !important;
    margin-bottom: 10px !important;
  }

}

@media screen and (max-width: 749px) {

  /* EXPLORER à la même hauteur que la croix X */
  .menu-drawer__navigation::before {
    position: absolute !important;
    top: 28px !important;
    left: 18px !important;

    margin: 0 !important;
    transform: none !important;
  }

}

/* =========================================
   K PLUG — BLOQUER SCROLL MENU MOBILE
   ========================================= */

@media screen and (max-width: 749px) {

  /* Le drawer lui-même ne défile pas */
  .menu-drawer,
  .menu-drawer__navigation,
  .menu-drawer__menu {
    overflow: hidden !important;
    overscroll-behavior: none !important;
  }

  /* Hauteur limitée à l'écran */
  .menu-drawer {
    height: 100dvh !important;
    max-height: 100dvh !important;
  }

}

/* ==================================================
   K PLUG — SUPPRIME LES SÉPARATEURS AUTOUR DE PANIER
   ================================================== */

@media screen and (max-width: 749px) {

  /* FAQ = élément immédiatement avant PANIER */
  .menu-drawer__menu > .menu-drawer__list-item--flat:has(+ .kplug-cart-cta) {
    border-bottom: 0 !important;
    border-block-end: 0 !important;
  }

  .menu-drawer__menu > .menu-drawer__list-item--flat:has(+ .kplug-cart-cta)::after,
  .menu-drawer__menu > .menu-drawer__list-item--flat:has(+ .kplug-cart-cta)::before {
    display: none !important;
    content: none !important;
  }


  /* Bloc PANIER */
  .menu-drawer__menu > .kplug-cart-cta {
    border: 0 !important;
    border-block: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
  }

  .menu-drawer__menu > .kplug-cart-cta::before,
  .menu-drawer__menu > .kplug-cart-cta::after {
    display: none !important;
    content: none !important;
  }


  /* Le bouton bleu PANIER garde uniquement SA bordure */
  .kplug-cart-cta__link {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

}

@media screen and (max-width: 749px) {

  .kplug-cart-cta {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .kplug-cart-cta__link {
    transform: none !important;
  }

}

/* K PLUG — ESPACE ENTRE FAQ ET PANIER MOBILE */
@media screen and (max-width: 749px) {

  .menu-drawer__menu > .kplug-cart-cta {
    padding: 0 !important;
    border: 0 !important;
  }

  .menu-drawer__menu > .kplug-cart-cta .kplug-cart-cta__link {
    display: flex !important;

    margin-top: 12px !important;

    transform: none !important;
  }

}

/* K PLUG — EFFET TACTILE BOUTON PANIER MOBILE */
@media screen and (max-width: 749px) {

  .kplug-cart-cta__link {
    transition:
      transform 0.12s ease,
      filter 0.12s ease,
      box-shadow 0.12s ease !important;

    -webkit-tap-highlight-color: transparent;
  }

  .kplug-cart-cta__link:active {
    transform: scale(0.97) !important;

    filter: brightness(1.18) !important;

    box-shadow:
      0 0 16px rgba(38, 156, 255, 0.45),
      inset 0 0 12px rgba(255, 255, 255, 0.12) !important;
  }
}

@media screen and (max-width: 749px) {
  .kplug-account-cta {
    margin-bottom: 8px !important;
  }

  .kplug-cart-cta {
    margin-top: 0 !important;
  }
}

@media screen and (max-width: 749px) {
  .kplug-account-cta .kplug-cart-cta__link {
    width: 100% !important;
    min-height: 54px !important;
    padding: 0 16px !important;

    background: #0b2745 !important;
    border: 1px solid #249cff !important;
    border-radius: 8px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    color: #ffffff !important;
  }

  .kplug-account-cta .kplug-cart-cta__left {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .kplug-account-cta .kplug-cart-cta__icon {
    color: #249cff !important;
  }
}

@media screen and (max-width: 749px) {

  li.kplug-account-cta > a {
    display: flex !important;
    align-items: center !important;

    width: 100% !important;
    min-height: 54px !important;
    box-sizing: border-box !important;

    padding: 0 16px !important;

    background-color: #0b2745 !important;
    border: 1px solid #249cff !important;
    border-radius: 8px !important;

    color: #ffffff !important;
    text-decoration: none !important;
  }

  li.kplug-account-cta > a .kplug-cart-cta__left {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }
}

/* =====================================================
   K PLUG — COMPTE + PANIER CÔTE À CÔTE
   ===================================================== */

@media screen and (max-width: 749px) {

  /* La liste devient une grille */
  .menu-drawer__menu {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    column-gap: 8px !important;
  }

  /* Tous les liens classiques restent pleine largeur */
  .menu-drawer__menu > li:not(.kplug-cart-cta) {
    grid-column: 1 / -1 !important;
  }

  /* COMPTE = colonne gauche */
  .menu-drawer__menu > .kplug-account-cta {
    grid-column: 1 !important;

    width: 100% !important;
    margin: 12px 0 0 !important;
    padding: 0 !important;
  }

  /* PANIER = colonne droite */
  .menu-drawer__menu > .kplug-cart-cta:not(.kplug-account-cta) {
    grid-column: 2 !important;

    width: 100% !important;
    margin: 12px 0 0 !important;
    padding: 0 !important;
  }

  /* Les deux rectangles */
  .menu-drawer__menu > .kplug-account-cta > .kplug-cart-cta__link,
  .menu-drawer__menu > .kplug-cart-cta:not(.kplug-account-cta) > .kplug-cart-cta__link {
    width: 100% !important;
    min-width: 0 !important;
    height: 54px !important;
    min-height: 54px !important;

    box-sizing: border-box !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 8px !important;
    margin: 0 !important;

    border-radius: 8px !important;
  }

  /* COMPTE */
  .menu-drawer__menu > .kplug-account-cta > .kplug-cart-cta__link {
    background: #0b2745 !important;
    border: 1px solid #249cff !important;
  }

  /* Contenu intérieur */
  .kplug-account-cta .kplug-cart-cta__left,
  .kplug-cart-cta:not(.kplug-account-cta) .kplug-cart-cta__left {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 7px !important;
    white-space: nowrap !important;
  }

  /* Icônes légèrement plus petites pour tenir à 2 */
  .kplug-account-cta .kplug-cart-cta__icon,
  .kplug-cart-cta:not(.kplug-account-cta) .kplug-cart-cta__icon {
    width: 17px !important;
    height: 17px !important;
    flex-shrink: 0 !important;
  }
}

@media screen and (max-width: 749px) {

  .kplug-mobile-actions-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .kplug-mobile-actions-row > a,
  .kplug-mobile-actions-row > button {
    flex: 1 1 0 !important;
    width: 50% !important;
    height: 54px !important;
    min-width: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;

    margin: 0 !important;
    padding: 0 8px !important;

    box-sizing: border-box !important;
    border-radius: 8px !important;

    font-size: 11px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-decoration: none !important;
  }

  /* COMPTE */
  .kplug-mobile-actions-row > a {
    background: #0b2745 !important;
    border: 1px solid #249cff !important;
    color: #ffffff !important;
  }

  /* PANIER */
  .kplug-mobile-actions-row > button {
    background: #249cff !important;
    border: 1px solid #4db0ff !important;
    color: #ffffff !important;
  }
}

@media screen and (max-width: 749px) {

  /* Le bloc entier descend sous la barre FAQ */
  .kplug-mobile-actions-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 10px !important;

    width: 100% !important;

    margin-top: 18px !important;
    padding: 0 !important;

    list-style: none !important;
  }

  /* COMPTE + PANIER : même taille / même alignement */
  .kplug-mobile-actions-row > a,
  .kplug-mobile-actions-row > button {
    flex: 1 1 0 !important;
    width: 0 !important;
    min-width: 0 !important;

    height: 54px !important;
    min-height: 54px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 8px !important;

    margin: 0 !important;
    padding: 0 10px !important;

    box-sizing: border-box !important;
    border-radius: 8px !important;

    color: #ffffff !important;
    text-decoration: none !important;

    font-size: 11px !important;
    font-weight: 900 !important;
    line-height: 1 !important;

    transition:
      transform 0.12s ease,
      filter 0.12s ease,
      box-shadow 0.12s ease !important;
  }

  /* COMPTE : rectangle sombre + contour bleu */
  .kplug-mobile-actions-row > a {
    background: #0b2745 !important;
    border: 1px solid #249cff !important;
  }

  /* PANIER : rectangle bleu */
  .kplug-mobile-actions-row > button {
    background: #249cff !important;
    border: 1px solid #4db0ff !important;
  }

  /* Hover souris */
  .kplug-mobile-actions-row > a:hover,
  .kplug-mobile-actions-row > button:hover {
    filter: brightness(1.12) !important;
    box-shadow: 0 0 10px rgba(36, 156, 255, 0.25) !important;
  }

  /* Clic / toucher */
  .kplug-mobile-actions-row > a:active,
  .kplug-mobile-actions-row > button:active {
    transform: scale(0.96) !important;
    filter: brightness(1.25) !important;
  }

  /* Icônes */
  .kplug-mobile-actions-row svg {
    width: 17px !important;
    height: 17px !important;
    flex-shrink: 0 !important;
  }
}

@media screen and (max-width: 749px) {

  .kplug-mobile-actions-row > a,
  .kplug-mobile-actions-row > button {
    flex: 1 1 0 !important;
    width: 0 !important;
    min-width: 0 !important;
  }

  .kplug-mobile-actions-row > a,
  .kplug-mobile-actions-row > button {
    transition:
      transform 0.12s ease,
      filter 0.12s ease,
      box-shadow 0.12s ease !important;
  }

  .kplug-mobile-actions-row > a:hover,
  .kplug-mobile-actions-row > button:hover {
    filter: brightness(1.12) !important;
    box-shadow: 0 0 10px rgba(36, 156, 255, 0.22) !important;
  }

  .kplug-mobile-actions-row > a:active,
  .kplug-mobile-actions-row > button:active {
    transform: scale(0.96) !important;
    filter: brightness(1.2) !important;
  }
}

@media screen and (min-width: 750px) {
  & {
    padding-bottom: 60px !important;
  }
}

/* =========================================================
   K PLUG — HOME BACKGROUND ATMOSPHERE
   EFFET CLEARCUT : LIGHT / DARK / MOVING CLOUDS
   UNIQUEMENT PAGE D'ACCUEIL
========================================================= */


/* =========================================================
   CONTENEUR HOME
========================================================= */

.content-for-layout:has(.kplug-hero) {
  position: relative;
  isolation: isolate;

  overflow: hidden;

  background: transparent !important;
}


/* =========================================================
   ON RETIRE LES APLATS SHOPIFY DE LA HOME
   SANS TOUCHER AUX CARTES / HERO / BOUTONS
========================================================= */

.content-for-layout:has(.kplug-hero)
> .shopify-section {
  position: relative;
  z-index: 2;

  background: transparent !important;
  background-color: transparent !important;
}


.content-for-layout:has(.kplug-hero)
> .shopify-section
> .section-background {
  background: transparent !important;
  background-color: transparent !important;
}


/* =========================================================
   COUCHE 1
   GRANDES LUMIÈRES CLAIRES
========================================================= */


/* =========================================================
   COUCHE 2
   POCHES SOMBRES + AUTRES HALOS
========================================================= */


/* =========================================================
   ANIMATION LUMIÈRES
========================================================= */


/* =========================================================
   ANIMATION ZONES SOMBRES
========================================================= */


/* =========================================================
   DONNE UN PEU PLUS DE TRANSPARENCE AUTOUR DU HERO
   LE HERO LUI-MÊME GARDE SON DESIGN
========================================================= */

.content-for-layout:has(.kplug-hero)
.kplug-hero {
  position: relative;
  z-index: 3;
}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 749px) {


}


/* =========================================================
   ACCESSIBILITÉ
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .content-for-layout:has(.kplug-hero)::before,
}

/* =========================================
   HOME — LAISSE PASSER LE FOND GLOBAL ANIMÉ
   ========================================= */

.content-for-layout:has(.kplug-hero),
.content-for-layout:has(.kplug-hero) > .shopify-section,
.content-for-layout:has(.kplug-hero) .section,
.content-for-layout:has(.kplug-hero) .section-background,
.content-for-layout:has(.kplug-hero) .color-background-1,
.content-for-layout:has(.kplug-hero) .color-background-2,
.content-for-layout:has(.kplug-hero) .gradient {
  background: transparent !important;
  background-color: transparent !important;
}

/* =========================================================
   K PLUG — HOME PERFORMANCE CLEANUP 2026-08-25

   RETIRÉ PHYSIQUEMENT DU CSS :
   - body::before / body::after animés
   - nuages lumineux/sombres animés de la HOME
   - reflet automatique des cartes .kplug-stock-card

   CONSERVÉ :
   - gradient bleu statique du body
   - effet souris du .kplug-hero
   - animation .kplug-jewelry-wave
   - animation .kplug-social-card::before
   ========================================================= */


   