/** Shopify CDN: Minification failed

Line 308:0 Expected "}" to go with "{"

**/
/* ============================================
   VIANA BIJOUX — Menu Mobile Premium
   ============================================ */

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

  /* Overlay flou derrière le menu */
  .menu-drawer__overlay,
  .menu-opening .menu-drawer__overlay {
    background: rgba(242, 154, 184, 0.25) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
  }

  /* Panneau principal du menu */
  .menu-drawer {
    background: rgba(255, 245, 248, 0.92) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-radius: 0 28px 28px 0 !important;
    border-right: 1px solid rgba(242, 154, 184, 0.3) !important;
    box-shadow: 4px 0 32px rgba(242, 154, 184, 0.2) !important;
  }

  /* Liens du menu principal */
  .menu-drawer__menu-item,
  .menu-drawer__menu-item a,
  .menu-drawer__navigation a {
    color: #333333 !important;
    font-family: inherit;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    padding: 14px 20px !important;
  }

  /* Séparateurs fins rose clair */
  .menu-drawer__menu-item + .menu-drawer__menu-item,
  .menu-drawer__navigation li + li {
    border-top: 1px solid rgba(242, 154, 184, 0.25) !important;
  }

  /* Hover sur les liens */
  .menu-drawer__navigation a:hover {
    color: #F29AB8 !important;
    background: rgba(242, 154, 184, 0.08) !important;
    border-radius: 12px !important;
  }

  /* Icône fermeture */
  .menu-drawer__close-button svg,
  .menu-drawer__close-button .icon {
    color: #F29AB8 !important;
    stroke: #F29AB8 !important;
  }

  /* ---- Boutons capsules ---- */
  .viana-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 16px 12px;
    border-top: 1px solid rgba(242, 154, 184, 0.3);
    margin-top: 8px;
  }

  .viana-pill-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(242, 154, 184, 0.15);
    color: #333333;
    border: 1px solid rgba(242, 154, 184, 0.4);
    border-radius: 50px;
    padding: 11px 20px;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
    justify-content: flex-start;
  }

  .viana-pill-btn:hover,
  .viana-pill-btn:active {
    background: #F29AB8 !important;
    color: #ffffff !important;
    border-color: #F29AB8 !important;
  }

  .viana-pill-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    flex-shrink: 0;
  }

  /* ---- Sélecteur de langue ---- */
  .viana-lang-switcher {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(242, 154, 184, 0.1);
    border: 1px solid rgba(242, 154, 184, 0.4);
    border-radius: 50px;
    overflow: hidden;
    width: fit-content;
    margin: 4px 0;
  }

  .viana-lang-btn {
    padding: 9px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333333;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.05em;
    font-family: inherit;
  }

  .viana-lang-btn.active,
  .viana-lang-btn:hover {
    background: #F29AB8;
    color: #ffffff;
  }

  .viana-lang-divider {
    width: 1px;
    height: 20px;
    background: rgba(242, 154, 184, 0.5);
  }

  /* ---- Zone déco bas de menu ---- */
  .viana-welcome-badge {
    margin: 16px 16px 20px;
    background: rgba(242, 154, 184, 0.15);
    border: 1px solid rgba(242, 154, 184, 0.3);
    border-radius: 18px;
    padding: 14px 18px;
    text-align: center;
    color: #c47a9a;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    font-style: italic;
  }

}
/* ── Sélections créatrices ── */
:root {
  --collab-rose: #f9e4e8;
  --collab-nude: #f5ede8;
  --collab-white: #fdf8f5;
  --collab-accent: #e8a0b0;
  --collab-text: #3d2b2b;
  --collab-shadow: rgba(232, 160, 176, 0.25);
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.collab-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.collab-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.collab-card {
  background: var(--collab-white);
  border-radius: 24px;
  box-shadow: 0 4px 24px var(--collab-shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: block;
  color: var(--collab-text);
}
.collab-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 40px rgba(232, 160, 176, 0.45);
}
.collab-card__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.collab-card__placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--collab-rose), var(--collab-nude));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 300;
  color: var(--collab-accent);
}
.collab-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  text-align: center;
}
.collab-card__name {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--collab-text);
  margin: 0;
}

.collab-product-card {
  background: var(--collab-white);
  border-radius: 18px;
  box-shadow: 0 2px 16px var(--collab-shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: block;
  color: var(--collab-text);
}
.collab-product-card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 28px rgba(232, 160, 176, 0.4);
}
.collab-product-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.collab-product-card__body {
  padding: 1rem 1.25rem 1.25rem;
  text-align: center;
}
.collab-product-card__title {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 0.4rem;
  letter-spacing: 0.04em;
}
.collab-product-card__price {
  font-size: 0.9rem;
  color: var(--collab-accent);
  font-weight: 400;
}

@media (max-width: 900px) {
  .collab-grid,
  .collab-products-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  .collab-grid,
  .collab-products-grid { grid-template-columns: 1fr !important; }
 @media screen and (max-width: 749px) {
  add-to-cart-component button {
    white-space: normal !important;
    height: auto !important;
    min-height: 50px !important;
    padding-block: 14px !important;
    line-height: 1.4 !important;
    overflow: visible !important;
    text-overflow: unset !important;
  }

  add-to-cart-component .add-to-cart-text {
    overflow: visible !important;
    white-space: normal !important;
  }

  add-to-cart-component .add-to-cart-text__content {
    overflow: visible !important;
    white-space: normal !important;
  }
}
@media screen and (max-width: 749px) {
  .viana-atc-wrap {
    padding-left: 4% !important;
    padding-right: 4% !important;
  }

  .viana-atc-btn {
    white-space: normal !important;
    line-height: 1.3 !important;
    padding: 11px 12px !important;
    font-size: 0.72rem !important;
  }
}




