/*
 * ODepot B2B Orders — Onglet "Mes packs" dans Mon compte
 *
 * Plus compact que la page catalogue puisqu'il s'intègre dans
 * la zone Mon compte WC (sidebar + main).
 */

.odp-account-packs {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #1d2327;
	font-size: 14px;
	line-height: 1.5;
}
.odp-account-packs *,
.odp-account-packs *::before,
.odp-account-packs *::after {
	box-sizing: border-box;
}

/* ── Section header ─────────────────────────── */

.odp-account-packs-section {
	margin-bottom: 30px;
}
.odp-account-packs-section:last-child {
	margin-bottom: 0;
}
.odp-account-packs-section-head {
	margin-bottom: 14px;
}
.odp-account-packs-section-title {
	margin: 0 0 4px;
	font-size: 18px;
	font-weight: 700;
	color: var(--odp-primary, #0b1f3a);
}
.odp-account-packs-section-desc {
	margin: 0;
	font-size: 13px;
	color: #5f5e5a;
}

/* ── Grid ─────────────────────────────────── */

.odp-account-packs-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

@media (min-width: 600px) {
	.odp-account-packs-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}
}

/* ── Card ─────────────────────────────────── */

.odp-account-packs-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 1px 4px rgba(11, 31, 58, 0.08);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.odp-account-packs-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 14px rgba(11, 31, 58, 0.12);
}
.odp-account-packs-card.is-personal {
	box-shadow: 0 0 0 2px var(--odp-accent, #d60b51), 0 2px 10px rgba(214, 11, 81, 0.18);
}
.odp-account-packs-card.is-personal:hover {
	box-shadow: 0 0 0 2px var(--odp-accent, #d60b51), 0 4px 14px rgba(214, 11, 81, 0.25);
}

.odp-account-packs-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none !important;
	color: inherit;
}
.odp-account-packs-card-link:hover,
.odp-account-packs-card-link:focus {
	text-decoration: none !important;
	color: inherit;
}

.odp-account-packs-card-cover {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background-color: #f6f7f7;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
@supports not (aspect-ratio: 16 / 9) {
	.odp-account-packs-card-cover {
		height: 0;
		padding-bottom: 56.25%;
	}
}
.odp-account-packs-card-cover-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #fff1f5 0%, #f6f7f7 100%);
	font-size: 38px;
	opacity: 0.85;
}

.odp-account-packs-card-body {
	padding: 14px 16px 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.odp-account-packs-card-tagline {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--odp-accent, #d60b51);
	margin-bottom: 4px;
}
.odp-account-packs-card-name {
	margin: 0 0 6px;
	font-size: 15px;
	font-weight: 600;
	color: var(--odp-primary, #0b1f3a);
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.odp-account-packs-card-desc {
	margin: 0 0 10px;
	font-size: 12px;
	color: #5f5e5a;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	flex: 1;
}
.odp-account-packs-card-foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 8px;
	border-top: 1px solid #f0f0f0;
}
.odp-account-packs-card-meta {
	font-size: 11px;
	color: #5f5e5a;
	font-weight: 500;
}
.odp-account-packs-card-cta {
	font-size: 12px;
	font-weight: 600;
	color: var(--odp-accent, #d60b51);
	white-space: nowrap;
}

/* ── Empty state ───────────────────────────── */

.odp-account-packs-empty {
	text-align: center;
	padding: 40px 20px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 1px 4px rgba(11, 31, 58, 0.06);
}
.odp-account-packs-empty-icon {
	font-size: 48px;
	margin-bottom: 12px;
	opacity: 0.85;
}
.odp-account-packs-empty-title {
	margin: 0 0 6px;
	color: var(--odp-primary, #0b1f3a);
	font-size: 18px;
	font-weight: 600;
}
.odp-account-packs-empty-text {
	margin: 0 auto 18px;
	color: #5f5e5a;
	font-size: 13px;
	line-height: 1.5;
	max-width: 460px;
}
.odp-account-packs-cta {
	display: inline-block;
	background: var(--odp-accent, #d60b51);
	color: #fff !important;
	text-decoration: none !important;
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	transition: background 0.12s;
}
.odp-account-packs-cta:hover {
	background: #b30943;
}

/* ── Footer link ──────────────────────────── */

.odp-account-packs-foot {
	margin-top: 24px;
	text-align: center;
	padding-top: 18px;
	border-top: 1px solid #f0f0f0;
}
.odp-account-packs-foot-link {
	color: var(--odp-primary, #0b1f3a) !important;
	text-decoration: none !important;
	font-size: 13px;
	font-weight: 600;
	padding: 8px 14px;
	border-radius: 6px;
	transition: background 0.12s;
}
.odp-account-packs-foot-link:hover {
	background: #f6f7f7;
}
