/* ==========================================================================
   Block: Punti Vendita — Swiper Carousel
   ========================================================================== */

.mnk-punti-vendita {
	position: relative;
	padding: 3em 0;
	max-width: 1400px;
	margin: 0 auto;
}

.mnk-punti-vendita.alignfull,
.mnk-punti-vendita--fullwidth {
	max-width: 100%;
	padding-left: 2em;
	padding-right: 2em;
}

.mnk-punti-vendita.alignwide {
	max-width: 1400px;
}

/* --- Section Header --- */
.mnk-punti-vendita__header {
	text-align: center;
	margin-bottom: 2em;
}

.mnk-punti-vendita__title {
	font-family: 'Passion One', cursive;
	font-weight: 700;
	font-size: 69px;
	line-height: 1.1;
	color: #e30613;
	margin: 0 0 0.2em;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.mnk-punti-vendita__subtitle {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 36px;
	line-height: 1.4;
	color: #555555;
	margin: 0;
	text-transform: uppercase;
}

/* --- Swiper Container --- */
.mnk-punti-vendita__swiper {
	position: relative;
	padding-bottom: 3em;
	margin: 0 60px;
}

/* --- Card --- */
.mnk-pv-card {
	background: #ffffff;
	border-radius: 0;
	box-shadow: none;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: box-shadow 0.3s ease;
}

.mnk-pv-card:hover {
	box-shadow: none;
}

/* --- Card Image --- */
.mnk-pv-card__image {
	width: 100%;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}

.mnk-pv-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* --- Card Content --- */
.mnk-pv-card__content {
	padding: 1.25em 1.5em 1.5em;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.mnk-pv-card__name {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 1.3rem;
	color: #2d3561;
	text-transform: uppercase;
	margin: 0 0 0.5em;
	line-height: 1.2;
}

.mnk-pv-card__desc {
	font-family: 'Roboto', sans-serif;
	font-size: 0.95rem;
	color: #555555;
	line-height: 1.5;
	margin: 0 0 1em;
	flex-grow: 1;
}

/* --- CTA Link --- */
.mnk-pv-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	font-family: 'Roboto', sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	color: #e30613;
	text-decoration: none;
	transition: color 0.2s ease;
	margin-top: auto;
}

.mnk-pv-card__cta:hover {
	color: #b30510;
	text-decoration: underline;
}

/* --- Swiper Navigation Arrows (outside swiper, inside section) --- */
.mnk-punti-vendita .swiper-button-prev.mnk-punti-vendita__nav-prev,
.mnk-punti-vendita .swiper-button-next.mnk-punti-vendita__nav-next {
	position: absolute;
	width: 48px;
	height: 48px;
	background: #e0e0e0;
	border-radius: 50%;
	color: #1a1a1a;
	transition: background 0.2s ease, color 0.2s ease;
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0;
	top: 0; /* overridden by JS */
	transform: translateY(-50%);
}

.mnk-punti-vendita .swiper-button-prev.mnk-punti-vendita__nav-prev {
	left: 69px;
}

.mnk-punti-vendita .swiper-button-next.mnk-punti-vendita__nav-next {
	right: 69px;
}

.mnk-punti-vendita .swiper-button-prev.mnk-punti-vendita__nav-prev::after,
.mnk-punti-vendita .swiper-button-next.mnk-punti-vendita__nav-next::after {
	font-size: 1rem;
	font-weight: 700;
	color: inherit;
}

.mnk-punti-vendita .swiper-button-prev.mnk-punti-vendita__nav-prev:hover,
.mnk-punti-vendita .swiper-button-next.mnk-punti-vendita__nav-next:hover {
	background: #e30613;
	color: #ffffff;
}

/* --- Swiper Pagination Dots --- */
.mnk-punti-vendita__swiper .swiper-pagination {
	bottom: 0;
}

.mnk-punti-vendita__swiper .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #cccccc;
	opacity: 1;
}

.mnk-punti-vendita__swiper .swiper-pagination-bullet-active {
	background: #e30613;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
	.mnk-punti-vendita__swiper {
		margin: 0;
	}

	.mnk-punti-vendita__nav-prev,
	.mnk-punti-vendita__nav-next {
		display: none;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.mnk-punti-vendita {
		padding: 2em 1em;
	}

	.mnk-punti-vendita__title {
		font-size: 28px;
	}

	.mnk-punti-vendita__subtitle {
		font-size: 16px;
	}

	.mnk-punti-vendita__header {
		margin-bottom: 1.5em;
	}

	.mnk-pv-card__content {
		padding: 1em 1.25em 1.25em;
	}

	.mnk-pv-card__name {
		font-size: 1.15rem;
	}
}
