/* ========================================
   HELLSTAR — CSS Principal du Theme
   Extrait de accueil.html
   ======================================== */

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #000;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

button:focus { outline: none; }

input {
  border: none;
  outline: none;
  font-family: inherit;
}

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --site-width: 1440px;
  --gutter: 20px;
  --gutter-mobile: 20px;
  --grid-gutter: 20px;
  --color-bg: #ffffff;
  --color-text: #000000;
  --color-heading: #0c0c0f;
  --color-accent: #d02e2e;
  --color-border: #d3d3d3;
  --color-sale: #e1ff00;
  --color-saving: #f23000;
  --radius: 30px;
  --radius-small: 22px;
  --header-height: 60px;
  --font-heading: 'Instrument Sans', sans-serif;
  --font-sub: 'Quantico', sans-serif;
  --font-body: Helvetica, Arial, sans-serif;
}

/* ========================================
   LOADER SCREEN
   ======================================== */
.loader-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.loader-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-screen img {
  width: 70px;
  animation: loader-pulse 1.8s ease-in-out infinite;
}

@keyframes loader-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* ========================================
   ANNOUNCEMENT BAR
   ======================================== */
.announcement-bar {
  background: #000;
  overflow: hidden;
  position: relative;
  height: 38px;
  display: flex;
  align-items: center;
}

.announcement-bar__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
}

.announcement-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}

.announcement-bar__item span.fire {
  font-style: normal;
  font-size: 13px;
}

.announcement-bar__item span.divider {
  color: rgba(255,255,255,0.3);
  font-style: normal;
  margin: 0 4px;
}

.announcement-bar__item span.highlight {
  color: #e1ff00;
  font-style: italic;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Glow pulse subtil */
.announcement-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(225,255,0,0.04) 0%, transparent 20%, transparent 80%, rgba(225,255,0,0.04) 100%);
  pointer-events: none;
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: relative;
  background: #fff;
  padding: 0 40px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

/* Nav centre */
.site-header__nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 28px;
}

.site-header__nav a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #000;
  transition: opacity 0.3s ease;
  position: relative;
}

.site-header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(.19, 1, .22, 1);
}

.site-header__nav a:hover::after {
  transform: scaleX(1);
}

/* Logo gauche */
.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__logo img {
  height: 55px;
  width: auto;
}

/* Icones droite */
.site-header__icons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-header__icons a,
.site-header__icons button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header__icon {
  width: 24px;
  height: 24px;
  color: #000;
  display: block;
  vertical-align: middle;
}

/* Mobile hamburger */
.site-header__hamburger {
  display: none;
  width: 22px;
  height: 22px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.site-header__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #000;
  transition: background 0.3s ease;
}

/* ========================================
   COLLECTION GRID
   ======================================== */
.collection {
  padding-top: 25px;
  padding-bottom: 40px;
}

.collection__grid {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 8px;
  row-gap: 0;
}

/* ========================================
   PRODUCT CARD
   ======================================== */
.product-card {
  position: relative;
}

.product-card__link {
  display: block;
}

.product-card__image-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
  background: #fff;
}

.product-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.19, .61, .15, .82), opacity 0.5s ease;
}

.product-card__image--hover {
  opacity: 0;
}

@media (hover: hover) {
  .product-card:hover .product-card__image--primary {
    transform: scale(1.05);
  }
  .product-card:hover .product-card__image--hover {
    opacity: 1;
  }
}

/* Info produit */
.product-card__info {
  padding: 4px 0 6px;
}

.product-card__title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 0;
}

.product-card__price {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--color-text);
}

.product-card__price--from {
  font-weight: 400;
}

.product-card__price--compare {
  text-decoration: line-through;
  color: #999;
  margin-right: 6px;
}

.product-card__price--sale {
  color: var(--color-saving);
}

/* Prix promo */
.product-card__price--old {
  text-decoration: line-through;
  color: #999;
  margin-right: 6px;
}

.product-card__price--new {
  color: #d02e2e;
  font-weight: 600;
}

/* Badge sold out */
.product-card__image-wrapper:has(.badge--sold-out) .product-card__image {
  opacity: 0.4;
}

.badge--sold-out {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  font-family: var(--font-sub);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #000;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: #000;
  color: #fff;
  padding: 40px 0 30px;
}

.site-footer__inner {
  padding: 0 var(--gutter);
}

/* Logo centre en haut */
.site-footer__logo {
  text-align: center;
  padding: 40px 0 30px;
}

.site-footer__logo img {
  height: 70px;
  width: auto;
  display: inline-block;
  filter: brightness(0) invert(1);
}

/* Tout le reste aligne a gauche */
.site-footer__bottom-section {
  padding: 0 20px;
}

.site-footer__social {
  margin-bottom: 25px;
}

.site-footer__social a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.site-footer__social a:hover {
  color: #fff;
}

.site-footer__social svg {
  width: 28px;
  height: 28px;
}

.site-footer__country {
  margin-bottom: 25px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.site-footer__copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.site-footer__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.site-footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: none;
  transition: color 0.3s ease;
}

.site-footer__links a:hover {
  color: #fff;
}

/* ========================================
   MOBILE MENU DRAWER
   ======================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 10000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.46, .01, .32, 1);
  padding: 30px;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-drawer__overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer__logo {
  margin-bottom: 30px;
}

.mobile-drawer__logo img {
  height: 55px;
  width: auto;
}

.mobile-drawer__close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 32px;
  height: 32px;
}

}

.mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-drawer__nav a {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  color: #000;
  padding: 16px 0;
  display: block;
}

.mobile-drawer__footer {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-drawer__footer a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #000;
  text-transform: none;
}

/* ========================================
   CART DRAWER
   ======================================== */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: #fff;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.46, .01, .32, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cart-drawer__overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 2px solid #000;
}

.cart-drawer__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
}

.cart-drawer__count {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
}

.cart-drawer__close {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

.cart-drawer__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 14px;
  color: #999;
}

/* Cart item */
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
  align-items: start;
}

.cart-item__image {
  width: 130px;
  height: 130px;
  object-fit: contain;
  background: #f9f9f9;
}

.cart-item__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item__name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

.cart-item__variant {
  font-size: 13px;
  color: #555;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  margin-top: 8px;
}

.cart-item__qty-btn {
  width: 34px;
  height: 34px;
  border: 1px solid #e5e5e5;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #333;
  cursor: pointer;
}

.cart-item__qty-val {
  width: 44px;
  height: 34px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.cart-item__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
  min-height: 100px;
}

.cart-item__price {
  font-size: 14px;
  font-weight: 400;
}

.cart-item__remove {
  font-size: 13px;
  color: #555;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}

/* Cart footer */
.cart-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid #e5e5e5;
}

.cart-drawer__checkout {
  display: block;
  width: 100%;
  padding: 16px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-align: center;
  margin-bottom: 10px;
}

.cart-drawer__shipping {
  text-align: center;
  font-size: 12px;
  color: #777;
}

/* ========================================
   RESPONSIVE — Desktop (min-width: 1024px)
   ======================================== */
@media (min-width: 1024px) {
  .site-header {
    padding: 0 40px;
  }

  .site-header__inner {
    height: 100px;
  }

  .site-header__logo img {
    height: 85px;
  }

  .collection {
    padding-top: 35px;
  }

  .collection__grid {
    padding: 0 40px;
    column-gap: 15px;
    row-gap: 50px;
  }

  .product-card__image-wrapper {
    padding-top: 105%;
  }

  /* Cacher titres/prix desktop */
  .product-card__info {
    display: none;
  }

  .product-card__info {
    padding: 5px 0 6px;
  }

  .product-card__title {
    font-size: 11px;
  }

  .product-card__price {
    font-size: 12px;
  }

  .site-footer__inner {
    padding: 0 40px;
  }
}

/* ========================================
   RESPONSIVE — Tablette (max-width: 1023px)
   ======================================== */
@media (max-width: 1023px) {
  .site-header {
    padding: 0 30px;
  }

  .collection__grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 30px;
    column-gap: 12px;
    row-gap: 0;
  }

  .site-footer__inner {
    padding: 0 30px;
  }
}

/* ========================================
   RESPONSIVE — Mobile (max-width: 767px)
   ======================================== */
@media (max-width: 767px) {
  .site-header {
    padding: 0 20px;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__inner {
    position: relative;
    justify-content: center;
    height: auto;
    padding: 18px 0 12px;
  }

  .site-header__hamburger {
    display: flex;
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    gap: 7px;
  }

  .site-header__hamburger span {
    height: 2.5px;
  }

  .site-header__logo img {
    height: 130px;
  }

  .site-header__icons {
    position: absolute;
    right: 0;
  }

  .site-header__icons a[aria-label="Account"] {
    display: none;
  }

  .site-header__icon {
    width: 26px;
    height: 26px;
  }

  .collection {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .collection__grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
    column-gap: 14px;
    row-gap: 30px;
  }

  .product-card__info {
    display: none;
  }

  .site-footer__inner {
    padding: 0 var(--gutter-mobile);
  }

  .site-footer__links {
    gap: 14px;
  }

  /* Announcement bar mobile */
  .announcement-bar {
    height: 32px;
  }

  .announcement-bar__item {
    font-size: 10px;
    padding: 0 28px;
    letter-spacing: 0.06em;
  }

  /* Badge sold out mobile */
  .badge--sold-out {
    font-size: 11px;
    top: 6px;
    left: 6px;
  }
}

/* ========================================
   PAGE PRODUIT
   ======================================== */
.product-page {
  padding: 30px 60px 60px;
  display: grid;
  grid-template-columns: calc(60% - 30px) calc(40% - 30px);
  gap: 60px;
}

.product-gallery { position: relative; }
.product-gallery__main { position: relative; width: 100%; padding-top: 100%; background: #fff; overflow: hidden; }
.product-gallery__main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; transition: opacity 0.35s ease; }
.product-gallery__main img.active { opacity: 1; }
.product-gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; }
.product-gallery__thumb { width: 89px; height: 89px; border: 2px solid transparent; cursor: pointer; padding: 0; background: #fff; overflow: hidden; transition: border-color 0.2s ease; }
.product-gallery__thumb.active { border-color: #000; }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: contain; }

.product-info { position: sticky; top: 30px; align-self: start; }
.product-info__title { font-family: var(--font-heading); font-size: 28px; font-weight: 700; font-style: italic; text-transform: uppercase; margin: 15px 0; line-height: 1.3; }
.product-info__price { font-family: var(--font-body); font-size: 16px; font-weight: 400; margin-bottom: 24px; }

.product-info__label { font-family: var(--font-sub); font-size: 12px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; }
.product-info__label a { font-family: var(--font-body); font-size: 12px; font-weight: 400; text-decoration: underline; text-transform: none; }

.product-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.product-pill { border: 1px solid #000; border-radius: 30px; padding: 10px 20px; font-family: var(--font-body); font-size: 14px; font-weight: 400; background: #fff; color: #000; cursor: pointer; transition: background 0.2s ease, color 0.2s ease; line-height: 1; }
.product-pill.active { background: #000; color: #fff; }
.product-pill:hover:not(.active) { background: #f5f5f5; }

.product-quantity { margin-bottom: 24px; }
.product-quantity__select { appearance: none; -webkit-appearance: none; border: 1px solid #000; border-radius: 30px; padding: 12px 50px 12px 20px; min-width: 140px; font-family: var(--font-body); font-size: 14px; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23000' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 16px center; cursor: pointer; }

.product-atc { width: 100%; background: #000; color: #fff; font-family: var(--font-heading); font-size: 12px; font-weight: 700; font-style: italic; text-transform: uppercase; letter-spacing: 0.6px; border-radius: 30px; padding: 12px 18px; cursor: pointer; border: none; transition: opacity 0.2s ease; margin-bottom: 30px; }
.product-atc:hover { opacity: 0.85; }

/* Promo badge */
.product-info__promo-badge { display: inline-block; background: #d02e2e; color: #fff; font-family: var(--font-heading); font-size: 11px; font-weight: 700; font-style: italic; text-transform: uppercase; letter-spacing: 0.05em; padding: 5px 12px; border-radius: 30px; margin-bottom: 10px; }
.product-info__price--old { text-decoration: line-through; color: #999; font-size: 14px; margin-right: 8px; }
.product-info__price--new { color: #d02e2e; font-size: 20px; font-weight: 700; }

/* Accordion */
.product-accordion { margin-top: 20px; }
.product-accordion__header { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; cursor: pointer; background: none; border: none; border-bottom: 1px solid #e5e5e5; width: 100%; text-align: left; }
.product-accordion__title { font-family: var(--font-heading); font-size: 14px; font-weight: 700; font-style: italic; text-transform: uppercase; }
.product-accordion__chevron { width: 14px; height: 14px; transition: transform 0.3s ease; flex-shrink: 0; }
.product-accordion.open .product-accordion__chevron { transform: rotate(180deg); }
.product-accordion__body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.product-accordion.open .product-accordion__body { max-height: 500px; }
.product-accordion__content { padding-bottom: 20px; font-family: var(--font-body); font-size: 13px; line-height: 1.7; color: #333; }
.product-accordion__content p { margin-bottom: 14px; }

/* Size Guide Drawer */
.sizeguide-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9999; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.sizeguide-overlay.open { opacity: 1; pointer-events: auto; }
.sizeguide-drawer { position: fixed; top: 0; right: 0; width: 100%; max-width: 500px; height: 100%; background: #fff; z-index: 10001; transform: translateX(100%); transition: transform 0.4s cubic-bezier(.46,.01,.32,1); overflow-y: auto; }
.sizeguide-drawer.open { transform: translateX(0); }
.sizeguide-drawer__header { display: flex; align-items: center; justify-content: flex-end; padding: 20px 24px; }
.sizeguide-drawer__close { width: 28px; height: 28px; cursor: pointer; background: none; border: none; display: flex; align-items: center; justify-content: center; }
.sizeguide-drawer__body { padding: 0 24px 40px; }
.sizeguide-drawer__body img { width: 100%; height: auto; margin-bottom: 16px; }

/* Collection header (Capsule) */
.collection-header { padding: 40px 20px 50px; text-align: center; }
.collection-header__title { font-family: var(--font-heading); font-size: 42px; font-weight: 700; font-style: italic; text-transform: uppercase; color: var(--color-heading); margin-bottom: 20px; }
.collection-header__desc { font-family: var(--font-body); font-size: 15px; font-weight: 400; color: #333; line-height: 1.6; max-width: 500px; margin: 0 auto 20px; }
.collection-header__cta { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: #00bfff; text-decoration: underline; text-transform: uppercase; letter-spacing: 0.03em; }

/* ========================================
   RESPONSIVE — PRODUIT
   ======================================== */
@media (max-width: 1023px) {
  .product-page { padding: 20px 30px 40px; gap: 40px; }
}

@media (max-width: 767px) {
  .product-page { display: flex; flex-direction: column; padding: 20px 20px 40px; gap: 24px; }
  .product-gallery__main { padding-top: 100%; }
  .product-gallery__thumbs { gap: 10px; }
  .product-gallery__thumb { width: 100px; height: 100px; }
  .product-info { position: static; }
  .collection-header { padding: 30px 20px 40px; }
  .collection-header__title { font-size: 32px; }
}

/* Fix croix menu drawer */
.mobile-drawer__close {
  width: 32px;
  height: 32px;
}
.mobile-drawer__close svg {
  width: 100%;
  height: 100%;
}

/* Fix croix drawer — VISIBLE */
.mobile-drawer__close {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  width: 32px !important;
  height: 32px !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  z-index: 10 !important;
  padding: 0 !important;
}
.mobile-drawer__close svg {
  width: 100% !important;
  height: 100% !important;
  stroke: #000 !important;
  stroke-width: 14 !important;
}
