/* =========================================================================
   VelarTrip — passerelle article → produit
   Ajouté après analyse GSC + Clarity : 100% du trafic organique arrive sur
   les articles, aucun chemin commercial n'existait.
   ========================================================================= */

.vt-article-products {
	margin: 40px 0;
	background: var(--vt-card);
	border-radius: var(--vt-radius-lg);
	padding: 26px;
	clear: both;
}

.vt-article-products--inline {
	background: var(--vt-ink);
	color: var(--vt-sand);
}

.vt-article-products__title {
	font-size: clamp(22px, 3vw, 28px);
	margin: 0 0 6px;
}

.vt-article-products--inline .vt-article-products__title {
	color: var(--vt-sand);
}

.vt-article-products__sub {
	font-size: 13px;
	font-weight: 700;
	color: var(--vt-muted);
	margin: 0 0 18px;
}

.vt-article-products__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	margin-top: 16px;
}

@media (min-width: 620px) {
	.vt-article-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vt-article-products--end .vt-article-products__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.vt-ap-card {
	background: var(--vt-sand);
	border-radius: var(--vt-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.vt-article-products--inline .vt-ap-card {
	background: rgba(246, 241, 231, 0.08);
}

.vt-ap-card__link {
	display: flex;
	gap: 12px;
	padding: 12px;
	text-decoration: none;
	align-items: center;
	flex: 1;
}

.vt-ap-card__thumb {
	flex: 0 0 auto;
	width: 68px;
	height: 68px;
	border-radius: 11px;
	overflow: hidden;
	background: var(--vt-sand-deep);
}

.vt-ap-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vt-ap-card__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.vt-ap-card__name {
	font-size: 13px;
	font-weight: 800;
	line-height: 1.3;
	color: var(--vt-ink);
}

.vt-article-products--inline .vt-ap-card__name {
	color: var(--vt-sand);
}

.vt-ap-card__rating {
	font-size: 11px;
	font-weight: 700;
	color: var(--vt-muted);
}

.vt-ap-card__rating::before {
	content: "★ ";
	color: var(--vt-star);
}

.vt-ap-card__price {
	font-size: 15px;
	font-weight: 800;
	color: var(--vt-ink);
}

.vt-ap-card__price del {
	color: var(--vt-faint);
	font-size: 12px;
	font-weight: 600;
	margin-left: 5px;
}

.vt-ap-card__price ins {
	text-decoration: none;
}

.vt-article-products--inline .vt-ap-card__price {
	color: var(--vt-gold);
}

.vt-ap-card__add {
	margin: 0 12px 12px;
	background: var(--vt-cta);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	padding: 12px;
	border-radius: 11px;
	border: 0;
	cursor: pointer;
}

.vt-ap-card__add:hover {
	background: var(--vt-cta-dark);
	color: #fff;
}

.vt-ap-card__add.is-busy {
	opacity: 0.6;
	pointer-events: none;
}

/* ---------- Barre collante sur les articles ---------- */
.vt-post-cta {
	position: fixed;
	left: 12px;
	right: 12px;
	bottom: 12px;
	z-index: 140;
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--vt-ink);
	color: var(--vt-sand);
	border-radius: 999px;
	padding: 12px 12px 12px 20px;
	box-shadow: 0 18px 36px -18px rgba(20, 49, 46, 0.7);
	transform: translateY(140%);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.vt-post-cta.is-visible {
	transform: translateY(0);
}

.vt-post-cta.is-dismissed {
	display: none;
}

.vt-post-cta__text {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 14px;
	font-weight: 800;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.vt-post-cta__button {
	flex: 0 0 auto;
	background: var(--vt-gold);
	color: var(--vt-ink);
	font-size: 13px;
	font-weight: 800;
	padding: 12px 20px;
	border-radius: 999px;
	text-decoration: none;
}

.vt-post-cta__button:hover {
	background: var(--vt-gold-dark);
	color: var(--vt-ink);
}

.vt-post-cta__close {
	flex: 0 0 auto;
	background: transparent;
	color: rgba(246, 241, 231, 0.6);
	border: 0;
	font-size: 20px;
	line-height: 1;
	padding: 6px 8px;
	cursor: pointer;
	border-radius: 999px;
}

.vt-post-cta__close:hover {
	background: rgba(246, 241, 231, 0.12);
	color: var(--vt-sand);
}

@media (min-width: 700px) {
	.vt-post-cta {
		left: auto;
		right: 24px;
		bottom: 24px;
		max-width: 420px;
	}
}

/* ---------- Newsletter ---------- */
.vt-newsletter {
	margin: 40px 0;
	background: var(--vt-sand-deep);
	border-radius: var(--vt-radius-lg);
	padding: 28px;
}

.vt-newsletter__title {
	font-size: clamp(24px, 3vw, 30px);
	margin: 0 0 6px;
}

.vt-newsletter__sub {
	font-size: 15px;
	color: var(--vt-ink-soft);
	margin: 0 0 18px;
}

.vt-newsletter__form {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.vt-newsletter__form input[type="email"] {
	flex: 1 1 220px;
	min-width: 0;
	border-radius: 999px;
	padding: 15px 20px;
}

.vt-newsletter__form button {
	flex: 0 0 auto;
	border-radius: 999px;
}

.vt-newsletter__legal {
	font-size: 11px;
	font-weight: 700;
	color: var(--vt-muted);
	margin: 12px 0 0;
}
