/** Shopify CDN: Minification failed

Line 475:1 Expected "}" to go with "{"

**/
/* ============================================
   BeeLive Studio — main-product-custom.css
   ============================================ */

.mpc-wrapper {
  padding-top: calc(var(--header-height, 80px) + 20px) !important;
}

.mpc-wrapper {
  box-sizing: border-box;
}

.mpc-card {
  position: relative;
}

.mpc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto minmax(0, 0.9fr);
  align-items: stretch;
  position: relative;
}



.mpc-col {
  position: relative;
}

.mpc-col--media {
  z-index: 1;
}

.mpc-col--info {
  z-index: 1;
}

.mpc-vertical-separator {
  height: 100%;
  align-self: stretch;
}


.mpc-info-inner {
  position: relative;
  padding-left: 24px;
}

.mpc-main-image-wrapper {
  background: transparent;
}

.mpc-main-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


.mpc-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mpc-thumb {
  border: 1px solid transparent;
  padding: 4px;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.mpc-thumb img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.mpc-thumb--active {
  border-color: #111111;
  box-shadow: 0 0 0 1px #111111;
}

.mpc-title {
  font-weight: 600;
}

.mpc-price-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.mpc-price-compare {
  text-decoration: line-through;
}

.mpc-discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
}

.mpc-short-description {
  line-height: 1.5;
}

.mpc-variant-group + .mpc-variant-group {
  margin-top: 10px;
}

.mpc-variant-label {
  font-size: 13px;
  margin-bottom: 6px;
  color: #555555;
}

.mpc-variant-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mpc-variant-btn {
  border-radius: 999px;
  border: 1px solid #dddddd;
  background: #ffffff;
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.mpc-variant-btn--active {
  background-color: var(--variant-bg-active) !important;
  color: var(--variant-text-active) !important;
  border-color: var(--variant-border-active) !important;
}
.mpc-variant-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
}





/* Wrapper général */
.mpc-qty-wrapper {
  display: flex;
  align-items: center;
}

/* Conteneur du stepper */
.mpc-qty-stepper {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid #dddddd;
  background: #ffffff;
}

/* Boutons + / - */
.mpc-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33%;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  user-select: none;
}

/* Input visible (celle que l’utilisateur modifie) */
.mpc-qty-visible {
  width: 34%;
  text-align: center;
  border: none;
  outline: none;
  font-size: 14px;
  background: transparent;
  -moz-appearance: textfield;
}

/* Supprimer les flèches sur Chrome / Edge */
.mpc-qty-visible::-webkit-inner-spin-button,
.mpc-qty-visible::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Input hidden (celle envoyée au panier) */
.mpc-qty-hidden {
  display: none;
}




.mpc-atc-form {
  margin: 0;
}

.mpc-atc-btn {
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}

.mpc-atc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.mpc-atc-btn {
  position: relative;
  overflow: hidden;
}

/* Masquer le texte + icône pendant l’effet */
.mpc-atc-btn.show-check .mpc-atc-text,
.mpc-atc-btn.show-check .mpc-atc-icon {
  opacity: 0;
}

/* Le V + Ajouté */
.mpc-atc-btn.show-check::after {
  content: "✔ Ajouté";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 16px;
  color: white;
  opacity: 1;
  animation: fadeScale 0.25s ease-out;
}

/* Petite animation premium */
@keyframes fadeScale {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}






.mpc-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 5;
}

.mpc-close-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mpc-close-svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Responsive */

@media (max-width: 900px) {
  .mpc-grid {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 24px;
  }

  .mpc-info-inner {
    padding-left: 0;
  }

  .mpc-vertical-separator {
    display: none;
  }

  .mpc-main-image {
    max-height: 420px;
  }
}

@media (max-width: 600px) {
  .mpc-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mpc-card {
    padding: 20px !important;
  }
}

.mpc-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

@media (max-width: 600px) {
  .mpc-actions-row {
    flex-direction: column;
    align-items: stretch;
  }

  .mpc-atc-form,
  .mpc-atc-btn {
    width: 100%;
  }
}


@media (max-width: 749px) {

  /* Neutralise la min-height inline du wrapper */
  .mpc-main-image-wrapper {
    min-height: 0 !important;
    height: auto !important;
  }

  /* Neutralise la max-height inline de l’image */
  .mpc-main-image {
    max-height: none !important;
    height: auto !important;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }
}
@media (max-width: 480px) {
  .mpc-close-btn {
    display: none !important;
  }
}

/* CENTRAGE TEXTE/boutons MOBILE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXx */

@media (max-width: 768px) {
  .mobile-center {
    text-align: center !important;
  }

@media (max-width: 768px) {
  .mobile-center ul,
  .mobile-center ol {
    list-style-position: inside !important;
    padding-left: 0 !important;
    text-align: center !important;
  }

  .mobile-center li {
    text-align: center !important;
  }
}

@media (max-width: 768px) {
  .mpc-price-wrapper {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    text-align: center !important;
  }

  .mpc-price-wrapper .mpc-price,
  .mpc-price-wrapper .mpc-price-compare,
  .mpc-price-wrapper .mpc-discount-badge {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}



@media (max-width: 768px) {
  .mpc-variant-buttons {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 5px !important;
  }

  .mpc-variant-btn {
    width: auto !important;
    min-width: 90px;
    text-align: center !important;
  }
}


@media (max-width: 768px) {

  .mpc-actions-row {
    display: flex !important;
    align-items: center !important; /* aligne verticalement */
    justify-content: center !important;
    gap: 6px !important;
    flex-wrap: nowrap !important;
    width: 100%;
  }

  /* Quantité */
  .mpc-qty-wrapper {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important; /* 🔥 corrige le décalage */
    margin-bottom: 0 !important;
  }
  

  .mpc-qty-stepper {
    width: 110px !important;
    height: 35px !important;
    display: flex !important;          /* 🔥 centre le contenu */
    align-items: center !important;    /* 🔥 centre verticalement */
    justify-content: center !important;
  }

  /* ATC */
  .mpc-atc-form {
    flex: 1 1 auto !important;
    display: flex !important;
    align-items: center !important; /* 🔥 même alignement */
  }

  .mpc-atc-btn {
    width: 100% !important;
    height: 35px !important;
    display: flex !important;
    align-items: center !important; /* 🔥 même baseline */
    justify-content: center !important;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .mpc-qty-wrapper {
    margin-top: -10px !important;  /* remonte légèrement */
  }
}