/** Shopify CDN: Minification failed

Line 28:0 All "@import" rules must come first

**/
/* ============================================
   MOONVIEW - Custom styles (pour Dawn)
   ============================================ */

:root {
  --mv-primary: #242628;
  --mv-footer: #312f31;
  --mv-secondary: #c0dbf6;
  --mv-accent-text: #cdd1cc;
  --mv-white: #ffffff;
  --mv-black: #000000;
  --mv-success: #4caf50;
  --mv-error: #e53935;
  --mv-gutter: 28px;
  --mv-max-width: 1400px;
  --mv-border-radius: 0px;
  --mv-header-height: 70px;
  --mv-font-heading: 'Oswald', sans-serif;
  --mv-font-body: 'Inter', sans-serif;
  --mv-base-size: 16px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Oswald:wght@400;500;600;700&display=swap');

/* === CONTAINER === */
.mv-container {
  width: 100%;
  max-width: var(--mv-max-width);
  margin: 0 auto;
  padding: 0 var(--mv-gutter);
}

.mv-section-heading {
  font-family: var(--mv-font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 36px;
  color: var(--mv-white);
}

/* === BUTTONS === */
.mv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  padding: 14px 42px;

  font-family: var(--mv-font-heading);
  font-weight: 500;
  font-size: 1rem;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  border: 1px solid transparent;
  border-radius: var(--mv-border-radius);

  cursor: pointer;
  text-decoration: none;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.mv-btn:hover {
  transform: translateY(-1px);
}

.mv-btn--primary {
  background: var(--mv-secondary);
  color: var(--mv-black);
  border-color: var(--mv-secondary);
}
.mv-btn--primary:hover {
  background: transparent;
  color: var(--mv-secondary);
  border-color: var(--mv-secondary);
}

.mv-btn--outline {
  background: transparent;
  color: var(--mv-white);
  border-color: var(--mv-white);
}
.mv-btn--outline:hover {
  background: var(--mv-white);
  color: var(--mv-primary);
}

/* ================================
   HERO
   ================================ */
.mv-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mv-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.mv-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-hero__content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  height: 100%;

  padding:
    clamp(28px, 5vh, 56px)
    var(--mv-gutter)
    clamp(36px, 6vh, 64px);
}

.mv-hero__logo {
  margin-top: 16px;
}
.mv-hero__logo-img {
  width: min(460px, 80vw);
  height: auto;
}
.mv-hero__logo-text {
  font-family: var(--mv-font-heading);
  font-weight: 700;
  font-size: 3.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mv-white);
}

.mv-hero__cta {
  margin-bottom: 8px;
}

/* ================================
   PRODUCT GRID + CARDS
   ================================ */
.mv-product-grid {
  display: grid;
  gap: 24px;
}
.mv-product-grid--2 { grid-template-columns: repeat(2, 1fr); }
.mv-product-grid--3 { grid-template-columns: repeat(3, 1fr); }
.mv-product-grid--4 { grid-template-columns: repeat(4, 1fr); }
.mv-product-grid--5 { grid-template-columns: repeat(5, 1fr); }

.mv-product-card { position: relative; }
.mv-product-card__link { display: block; text-decoration: none; color: inherit; }

.mv-product-card__media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #1a1a1c;
}

.mv-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.mv-product-card__img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.mv-product-card:hover .mv-product-card__img--hover { opacity: 1; }
.mv-product-card:hover .mv-product-card__img--primary { opacity: 0; }

.mv-product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a2a2c;
}
.mv-placeholder-svg { fill: #444; width: 60%; }

.mv-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mv-product-card__badge--sold-out { background: var(--mv-primary); color: var(--mv-white); }
.mv-product-card__badge--sale { background: var(--mv-secondary); color: var(--mv-primary); }

.mv-product-card__info { padding: 16px 0; }

.mv-product-card__title {
  font-family: var(--mv-font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  color: var(--mv-white);
}

.mv-product-card__price {
  font-size: 1.05rem;
  color: var(--mv-accent-text);
}
.mv-product-card__price--compare {
  text-decoration: line-through;
  opacity: 0.6;
  margin-right: 8px;
}

/* === FEATURED COLLECTION === */
.mv-featured-collection {
  padding: 60px 0;
  background: var(--mv-primary);
}
.mv-featured-collection__header { margin-bottom: 40px; }
.mv-featured-collection__footer {
  text-align: center;
  margin-top: 48px;
}

/* ================================
   PROMO BANNER
   ================================ */
.mv-promo-banner__media-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mv-promo-banner__media-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;

  background: rgba(0, 0, 0, 0.10);

  pointer-events: none;
}

.mv-promo-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mv-promo-banner__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-promo-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px var(--mv-gutter);
}

.mv-promo-banner__heading {
  font-family: var(--mv-font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--mv-white);
}

.mv-promo-banner__text {
  max-width: 600px;
  margin: 0 auto 28px;
  color: var(--mv-accent-text);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ================================
   FOOTER BLOCK - SERVICES BANNER
   ================================ */
.mv-footer-block {
  background: var(--mv-footer);
    color: var(--mv-white);
}

.mv-services-slider {
  position: relative;

  width: 100%;

  border-bottom: 1px solid rgba(255, 255, 255, 0.28);

  overflow: hidden;
}

.mv-services-slider__viewport {
  position: relative;

  min-height: 160px;
}

.mv-services-slider__slide {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px var(--mv-gutter) 46px;

  opacity: 0;
  visibility: hidden;

  transform: translateX(24px);

  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    visibility 0s linear 0.45s;

  pointer-events: none;
}

.mv-services-slider__slide.is-active {
  position: relative;

  opacity: 1;
  visibility: visible;

  transform: translateX(0);

  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    visibility 0s;

  pointer-events: auto;
}

.mv-services-slider__content {
  display: flex;
  flex-direction: column;
  align-items: center;

  max-width: 720px;

  text-align: center;
}

.mv-services-slider__title {
  margin: 0 0 12px;

  font-family: var(--mv-font-heading);

  font-size: 1.05rem;
  font-weight: 500;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: var(--mv-white);
}

.mv-services-slider__desc {
  margin: 0;

  font-family: var(--mv-font-body);

  font-size: 0.9rem;
  line-height: 1.5;

  letter-spacing: 0.03em;
  text-transform: uppercase;

  color: var(--mv-accent-text);
}


/* DOTS */

.mv-services-slider__dots {
  position: absolute;

  left: 50%;
  bottom: 22px;

  transform: translateX(-50%);

  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;
}

.mv-services-slider__dot {
  width: 7px;
  height: 7px;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.35);

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.mv-services-slider__dot.is-active {
  background: var(--mv-white);

  transform: scale(1.15);
}

/* ================================
   FOOTER BLOCK - INFORMATIONS ACCORDION
   ================================ */
.mv-info-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.mv-info-section__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;

  padding: 26px 0;

  background: transparent;
  border: 0;

  color: var(--mv-white);

  cursor: pointer;
}

.mv-info-section__label {
  font-family: var(--mv-font-heading);

  font-size: 1rem;
  font-weight: 500;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mv-info-section__chevron {
  flex-shrink: 0;

  transition: transform 0.3s ease;
}

.mv-info-section__toggle[aria-expanded="true"] .mv-info-section__chevron {
  transform: rotate(180deg);
}

.mv-info-section__content {
  padding: 0 0 28px;
}

.mv-info-section__links {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 12px 40px;

  list-style: none;

  margin: 0;
  padding: 0;
}

.mv-info-section__link {
  display: inline-block;

  font-family: var(--mv-font-body);
  font-size: 0.95rem;

  line-height: 1.5;

  color: var(--mv-accent-text);

  text-decoration: none;

  transition: color 0.2s ease;
}
.mv-info-section__link:hover {
  color: var(--mv-white);
}

/* ================================
   FOOTER BLOCK - NEWSLETTER
   ================================ */
.mv-newsletter-block {
  padding: 44px 0 48px;
}

.mv-newsletter-block__heading {
  margin: 0 0 12px;

  font-family: var(--mv-font-heading);

  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;

  letter-spacing: 0.04em;
  text-transform: uppercase;

  color: var(--mv-white);
}

.mv-newsletter-block__text {
  max-width: 720px;

  margin: 0 0 26px;

  font-family: var(--mv-font-body);

  font-size: 0.95rem;
  line-height: 1.55;

  letter-spacing: 0.02em;
  text-transform: uppercase;

  color: var(--mv-accent-text);
}

.mv-newsletter-block__form {
   display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto;

  gap: 18px;

  max-width: 760px;
}

.mv-newsletter-block__input {
 width: 100%;
  min-width: 0;

  height: 52px;

  padding: 0 18px;

  background: var(--mv-white);

  border: 1px solid var(--mv-white);
  border-radius: 0;

  color: var(--mv-black);

  font-family: var(--mv-font-body);
  font-size: 0.95rem;

  outline: none;
}
.mv-newsletter-block__input::placeholder {
  color: #545454;
  opacity: 1;
}

.mv-newsletter-block__input:focus {
  border-color: var(--mv-secondary);
}

.mv-newsletter-block__submit {
  min-width: 180px;
  height: 52px;

  padding-top: 0;
  padding-bottom: 0;
}

.mv-newsletter-block__success,
.mv-newsletter-block__error {
  margin: 16px 0 0;

  font-size: 0.95rem;
}

.mv-newsletter-block__success {
  color: var(--mv-success);
}

.mv-newsletter-block__error {
  color: var(--mv-error);
}

/* ================================
   HEADER
   ================================ */
.mv-header-section {
  position: sticky;
  top: 0;
  z-index: 500;
}

.mv-header {
  position: relative;
  z-index: 1;
  background: var(--mv-primary);
  height: var(--mv-header-height);
  border-bottom: 1px solid var(--mv-accent-text);

   transform: translateY(0);
  transition: transform 0.3s ease;
  will-change: transform;
}

.mv-header-section.is-hidden .mv-header {
  transform: translateY(-100%);
}

.mv-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: 16px;
}



.mv-header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.mv-header__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--mv-white);
  transition: all 0.3s ease;
}

.mv-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.mv-header__logo-img {
  height: 36px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.mv-header__logo-text {
  font-family: var(--mv-font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mv-white);
}

.mv-header__nav-desktop {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-self: start;
}

.mv-header__nav-link {
  font-family: var(--mv-font-heading);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mv-white);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}
.mv-header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.mv-header__nav-link:hover::after,
.mv-header__nav-link.is-active::after { width: 100%; }

.mv-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
}

.mv-header__action-btn {
  display: flex;
  align-items: center;
  color: var(--mv-white);
  text-decoration: none;
  position: relative;
}

.mv-header__cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--mv-secondary);
  color: var(--mv-primary);
  font-size: 0.65rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================================
   MOBILE NAV DRAWER
   ================================ */

html {
  scrollbar-gutter: stable;
}

html.mv-menu-open {
  overflow-y: scroll;
}

html.mv-menu-open body {
  overflow: hidden;
}

.mv-mobile-nav {
   position: fixed;
  inset: 0;
  z-index: 99999;

  visibility: hidden;
  pointer-events: none;
}
.mv-mobile-nav.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mv-mobile-nav__overlay {
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 1;

  background: rgba(0, 0, 0, 0.65);
  opacity: 0;

  transition: opacity 0.3s ease;
}
.mv-mobile-nav.is-open .mv-mobile-nav__overlay {
  opacity: 1;
}

.mv-mobile-nav__drawer {
   position: absolute;
  top: 0;
  bottom: 0;
  left: 0;

  z-index: 2;

  width: 90%;
  max-width: 480px;

  background: var(--mv-primary);

  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  display: flex;
  flex-direction: column;
  padding: 0 var(--mv-gutter);
}
.mv-mobile-nav.is-open .mv-mobile-nav__drawer {
  transform: translateX(0);
}

.mv-mobile-nav__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--mv-header-height);
  gap: 16px;
}

.mv-mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--mv-white);
  cursor: pointer;
  padding: 0;
}

.mv-mobile-nav__logo {
  display: flex;
  justify-content: center;
  text-decoration: none;
}

.mv-mobile-nav__header-actions {
  display: flex;
  gap: 12px;
  justify-self: end;
}

.mv-mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 48px;
  flex: 1;
}

.mv-mobile-nav__link {
  font-family: var(--mv-font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mv-white);
  text-decoration: none;
  transition: color 0.2s;
}
.mv-mobile-nav__link:hover {
  color: var(--mv-secondary);
}

/* ================================
   FOOTER
   ================================ */

.mv-footer {
  background: var(--mv-footer);
  border-top: 1px solid var(--mv-accent-text);
}

.mv-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 32px 0 28px;

  text-align: center;
}


/* ================================
   SOCIALS
   ================================ */

.mv-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 18px;

  margin-bottom: 22px;
}

.mv-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  color: var(--mv-accent-text);

  text-decoration: none;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.mv-footer__social-link svg {
  width: 22px;
  height: 22px;
  display: block;
}

.mv-footer__social-link:hover {
  color: var(--mv-white);
  transform: translateY(-2px);
}


/* ================================
   CREDITS
   ================================ */

.mv-footer__credits {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 3px;
}

.mv-footer__designed,
.mv-footer__copyright {
  margin: 0;

  font-family: var(--mv-font-body);
  line-height: 1.45;
}

.mv-footer__designed {
  font-size: 0.95rem;
  color: var(--mv-accent-text);
}

.mv-footer__designed a {
  color: var(--mv-white);

  text-decoration: none;

  font-weight: 500;
  letter-spacing: 0.05em;

  transition: color 0.2s ease;
}

.mv-footer__designed a:hover {
  color: var(--mv-secondary);
}


.mv-footer__copyright {
  font-size: 0.9rem;
  color: var(--mv-accent-text);
}

.mv-footer__copyright a {
  color: inherit;
  text-decoration: none;

  transition: color 0.2s ease;
}

.mv-footer__copyright a:hover {
  color: var(--mv-white);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
  .mv-product-grid--4 { grid-template-columns: repeat(3, 1fr); }
  .mv-product-grid--5 { grid-template-columns: repeat(3, 1fr); }

  /* Header mobile */
  .mv-header__inner {
    grid-template-columns: auto 1fr auto;
  }
  .mv-header__hamburger { display: flex; }
  .mv-header__nav-desktop { display: none; }
  .mv-header__logo { justify-self: center; }
}

@media (max-width: 768px) {
  .mv-product-grid--3,
  .mv-product-grid--4,
  .mv-product-grid--5 { grid-template-columns: repeat(2, 1fr); }
  .mv-product-grid { gap: 14px; }

  .mv-hero__logo-img {
    width: min(300px, 72vw);
  }
  .mv-hero__logo-text { font-size: 2.5rem; }

  .mv-info-section__links {
    grid-template-columns: 1fr;

    gap: 10px;
  }


  .mv-newsletter-block {
    padding: 36px 0 40px;
  }

  .mv-newsletter-block__form {
    grid-template-columns: 1fr;
  }

  .mv-newsletter-block__submit {
    width: 100%;
  }

  .mv-services-slider__viewport {
    min-height: 150px;
  }

  .mv-services-slider__slide {
    padding:
      26px
      var(--mv-gutter)
      44px;
  }

  .mv-services-slider__title {
    font-size: 0.95rem;
  }

  .mv-services-slider__desc {
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  :root {
    --mv-gutter: 18px;
  }
  .mv-product-grid { gap: 10px; }
  .mv-product-card__title { font-size: 0.95rem; }
  .mv-product-card__price { font-size: 0.9rem; }
  .mv-btn { padding: 14px 28px; font-size: 0.95rem; }

   .mv-hero__logo-img {
    width: min(240px, 70vw);
  }
  .mv-hero__content { padding: 16px var(--mv-gutter) 20px; }

 .mv-info-section__toggle {
    padding: 22px 0;
  }

  .mv-newsletter-block__heading {
    font-size: 1.4rem;
  }

  .mv-newsletter-block__text {
    font-size: 0.88rem;
  }
  .mv-footer__inner {
    padding: 28px 0 24px;
  }

  .mv-footer__social {
    margin-bottom: 18px;
  }

  .mv-footer__designed {
    font-size: 0.9rem;
  }

  .mv-footer__copyright {
    font-size: 0.85rem;
  }

  .mv-services-slider__viewport {
    min-height: 145px;
  }

  .mv-services-slider__slide {
    padding:
      24px
      var(--mv-gutter)
      42px;
  }

  .mv-services-slider__title {
    font-size: 0.9rem;
  }

  .mv-services-slider__desc {
    font-size: 0.78rem;
  }

  .mv-services-slider__dots {
    bottom: 18px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .mv-services-slider__slide {
    transition: none;
    transform: none;
  }

  .mv-services-slider__dot {
    transition: none;
  }
}

/* ================================
   PRODUCT PAGE
   ================================ */

.template-product .gradient {
  background: var(--mv-primary);
}

.template-product .page-width {
  max-width: var(--mv-max-width);
  padding-left: var(--mv-gutter);
  padding-right: var(--mv-gutter);
}


/* ================================
   PRODUCT INFO
   ================================ */

.template-product .product__title {
  margin-bottom: 6px;
}

.template-product .product__title h1 {
  margin: 0;

  font-family: var(--mv-font-heading);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 500;

  letter-spacing: 0.06em;
  text-transform: uppercase;

  color: var(--mv-white);
}

.template-product .price {
  font-family: var(--mv-font-body);
  color: var(--mv-accent-text);
}

.template-product .price-item {
  font-size: 1.15rem;
}


/* ================================
   PRODUCT MEDIA
   ================================ */

.template-product .product__media {
  background: #1a1a1c;
}

.template-product .product__media img {
  object-fit: cover;
}

.template-product .thumbnail {
  border: 1px solid transparent;
  border-radius: 0;
}

.template-product .thumbnail[aria-current] {
  border-color: var(--mv-accent-text);
}


/* ================================
   VARIANTS
   ================================ */

.template-product .product-form__input {
  margin-bottom: 24px;
}

.template-product .product-form__input .form__label {
  margin-bottom: 12px;

  font-family: var(--mv-font-heading);

  font-size: 0.95rem;
  font-weight: 500;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: var(--mv-white);
}

.template-product
.product-form__input
input[type='radio'] + label {
  min-width: 48px;

  padding: 11px 14px;

  border: 1px solid var(--mv-accent-text);
  border-radius: 0;

  background: transparent;

  color: var(--mv-white);

  font-family: var(--mv-font-body);
  font-size: 0.9rem;

  text-align: center;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.template-product
.product-form__input
input[type='radio']:checked + label {
  background: var(--mv-secondary);

  border-color: var(--mv-secondary);

  color: var(--mv-black);
}

.template-product
.product-form__input
input[type='radio']:disabled + label {
  opacity: 0.35;
}


/* ================================
   BUY BUTTON
   ================================ */

.template-product .product-form__submit {
  min-height: 54px;

  border: 1px solid var(--mv-secondary);
  border-radius: 0;

  background: var(--mv-secondary);

  color: var(--mv-black);

  font-family: var(--mv-font-heading);

  font-size: 1rem;
  font-weight: 500;

  letter-spacing: 0.1em;
  text-transform: uppercase;

  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.template-product .product-form__submit:hover {
  background: transparent;

  color: var(--mv-secondary);
}

.template-product .shopify-payment-button {
  display: none;
}


/* ================================
   PRODUCT ACCORDIONS
   ================================ */

.mv-product-accordion {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.mv-product-accordion:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.mv-product-accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;

  padding: 20px 0;

  list-style: none;

  cursor: pointer;
}

.mv-product-accordion__summary::-webkit-details-marker {
  display: none;
}

.mv-product-accordion__title {
  font-family: var(--mv-font-heading);

  font-size: 0.95rem;
  font-weight: 500;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: var(--mv-white);
}

.mv-product-accordion__icon {
  flex-shrink: 0;

  color: var(--mv-white);

  transition: transform 0.25s ease;
}

.mv-product-accordion details[open]
.mv-product-accordion__icon {
  transform: rotate(180deg);
}

.mv-product-accordion__content {
  padding: 0 0 24px;

  font-family: var(--mv-font-body);

  font-size: 0.95rem;
  line-height: 1.65;

  color: var(--mv-accent-text);
}

.mv-product-accordion__content p:first-child {
  margin-top: 0;
}

.mv-product-accordion__content p:last-child {
  margin-bottom: 0;
}


/* ================================
   SIZE CHART LINK
   ================================ */

.mv-size-chart__button {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  margin-top: 18px;
  padding: 0;

  border: 0;

  background: transparent;

  color: var(--mv-white);

  cursor: pointer;

  font-family: var(--mv-font-heading);

  font-size: 0.9rem;
  font-weight: 500;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mv-size-chart__button svg {
  transition: transform 0.2s ease;
}

.mv-size-chart__button:hover svg {
  transform: translateX(3px);
}


/* ================================
   SIZE CHART MODAL
   ================================ */

.mv-size-chart-modal {
  position: fixed;
  inset: 0;

  z-index: 99999;

  display: none;

  background: rgba(0, 0, 0, 0.35);

  backdrop-filter: blur(6px);
}

.mv-size-chart-modal[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-size-chart-modal__content {
  position: relative;

  width: min(720px, calc(100% - 40px));
  max-height: calc(100vh - 80px);

  overflow-y: auto;

  padding: 42px;

  background: var(--mv-primary);

  border: 1px solid rgba(255, 255, 255, 0.25);
}

.mv-size-chart-modal__close {
  position: absolute;

  top: 16px;
  right: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  padding: 0;

  border: 0;

  background: transparent;

  color: var(--mv-white);

  cursor: pointer;
}

.mv-size-chart-modal__heading {
  margin: 0 0 28px;

  font-family: var(--mv-font-heading);

  font-size: 1.5rem;
  font-weight: 500;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: var(--mv-white);

  text-align: center;
}

.mv-size-chart-modal__body img {
  display: block;

  width: 100%;
  height: auto;
}


/* ================================
   RESPONSIVE PRODUCT
   ================================ */

@media (max-width: 749px) {

  .template-product .page-width {
    padding-left: var(--mv-gutter);
    padding-right: var(--mv-gutter);
  }

  .template-product .product__info-wrapper {
    padding-top: 26px;
  }

  .template-product .product__title h1 {
    font-size: 1.45rem;
  }

  .template-product
  .product-form__input
  input[type='radio'] + label {
    min-width: 44px;

    padding: 10px 12px;
  }

  .mv-size-chart-modal__content {
    width: calc(100% - 32px);

    padding: 38px 20px 24px;
  }

}

/* ================================
   PRODUCT - BUY BUTTONS
   ================================ */

/* Ajouter au panier */
.product-form__submit.button {
  --color-button: 192, 219, 246;
  --color-button-text: 0, 0, 0;

  background: var(--mv-secondary) !important;
  color: var(--mv-black) !important;
  border: 1px solid var(--mv-secondary) !important;
  box-shadow: none !important;

  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.product-form__submit.button::after {
  box-shadow: none !important;
}

/* Hover Ajouter au panier */
.product-form__submit.button:not([disabled]):hover {
  background: #abc9e7 !important;
  color: var(--mv-black) !important;
  border-color: #abc9e7 !important;

  transform: translateY(-1px);
}


/* Épuisé */
.product-form__submit.button[disabled],
.product-form__submit.button:disabled {
  background: rgba(192, 219, 246, 0.42) !important;
  color: var(--mv-black) !important;
  border-color: rgba(192, 219, 246, 0.42) !important;

  opacity: 1 !important;
  cursor: not-allowed;
  transform: none;
}


/* ================================
   ACHETER MAINTENANT
   ================================ */

.shopify-payment-button__button {
  background: transparent !important;
  color: var(--mv-white) !important;

  border: 1px solid var(--mv-accent-text) !important;
  border-radius: 0 !important;

  box-shadow: none !important;

  font-family: var(--mv-font-heading) !important;
  font-size: 1rem !important;
  font-weight: 500 !important;

  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;

  min-height: 54px !important;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease !important;
}

.shopify-payment-button__button:hover {
  background: var(--mv-white) !important;
  color: var(--mv-primary) !important;
  border-color: var(--mv-white) !important;
}

/* ================================
   EVENT PAGE
   ================================ */

.mv-event {
  min-height: calc(100vh - var(--mv-header-height));
  padding: 84px 0 100px;
}

.mv-event__inner {
  width: min(100%, 980px);
  margin: 0 auto;
}


/* ================================
   EVENT INTRO
   ================================ */

.mv-event__intro {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}

.mv-event__eyebrow {
  margin: 0 0 16px;

  font-family: var(--mv-font-body);
  font-size: 1rem;
  font-weight: 500;

  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: var(--mv-accent-text);
}

.mv-event__heading {
  margin: 0;

  font-family: var(--mv-font-heading);

  font-size: clamp(3.4rem, 7vw, 6.4rem);
  font-weight: 600;

  line-height: 0.95;

  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mv-event__text {
  max-width: 700px;
  margin: 28px auto 0;

  font-family: var(--mv-font-body);

  font-size: 1.15rem;
  line-height: 1.7;

  color: var(--mv-accent-text);
}

.mv-event__text p {
  margin: 0;
}


/* ================================
   EVENT STEPS
   ================================ */

.mv-event__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  margin-bottom: 56px;

  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.mv-event__step {
  min-width: 0;

  padding: 34px 32px 36px;
}

.mv-event__step + .mv-event__step {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.mv-event__step-number {
  display: block;

  margin-bottom: 30px;

  font-family: var(--mv-font-heading);

  font-size: 1rem;
  font-weight: 500;

  letter-spacing: 0.1em;

  color: var(--mv-secondary);
}

.mv-event__step-title {
  margin: 0 0 12px;

  font-family: var(--mv-font-heading);

  font-size: 1.4rem;
  font-weight: 500;

  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mv-event__step-text {
  margin: 0;

  font-family: var(--mv-font-body);

  font-size: 1rem;
  line-height: 1.65;

  color: var(--mv-accent-text);
}


/* ================================
   EVENT INSTAGRAM
   ================================ */

.mv-event__instagram {
  display: flex;
  flex-direction: column;
  align-items: center;

  margin-bottom: 72px;

  text-align: center;
}

.mv-event__instagram-button {
  gap: 12px;

  min-height: 58px;

  padding: 16px 46px;

  font-size: 1.05rem;
}

.mv-event__instagram-button svg {
  flex-shrink: 0;

  width: 20px;
  height: 20px;
}

.mv-event__instagram-note {
  max-width: 600px;

  margin: 16px 0 0;

  font-family: var(--mv-font-body);

  font-size: 0.95rem;
  line-height: 1.6;

  color: var(--mv-accent-text);
}


/* ================================
   EVENT FORM
   ================================ */

.mv-event__form-wrapper {
  padding: 56px;

  border: 1px solid rgba(255, 255, 255, 0.24);

  background: rgba(0, 0, 0, 0.08);
}

.mv-event__form-heading {
  margin: 0 0 12px;

  font-family: var(--mv-font-heading);

  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;

  letter-spacing: 0.06em;
  text-transform: uppercase;

  text-align: center;
}

.mv-event__form-text {
  max-width: 640px;

  margin: 0 auto 38px;

  font-family: var(--mv-font-body);

  font-size: 1.05rem;
  line-height: 1.65;

  text-align: center;

  color: var(--mv-accent-text);
}


/* Shopify Forms app */

.mv-event__app-block {
  width: 100%;
}

/* Texte général du bloc Shopify Forms */
.mv-event__form {
  font-size: 1rem;
}

.mv-event__form label,
.mv-event__form legend {
  font-family: var(--mv-font-body) !important;

  font-size: 1rem !important;
  line-height: 1.5 !important;
}

.mv-event__form input,
.mv-event__form select,
.mv-event__form textarea {
  border-radius: 0 !important;

  font-family: var(--mv-font-body) !important;
  font-size: 1rem !important;
}

.mv-event__form input,
.mv-event__form select {
  min-height: 54px !important;
}

.mv-event__form textarea {
  min-height: 130px !important;
}

.mv-event__form input::placeholder,
.mv-event__form textarea::placeholder {
  font-size: 0.98rem !important;
}

.mv-event__form button {
  min-height: 56px !important;

  border-radius: 0 !important;

  font-family: var(--mv-font-heading) !important;
  font-size: 1.05rem !important;

  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}


/* ================================
   EVENT DISCLAIMER
   ================================ */

.mv-event__disclaimer {
  max-width: 780px;

  margin: 28px auto 0;

  font-family: var(--mv-font-body);

  font-size: 0.9rem;
  line-height: 1.65;

  text-align: center;

  color: var(--mv-accent-text);
}

.mv-event__disclaimer p {
  margin: 0;
}


/* ================================
   RESPONSIVE EVENT
   ================================ */

@media (max-width: 768px) {

  .mv-event {
    padding: 60px 0 72px;
  }

  .mv-event__intro {
    margin-bottom: 48px;
  }

  .mv-event__eyebrow {
    font-size: 0.95rem;
  }

  .mv-event__heading {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .mv-event__text {
    font-size: 1.05rem;
  }

  .mv-event__steps {
    grid-template-columns: 1fr;
  }

  .mv-event__step {
    display: grid;

    grid-template-columns: 50px 1fr;

    gap: 16px;

    padding: 28px 0;
  }

  .mv-event__step + .mv-event__step {
    border-left: 0;

    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }

  .mv-event__step-number {
    margin: 2px 0 0;

    font-size: 0.95rem;
  }

  .mv-event__step-title {
    font-size: 1.3rem;
  }

  .mv-event__step-text {
    font-size: 1rem;
  }

  .mv-event__instagram {
    margin-bottom: 54px;
  }

  .mv-event__instagram-button {
    width: 100%;
  }

  .mv-event__instagram-note {
    font-size: 0.9rem;
  }

  .mv-event__form-wrapper {
    padding: 40px 28px;
  }

  .mv-event__form-heading {
    font-size: 2rem;
  }

  .mv-event__form-text {
    font-size: 1rem;
  }

  .mv-event__disclaimer {
    font-size: 0.86rem;
  }
}


@media (max-width: 480px) {

  .mv-event {
    padding: 46px 0 58px;
  }

  .mv-event__heading {
    font-size: 3.4rem;
  }

  .mv-event__text {
    font-size: 1rem;
  }

  .mv-event__step {
    grid-template-columns: 44px 1fr;
  }

  .mv-event__step-title {
    font-size: 1.2rem;
  }

  .mv-event__step-text {
    font-size: 0.95rem;
  }

  .mv-event__instagram-button {
    padding: 15px 22px;

    font-size: 0.95rem;
  }

  .mv-event__form-wrapper {
    padding: 34px 20px;
  }

  .mv-event__form-heading {
    font-size: 1.8rem;
  }

  .mv-event__form-text {
    font-size: 0.95rem;
  }

  .mv-event__form label,
  .mv-event__form legend,
  .mv-event__form input,
  .mv-event__form select,
  .mv-event__form textarea {
    font-size: 0.95rem !important;
  }

  .mv-event__form button {
    font-size: 0.95rem !important;
  }

  .mv-event__disclaimer {
    font-size: 0.82rem;
  }
}