/**
 * Away Days Travel Products – base frontend styles.
 *
 * Intentionally minimal so themes can easily override.
 * All selectors use the .adtp- prefix and low specificity.
 */

/* ---- Shared -------------------------------------------------------- */

.adtp-hero,
.adtp-travel-meta,
.adtp-included,
.adtp-excluded,
.adtp-departure-dates,
.adtp-booking-card,
.adtp-dates-section,
.adtp-travel-tabs,
.adtp-highlights,
.adtp-practical-info,
.adtp-faq,
.adtp-testimonials,
.adtp-trust-badges {
	margin: 2.5rem 0;
}

.adtp-section-title {
	margin: 0 0 1.25rem;
	font-size: 1.5rem;
	line-height: 1.3;
}

.adtp-section-header {
	margin-bottom: 28px;
}

.adtp-section-header__title {
	margin: 0 0 12px;
	color: #111;
	font-size: 36px;
	line-height: 1.15;
	font-weight: 800;
}

.adtp-section-header__title span {
	color: #ef4444;
}

.adtp-section-header__description {
	margin: 0;
	color: #555;
	font-size: 15px;
	line-height: 1.65;
}

.adtp-section-header__description p {
	margin: 0;
}

@media (max-width: 600px) {
	.adtp-section-header__title {
		font-size: 30px;
	}
}


.adtp-hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.adtp-hero-buttons__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 13px 28px;
	border-radius: 999px;
	font-size: 14px;
	line-height: 1;
	font-weight: 800;
	text-decoration: none !important;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.adtp-hero-buttons__button--primary {
	background: #ef4444;
	color: #ffffff !important;
	border: 1px solid #ef4444;
}

.adtp-hero-buttons__button--primary:hover {
	background: #dc2626;
	border-color: #dc2626;
	color: #ffffff !important;
}

.adtp-hero-buttons__button--secondary {
	background: #22c55e;
	color: #ffffff !important;
	border: 1px solid #22c55e;
}

.adtp-hero-buttons__button--secondary:hover {
	background: #16a34a;
	border-color: #16a34a;
	color: #ffffff !important;
}

@media (max-width: 520px) {
	.adtp-hero-buttons {
		gap: 10px;
	}

	.adtp-hero-buttons__button {
		min-height: 42px;
		padding: 12px 22px;
		font-size: 13px;
	}
}

.adtp-btn {
	display: inline-block;
	padding: 0.75em 1.5em;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: opacity 0.15s ease;
}

.adtp-btn--primary {
	background: #16a34a;
	color: #fff;
}

.adtp-btn--secondary {
	background: transparent;
	color: inherit;
	border: 2px solid currentColor;
}

.adtp-btn--primary:hover,
.adtp-btn--secondary:hover {
	opacity: 0.85;
}

.adtp-btn--disabled {
	background: #e5e7eb;
	color: #9ca3af;
	cursor: not-allowed;
	pointer-events: none;
}

/* ---- Hero ----------------------------------------------------------- */

.adtp-hero {
	padding: 3rem 1.5rem;
	background: #0f172a;
	color: #fff;
	border-radius: 12px;
	text-align: center;
}

.adtp-hero__badge {
	display: inline-block;
	padding: 0.25em 0.9em;
	border-radius: 999px;
	background: #16a34a;
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1rem;
}

.adtp-hero__label {
	margin: 0;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	opacity: 0.8;
}

.adtp-hero__subtitle {
	margin: 0.5rem 0 1rem;
	font-size: 2.25rem;
	line-height: 1.2;
	color: inherit;
}

.adtp-hero__intro {
	max-width: 42rem;
	margin: 0 auto 1.5rem;
	opacity: 0.9;
}

.adtp-hero__actions {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	flex-wrap: wrap;
}

.adtp-hero__note {
	margin: 1rem 0 0;
	font-size: 0.85rem;
	opacity: 0.7;
}

/* ---- Travel meta bar --------------------------------------------------- */

.adtp-travel-meta {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
}

.adtp-travel-meta__item {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 1.1rem 1.25rem;
	border-left: 1px solid #e5e7eb;
	min-width: 0;
}

.adtp-travel-meta__item:first-child {
	border-left: none;
}

.adtp-travel-meta__icon {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	min-width: 42px;
	border-radius: 7px;
	background: #ef4444;
}

.adtp-travel-meta__icon img {
	width: 20px;
	height: 20px;
	display: block;
}

.adtp-travel-meta__item--age .adtp-travel-meta__icon img {
	width: 18px;
	height: 22px;
}

.adtp-travel-meta__content {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	min-width: 0;
}

.adtp-travel-meta__label {
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #9ca3af;
}

.adtp-travel-meta__value {
	font-weight: 700;
	color: #333333;
}

.adtp-travel-meta__description {
	font-size: 0.8rem;
	color: #9ca3af;
}

@media (max-width: 900px) {
	.adtp-travel-meta {
		grid-template-columns: 1fr 1fr;
	}

	.adtp-travel-meta__item:nth-child(odd) {
		border-left: none;
	}

	.adtp-travel-meta__item:nth-child(n + 3) {
		border-top: 1px solid #e5e7eb;
	}
}

@media (max-width: 520px) {
	.adtp-travel-meta {
		grid-template-columns: 1fr;
	}

	.adtp-travel-meta__item {
		border-left: none;
	}

	.adtp-travel-meta__item:nth-child(n + 2) {
		border-top: 1px solid #e5e7eb;
	}
}

/* ---- Card grid (included, excluded, highlights, practical info) ----- */

.adtp-card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.adtp-card {
	padding: 1.25rem;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	margin: 0;
}

.adtp-card__icon {
	display: inline-block;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 8px;
	background: #f1f5f9;
	margin-bottom: 0.75rem;
}

.adtp-icon--upload {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.adtp-icon--upload .adtp-icon__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.adtp-card__title {
	margin: 0 0 0.5rem;
	font-size: 1.05rem;
}

.adtp-card__description {
	font-size: 0.95rem;
	color: #475569;
}

.adtp-card__description p:last-child {
	margin-bottom: 0;
}

.adtp-excluded .adtp-card {
	background: #fafafa;
}

/* ---- Included items ----------------------------------------------------- */

.adtp-included-items__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.adtp-included-items__item {
	display: flex;
	align-items: center;
	gap: 14px;
	background: #f4f4f4;
	border-radius: 8px;
	padding: 14px;
}

.adtp-included-items__icon {
	width: 34px;
	height: 34px;
	min-width: 34px;
	border-radius: 7px;
	background: #fee2e2;
	color: #ef4444;
	display: flex;
	align-items: center;
	justify-content: center;
}

.adtp-included-items__icon svg,
.adtp-included-items__icon img,
.adtp-included-items__icon .adtp-icon {
	width: 17px;
	height: 17px;
	display: block;
}

.adtp-included-items__content {
	min-width: 0;
}

.adtp-included-items__title {
	margin: 0 0 4px;
	font-size: 13px;
	line-height: 1.25;
	font-weight: 700;
	color: #111;
}

.adtp-included-items__description {
	margin: 0;
	font-size: 11px;
	line-height: 1.35;
	color: #555;
}

@media (max-width: 600px) {
	.adtp-included-items__grid {
		grid-template-columns: 1fr;
	}
}

/* ---- Booking card / dates section -------------------------------------- */

.adtp-booking-card {
	width: 100%;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.adtp-booking-card__hero {
	position: relative;
	height: 175px;
	overflow: hidden;
	background: linear-gradient(135deg, #111827 0%, #374151 100%);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 24px;
}

.adtp-booking-card__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 1;
}

.adtp-booking-card__title {
	position: relative;
	z-index: 2;
}

.adtp-booking-card__title {
	margin: 0;
	color: #ffffff;
	font-size: 30px;
	line-height: 1.15;
	font-weight: 800;
	text-align: center;
}

.adtp-booking-card__title span {
	color: #ef4444;
}

.adtp-booking-card__body {
	padding: 28px 32px 32px;
	background: #ffffff;
}

.adtp-booking-card__intro {
	margin-bottom: 26px;
	color: #555555;
	font-size: 16px;
	line-height: 1.55;
}

.adtp-booking-card__intro p {
	margin: 0;
}

.adtp-booking-card .adtp-departure-dates {
	max-height: none;
	overflow: visible;
	padding-right: 0;
	margin: 0;
}

.adtp-booking-card .adtp-departure-dates__list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.adtp-booking-card .adtp-departure-dates__item {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 28px;
	align-items: start;
	padding: 22px 0;
	border-top: 1px solid #e5e7eb;
}

.adtp-booking-card .adtp-departure-dates__item:first-child {
	padding-top: 0;
	border-top: 0;
}

.adtp-booking-card .adtp-departure-dates__date {
	margin: 0 0 7px;
	color: #111111;
	font-size: 17px;
	line-height: 1.25;
	font-weight: 800;
}

.adtp-booking-card .adtp-departure-dates__route {
	margin: 0 0 14px;
	color: #333333;
	font-size: 14px;
	line-height: 1.35;
}

.adtp-booking-card .adtp-departure-dates__spots {
	margin: 0;
	color: #ef4444;
	font-size: 14px;
	line-height: 1.35;
	font-weight: 800;
}

.adtp-booking-card .adtp-departure-dates__aside {
	min-width: 112px;
	text-align: left;
}

.adtp-booking-card .adtp-departure-dates__price {
	margin: 0 0 2px;
	color: #111111;
	font-size: 17px;
	line-height: 1.2;
	font-weight: 800;
}

.adtp-booking-card .adtp-departure-dates__price-description {
	margin: 0 0 14px;
	color: #555555;
	font-size: 13px;
	line-height: 1.25;
}

.adtp-booking-card .adtp-departure-dates__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 92px;
	min-height: 38px;
	padding: 10px 20px;
	border-radius: 999px;
	background: #ef4444;
	color: #ffffff !important;
	font-size: 13px;
	line-height: 1;
	font-weight: 800;
	text-decoration: none !important;
	border: 0;
}

.adtp-booking-card .adtp-departure-dates__button:hover {
	background: #dc2626;
	color: #ffffff !important;
}

@media (max-width: 767px) {
	.adtp-booking-card {
		border-radius: 14px;
	}

	.adtp-booking-card__hero {
		height: 170px;
	}


	.adtp-booking-card__title {
		font-size: 25px;
	}

	.adtp-booking-card__body {
		padding: 24px 22px 26px;
	}

	.adtp-booking-card__intro {
		margin-bottom: 22px;
		font-size: 15px;
	}

	.adtp-booking-card .adtp-departure-dates__item {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.adtp-booking-card .adtp-departure-dates__aside {
		min-width: 0;
		text-align: left;
	}
}

/* ---- Departure dates ------------------------------------------------- */

.adtp-departure-dates {
	max-height: 470px;
	overflow-y: auto;
	padding-right: 12px;
}

.adtp-departure-dates__list {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
}

.adtp-departure-dates__item {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 18px;
	padding: 18px 0;
	border-top: 1px solid #e5e5e5;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
}

.adtp-departure-dates__item:first-child {
	border-top: 0;
	padding-top: 0;
}

.adtp-departure-dates__date {
	margin: 0 0 5px;
	font-size: 13px;
	line-height: 1.3;
	font-weight: 800;
	color: #111;
}

.adtp-departure-dates__route {
	margin: 0 0 12px;
	font-size: 11px;
	line-height: 1.4;
	color: #555;
}

.adtp-departure-dates__spots {
	margin: 0;
	font-size: 11px;
	line-height: 1.3;
	color: #ef4444;
	font-weight: 700;
}

.adtp-departure-dates__aside {
	min-width: 100px;
	text-align: right;
}

.adtp-departure-dates__price {
	margin-bottom: 2px;
	font-size: 13px;
	line-height: 1.25;
	font-weight: 800;
	color: #111;
}

.adtp-departure-dates__price-description {
	margin-bottom: 10px;
	font-size: 10px;
	line-height: 1.2;
	color: #555;
}

.adtp-departure-dates__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 76px;
	min-height: 32px;
	padding: 8px 15px;
	border-radius: 999px;
	background: #ef4444;
	color: #fff;
	font-size: 11px;
	line-height: 1;
	font-weight: 700;
	text-decoration: none;
	border: 0;
}

.adtp-departure-dates__button:hover {
	background: #dc2626;
	color: #fff;
}

.adtp-departure-dates__item.is-selected .adtp-departure-dates__button {
	background: #000;
	color: #fff;
}

.adtp-departure-dates__item.is-disabled .adtp-departure-dates__button {
	background: #d1d5db;
	color: #6b7280;
	pointer-events: none;
	cursor: not-allowed;
}

.adtp-departure-dates::-webkit-scrollbar {
	width: 4px;
}

.adtp-departure-dates::-webkit-scrollbar-track {
	background: #eee;
	border-radius: 999px;
}

.adtp-departure-dates::-webkit-scrollbar-thumb {
	background: #555;
	border-radius: 999px;
}

@media (max-width: 600px) {
	.adtp-departure-dates__item {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.adtp-departure-dates__aside {
		text-align: left;
	}
}

/* ---- Travel tabs ------------------------------------------------------- */

.adtp-travel-tabs__nav {
	display: flex;
	gap: 4px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.adtp-travel-tabs__tab {
	flex: 0 0 auto;
	padding: 12px 22px;
	border: 0;
	border-radius: 10px 10px 0 0;
	background: #fff;
	color: #555;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
}

.adtp-travel-tabs__tab.is-active {
	background: #ef4444;
	color: #fff;
}

.adtp-travel-tabs__panel-wrap {
	background: #fff;
	border-top: 3px solid #ef4444;
	border-radius: 0 10px 10px 10px;
	padding: 24px;
}

.adtp-travel-tabs__panel {
	display: none;
}

.adtp-travel-tabs__panel.is-active {
	display: block;
}

.adtp-travel-tabs__title {
	margin: 0 0 12px;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 800;
	color: #111;
}

.adtp-travel-tabs__content {
	color: #444;
}

.adtp-travel-tabs__content p:last-child {
	margin-bottom: 0;
}

.adtp-travel-tabs__content h2,
.adtp-travel-tabs__content h3,
.adtp-travel-tabs__content h4 {
	margin: 24px 0 12px;
	color: #111;
	font-weight: 800;
}

.adtp-travel-tabs__content a {
	color: #ef4444;
	text-decoration: underline;
}

.adtp-travel-tabs__content ul,
.adtp-travel-tabs__content ol {
	margin: 18px 0;
	padding-left: 22px;
}

.adtp-travel-tabs__content li {
	margin-bottom: 10px;
}

/* ---- Highlights --------------------------------------------------------- */

.adtp-highlights__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.adtp-highlights__item {
	background: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.adtp-highlights__image {
	height: 145px;
	overflow: hidden;
}

.adtp-highlights__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.adtp-highlights__content {
	padding: 16px;
}

.adtp-highlights__heading {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}

.adtp-highlights__icon {
	width: 28px;
	height: 28px;
	min-width: 28px;
	border-radius: 999px;
	background: #ef4444;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.adtp-highlights__icon svg,
.adtp-highlights__icon img,
.adtp-highlights__icon span {
	width: 14px;
	height: 14px;
	display: block;
}

.adtp-highlights__title {
	margin: 0;
	color: #111111;
	font-size: 14px;
	line-height: 1.25;
	font-weight: 800;
}

.adtp-highlights__description {
	margin: 0;
	color: #555555;
	font-size: 12px;
	line-height: 1.5;
}

@media (max-width: 900px) {
	.adtp-highlights__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 520px) {
	.adtp-highlights__grid {
		grid-template-columns: 1fr;
	}
}

/* ---- Itinerary -------------------------------------------------------- */

.adtp-itinerary__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.adtp-itinerary__day {
	display: flex;
	gap: 1.25rem;
	padding: 1.25rem;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
}

.adtp-itinerary__image {
	flex: 0 0 180px;
}

.adtp-itinerary__image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.adtp-itinerary__number {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #16a34a;
	margin-right: 0.5rem;
}

.adtp-itinerary__date {
	font-size: 0.8rem;
	color: #64748b;
}

.adtp-itinerary__title {
	margin: 0.25rem 0 0.5rem;
	font-size: 1.1rem;
}

.adtp-itinerary__description {
	color: #475569;
}

/* ---- FAQ -------------------------------------------------------------- */

.adtp-faq__list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.adtp-faq__item {
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	background: #fff;
	padding: 0;
}

.adtp-faq__question {
	padding: 1rem 1.25rem;
	font-weight: 600;
	cursor: pointer;
}

.adtp-faq__answer {
	padding: 0 1.25rem 1rem;
	color: #475569;
}

/* ---- Testimonials ------------------------------------------------------ */

.adtp-testimonials {
	margin-top: 36px;
}

.adtp-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.adtp-testimonials__item {
	background: #fff;
	border-radius: 10px;
	padding: 26px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.adtp-testimonials__quote-icon {
	color: #fca5a5;
	font-size: 42px;
	line-height: 1;
	font-weight: 800;
	margin-bottom: 8px;
}

.adtp-testimonials__quote {
	margin: 0 0 18px;
	color: #111;
	font-size: 13px;
	line-height: 1.55;
}

.adtp-testimonials__images {
	display: flex;
	gap: 6px;
	margin-bottom: 18px;
	flex-wrap: wrap;
}

.adtp-testimonials__images img {
	width: 48px;
	height: 34px;
	border-radius: 4px;
	object-fit: cover;
	display: block;
}

.adtp-testimonials__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.adtp-testimonials__author {
	display: flex;
	align-items: center;
	gap: 10px;
}

.adtp-testimonials__avatar {
	width: 32px;
	height: 32px;
	min-width: 32px;
	border-radius: 999px;
	background: #ef4444;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 800;
	overflow: hidden;
}

.adtp-testimonials__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.adtp-testimonials__name {
	display: block;
	color: #111;
	font-size: 12px;
	line-height: 1.2;
	font-weight: 800;
}

.adtp-testimonials__location {
	display: block;
	color: #555;
	font-size: 10px;
	line-height: 1.2;
}

.adtp-testimonials__rating {
	color: #ef4444;
	font-size: 13px;
	letter-spacing: 2px;
	white-space: nowrap;
}

.adtp-testimonials__actions {
	display: flex;
	justify-content: center;
	margin-top: 34px;
}

.adtp-testimonials__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 12px 28px;
	border-radius: 999px;
	background: #ef4444;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.adtp-testimonials__button:hover {
	background: #dc2626;
	color: #fff;
}

.adtp-testimonials__button.is-loading {
	cursor: wait;
	opacity: 0.72;
	pointer-events: none;
}

@media (max-width: 900px) {
	.adtp-testimonials__grid {
		grid-template-columns: 1fr;
	}
}

/* ---- Trust icons -------------------------------------------------------- */

.adtp-trust-icons {
	margin-top: 28px;
}

.adtp-trust-icons__grid {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 42px;
	flex-wrap: wrap;
}

.adtp-trust-icons__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
}

.adtp-trust-icons__icon {
	width: 28px;
	height: 28px;
	color: #111;
	display: flex;
	align-items: center;
	justify-content: center;
}

.adtp-trust-icons__icon svg,
.adtp-trust-icons__icon img,
.adtp-trust-icons__icon .adtp-icon {
	width: 28px;
	height: 28px;
	display: block;
	object-fit: contain;
}

.adtp-trust-icons__label {
	color: #111;
	font-size: 11px;
	line-height: 1.2;
}

/* ---- Trust badges ------------------------------------------------------ */

.adtp-trust-badges__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	max-width: 720px;
	margin: 0 auto;
}

.adtp-trust-badges__item {
	background: #ef4444;
	border-radius: 8px;
	padding: 20px 24px;
	text-align: center;
}

.adtp-trust-badges__value {
	display: block;
	color: #fff;
	font-size: 28px;
	line-height: 1.1;
	font-weight: 800;
	margin-bottom: 6px;
}

.adtp-trust-badges__label {
	display: block;
	color: rgba(255, 255, 255, 0.85);
	font-size: 12px;
	line-height: 1.3;
	font-weight: 400;
}

@media (max-width: 767px) {
	.adtp-trust-badges__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 420px) {
	.adtp-trust-badges__grid {
		grid-template-columns: 1fr;
	}
}

/* ---- Product gallery --------------------------------------------------- */

.adtp-product-gallery {
	margin: 2.5rem 0;
}

.adtp-product-gallery__top {
	display: grid;
	grid-template-columns: 2fr 1.15fr;
	gap: 16px;
}

.adtp-product-gallery__side {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 16px;
}

.adtp-product-gallery__item {
	display: block;
	border-radius: 12px;
	overflow: hidden;
}

.adtp-product-gallery__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.adtp-product-gallery__item--main {
	height: 470px;
}

.adtp-product-gallery__side .adtp-product-gallery__item {
	height: 227px;
}

.adtp-product-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 16px;
}

.adtp-product-gallery__thumb {
	display: block;
	position: relative;
	height: 120px;
	border-radius: 12px;
	overflow: hidden;
}

.adtp-product-gallery__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.adtp-product-gallery__thumb--more span {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(15, 23, 42, 0.55);
	color: #fff;
	font-weight: 600;
	font-size: 0.9rem;
	text-align: center;
	padding: 0 0.5rem;
}

@media (max-width: 768px) {
	.adtp-product-gallery__top {
		grid-template-columns: 1fr;
	}

	.adtp-product-gallery__side {
		grid-template-rows: none;
		grid-template-columns: 1fr 1fr;
	}

	.adtp-product-gallery__item--main {
		height: 320px;
	}

	.adtp-product-gallery__side .adtp-product-gallery__item {
		height: 140px;
	}

	.adtp-product-gallery__thumbs {
		grid-template-columns: repeat(4, minmax(120px, 1fr));
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}

/* ---- Responsive -------------------------------------------------------- */

@media (max-width: 960px) {
	.adtp-card-grid {
		grid-template-columns: repeat(2, 1fr);
	}

}

@media (max-width: 600px) {
	.adtp-hero__subtitle {
		font-size: 1.6rem;
	}

	.adtp-card-grid {
		grid-template-columns: 1fr;
	}

	.adtp-itinerary__day {
		flex-direction: column;
	}

	.adtp-itinerary__image {
		flex-basis: auto;
	}
}
