/** Shopify CDN: Minification failed

Line 297:16 Expected identifier but found whitespace
Line 297:18 Unexpected "{"
Line 297:27 Expected ":"
Line 297:53 Expected ":"
Line 298:19 Expected identifier but found whitespace
Line 298:21 Unexpected "{"
Line 298:30 Expected ":"
Line 298:59 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:gallery (INDEX:19) */
/* ============================================
   CREATOR GALLERY - Körven Studio
   ============================================ */

.cg-section {
  padding: 48px 0;
  background-color: #FAFAFA;
}

/* ── HEADER CREATEUR ── */
.cg-header {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 20px 28px;
}

.cg-header__username {
  font-family: var(--font-heading-family);
  font-weight: var(--font-heading-weight);
  font-size: 30px;
  color: var(--color-foreground);
  margin: 0 0 6px;
  line-height: 1.2;
}

.cg-header__desc {
  font-family: var(--font-body-family);
  font-size: 14px;
  color: #888;
  margin: 0;
}

/* ── SEPARATEUR ── */
.cg-sep {
  height: 64px;
}

/* ── GRILLE ORDINATEUR ── */
.cg-grid {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--cg-gap, 8px);
  padding: 0 20px;
}

/* ── ITEM ── */
.cg-item {
  grid-column: span var(--cg-col, 4);
  grid-row: span var(--cg-row, 1);
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #f0f0f0;
}

.cg-item__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 4 / 5;
  transition: transform 0.5s ease;
}

.cg-item:hover .cg-item__img {
  transform: scale(1.03);
}

/* Quand row > 1 sur ordi, l'image s'étire */
.cg-item[style*="--cg-row: 2"] .cg-item__img,
.cg-item[style*="--cg-row: 3"] .cg-item__img {
  height: 100%;
  aspect-ratio: unset;
}

/* ── OVERLAY PRODUIT (Carte info style Blossholm) ── */
.cg-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.cg-item:hover .cg-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Miniature produit */
.cg-overlay__thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  background: #f5f5f5;
  border: 1px solid #eaeaea;
}

/* Info produit */
.cg-overlay__info {
  flex: 1;
  min-width: 0;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cg-overlay__name {
  font-family: var(--font-body-family);
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.cg-overlay__price-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cg-overlay__price {
  font-family: var(--font-body-family);
  font-size: 12px;
  color: #666;
}

.cg-overlay__compare {
  font-family: var(--font-body-family);
  font-size: 11px;
  color: #bbb;
  text-decoration: line-through;
}

/* ── BOUTON BEIGE (+ Add) ── */
.cg-overlay__btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  margin: 0;
  background: #B69A75; /* Beige fidèle à tes captures */
  color: #fff;
  border: none;
  font-family: var(--font-body-family), sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.cg-overlay__btn:hover {
  background: #9d8361;
}

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

  .cg-section {
    padding: 24px 0;
  }

  .cg-header {
    padding: 0 16px 16px;
  }

  .cg-header__username {
    font-size: 24px;
  }

  .cg-sep {
    height: 32px;
  }

  /*
    Grille mobile : espacements resserrés comme l'exemple
  */
  .cg-grid {
    grid-template-columns: repeat(12, 1fr) !important;
    gap: 8px !important;
    padding: 0 12px !important;
  }

  .cg-item {
    /* Application des variables de positionnement spécifiques au mobile */
    grid-column: span var(--cg-col-mob, 12) !important;
    grid-row: span var(--cg-row-mob, 1) !important;
    border-radius: 10px !important;
  }

  /* Gestion experte du ratio image sur mobile */
  .cg-item__img {
    aspect-ratio: 4 / 5 !important;
    height: auto !important;
  }

  /* Si l'image s'étire sur 2 ou 3 lignes sur MOBILE, on enlève le ratio imposé */
  .cg-item[style*="--cg-row-mob: 2"] .cg-item__img,
  .cg-item[style*="--cg-row-mob: 3"] .cg-item__img {
    aspect-ratio: unset !important;
    height: 100% !important;
  }

  /* Overlay mobile (Carte style appli) toujours visible */
  .cg-overlay {
    bottom: 8px !important;
    left: 8px !important;
    right: 8px !important;
    padding: 6px !important;
    border-radius: 6px !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08) !important;
  }

  .cg-overlay__thumb {
    width: 42px;
    height: 42px;
    border-radius: 3px;
  }

  .cg-overlay__info {
    padding: 0 8px;
  }

  .cg-overlay__name {
    font-size: 11px;
    margin: 0 0 2px;
  }

  .cg-overlay__price {
    font-size: 10px;
  }

  .cg-overlay__compare {
    font-size: 9px;
  }

  /* Bouton mobile */
  .cg-overlay__btn {
    padding: 6px 12px !important;
    font-size: 11px !important;
    border-radius: 4px !important;
  }
}
/* END_SECTION:gallery */

/* START_SECTION:product-description-section (INDEX:55) */
.product-description-section {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }

  .product-description-section__heading {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: rgb(var(--color-foreground));
  }

  .product-description-section__content {
    color: rgb(var(--color-foreground));
    font-size: 1.5rem;
    line-height: 1.7;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
  }

  /* Rich text styles */
  .product-description-section__content p {
    margin-bottom: 1.2em;
  }

  .product-description-section__content p:last-child {
    margin-bottom: 0;
  }

  .product-description-section__content ul,
  .product-description-section__content ol {
    padding-left: 2rem;
    margin-bottom: 1.2em;
  }

  .product-description-section__content li {
    margin-bottom: 0.4em;
  }

  .product-description-section__content h1,
  .product-description-section__content h2,
  .product-description-section__content h3,
  .product-description-section__content h4 {
    margin-top: 1.6em;
    margin-bottom: 0.6em;
    font-weight: 500;
  }

  .product-description-section__content a {
    color: rgb(var(--color-foreground));
    text-decoration: underline;
  }

  .product-description-section__content strong {
    font-weight: 600;
  }

  /* Séparateur optionnel en haut */
  .product-description-section--divider {
    border-top: 0.1rem solid rgba(var(--color-foreground), 0.1);
  }
/* END_SECTION:product-description-section */