/* ── SECTION WRAPPER ── */
.shop {
  padding: 60px 5px;
}


/* ── GRILLE ── */
.collections-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

/* ── CARTES ── */
.coll-card {
  background: #EDE8DF;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Grande carte à gauche */
.coll-card:first-child {
  grid-row: 1 / 3;
  min-height: 500px;
}

/* 4 petites cartes */
.coll-card:not(:first-child) {
  min-height: 240px;
}

/* ── IMAGE ── */
.coll-img {
  position: absolute;
  inset: 0;
  transition: transform 0.45s ease;
}
.coll-img img {
	margin-top : 12px;
  width: 100%;
  height: 100%;
	object-fit: cover;
}
.coll-card:hover .coll-img {
  transform: scale(1.04);
}

/* ── BADGE ── */
.coll-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: #F2D149;
  color: #0d0d0d;
}
.coll-badge.limited {
  background: #CE2442;
  color: #fff;
}
.coll-badge.new-in {
  background: #1C3E91;
  color: #fff;
}

/* ── INFOS BAS DE CARTE ── */
.coll-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px 18px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.35) 60%,
    transparent 100%
  );
  transform: translateY(4px);
  transition: transform 0.3s ease;
}
.coll-card:hover .coll-info {
  transform: translateY(0);
}

.coll-category {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F2D149;
  margin-bottom: 5px;
}

.coll-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
}

/* ── PRIX + BOUTON ── */
.coll-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.coll-price {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
}

.coll-btn {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 16px;
  background: #F2D149;
  color: #0d0d0d;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.coll-btn:hover {
  background: #f9e060;
}