/* =========================================================
   Carte produit (partagée) : flacon entier, infos sous l'image
   ========================================================= */
.adp-pc {
	--c-ink: #1c1b19; --c-muted: #7a766f; --c-gold: #b0925b; --c-gold-dark: #967a48; --c-sale: #7d1f24; --c-ivory: #fbf8f2;
	position: relative; display: flex; flex-direction: column; background: #fff; isolation: isolate; min-width: 0;
	scroll-snap-align: start; font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
	box-shadow: 0 0 0 1px rgba(28, 27, 25, .06); transition: box-shadow .35s ease, transform .35s ease;
}
.adp-pc:hover { box-shadow: 0 0 0 1px rgba(28, 27, 25, .08), 0 18px 38px rgba(40, 30, 15, .12); transform: translateY(-3px); }
.adp-pc * { box-sizing: border-box; }
.adp-pc a { text-decoration: none; }

/* Image : carré, fond clair homogène, flacon entier avec marge (jamais rogné ni étiré) */
.adp-pc__media { position: relative; display: block; aspect-ratio: 1 / 1; background: #f6f3ee; overflow: hidden; }
.adp-pc__media img {
	position: absolute; inset: 7%; width: 86% !important; height: 86% !important; max-width: none;
	object-fit: contain; object-position: center; mix-blend-mode: multiply; transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}
.adp-pc:hover .adp-pc__media img { transform: scale(1.035); }
.adp-pc.is-out .adp-pc__media img { opacity: .55; filter: grayscale(.4); }

/* Badges (partagés avec la fiche produit) */
.adp-badges, .adp-pc__badges { position: absolute; z-index: 3; top: 10px; left: 10px; display: flex; flex-direction: column; align-items: flex-start; gap: 5px; pointer-events: none; }
.adp-badge {
	display: inline-block; font-family: "Jost", "Helvetica Neue", Arial, sans-serif; font-size: 10px; font-weight: 500; line-height: 1;
	letter-spacing: .12em; text-transform: uppercase; padding: 5px 8px; background: #1c1b19; color: #fbf8f2; white-space: nowrap;
}
.adp-badge.is-sale { background: #7d1f24; color: #fbf8f2; letter-spacing: .04em; font-weight: 600; }
.adp-badge.is-new { background: #1c1b19; color: #fbf8f2; letter-spacing: .2em; }
.adp-badge.is-best { background: #b39a67; color: #1c1b19; }
.adp-badge.is-excl { background: #fbf8f2; color: #1c1b19; box-shadow: inset 0 0 0 1px #b0925b; }
.adp-badge.is-decant { background: #eadfcd; color: #5a3e22; }
.adp-badge.is-low { background: #fbf8f2; color: #7d1f24; box-shadow: inset 0 0 0 1px rgba(125, 31, 36, .45); }
.adp-badge.is-out { background: #57534c; color: #fbf8f2; }

/* Informations */
.adp-pc__body { flex: 1; display: flex; flex-direction: column; padding: 14px; gap: 3px; }
.adp-pc__brand { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--c-muted); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.adp-pc__name {
	font-family: "Cormorant Garamond", Georgia, serif; font-size: 20px; font-weight: 500; line-height: 1.15; color: var(--c-ink) !important;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.3em;
}
.adp-pc__name:hover { color: var(--c-gold-dark) !important; }
.adp-pc__sub { font-size: 12px; color: var(--c-muted); line-height: 1.35; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.adp-pc__price { margin-top: auto; padding-top: 6px; font-size: 14.5px; font-weight: 600; color: var(--c-ink); display: flex; flex-wrap: wrap; align-items: baseline; gap: 0 6px; }
.adp-pc__price del { order: 2; font-weight: 400; color: var(--c-muted); font-size: 12.5px; }
.adp-pc__price ins { order: 1; text-decoration: none; color: var(--c-sale); }
.adp-pc__price .screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.adp-pc__from { font-size: 11.5px; font-weight: 400; color: var(--c-muted); letter-spacing: .02em; order: 0; }

.adp-pc__btn {
	margin-top: 10px !important; display: inline-flex !important; align-items: center; justify-content: center; gap: 8px; width: 100%; min-height: 42px;
	padding: 0 12px !important; border: 0 !important; border-radius: 0 !important; background: var(--c-ink) !important; color: #fff !important;
	font: 500 11.5px/1 "Jost", sans-serif !important; letter-spacing: .14em; text-transform: uppercase; transition: background .25s, color .25s; position: relative;
}
.adp-pc__btn svg { width: 16px; height: 16px; flex: 0 0 auto; }
.adp-pc__btn:hover { background: var(--c-gold-dark) !important; }
.adp-pc__btn.is-ghost { background: transparent !important; color: var(--c-ink) !important; box-shadow: inset 0 0 0 1px rgba(28, 27, 25, .3); }
.adp-pc__btn.is-ghost:hover { background: var(--c-ink) !important; color: #fff !important; }
.adp-pc__btn.loading { opacity: .65; pointer-events: none; }
.adp-pc__btn.loading::after { content: ""; width: 14px; height: 14px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .35); border-top-color: #fff; animation: adpSpin .8s linear infinite; }
.adp-pc__btn.added { background: var(--c-gold-dark) !important; }
.adp-pc__btn.added span::after { content: " \2713"; }
.adp-pc .added_to_cart { display: none !important; }
@keyframes adpSpin { to { transform: rotate(360deg); } }

.adp-hs--dark .adp-pc { box-shadow: none; }

@media (max-width: 640px) {
	.adp-pc__body { padding: 10px; }
	.adp-pc__name { font-size: 17px; }
	.adp-pc__sub { font-size: 11px; }
	.adp-pc__price { font-size: 13.5px; }
	.adp-pc__btn { min-height: 38px; font-size: 10px !important; letter-spacing: .06em; gap: 6px; padding: 0 6px !important; }
	.adp-pc__btn svg { display: none; }
	.adp-badges, .adp-pc__badges { top: 7px; left: 7px; gap: 4px; }
	.adp-badge { font-size: 8.5px; padding: 4px 6px; letter-spacing: .08em; }
}
