/* ─── Homepage Sections (Site) ── Mobile First ───────────────────────── */

/* Section headers */
.section-header {
	padding-top: 10px;
}

.section-title {
	font-size: 1.3rem;
	color: #333;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}

.section-title-line {
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #ff6b35, #f7c948);
	margin: 0;
	border-radius: 2px;
}

/* Banner */
.banner-section-link {
	transition: opacity 0.2s ease;
}

.banner-section-link:hover {
	opacity: 0.92;
}

/* Carousel (Swiper) */
.homepage-section.homepage-section--carousel > .container {
	padding-left: 5px;
	padding-right: 5px;
}
.homepage-section.homepage-section--carousel > .container .section-header {
	padding-left: 7px;
}
.carousel-swiper {
	position: relative !important;
}
.carousel-swiper .swiper-button-prev,
.carousel-swiper .swiper-button-next {
	display: none;
}
.swiper {
	margin-top: -7px;
	padding: 7px 7px 30px 7px !important;
}
.swiper-pagination {
	bottom: 0 !important;
}
.carousel-swiper .swiper-pagination-bullet-active {
	background: #ff6b35;
}

/* Collections */
.collections-swiper {
	position: relative !important;
}
.collections-swiper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 100%;
  background: linear-gradient(90deg, rgba(243, 245, 246, 1) 25%, rgba(243, 245, 246, 0) 100%);
  pointer-events: none;
  z-index: 2;
}
.collections-swiper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  background: linear-gradient(270deg, rgba(243, 245, 246, 1) 25%, rgba(243, 245, 246, 0) 100%);
  pointer-events: none;
  z-index: 2;
}
.collections-swiper .swiper-button-prev,
.collections-swiper .swiper-button-next {
	display: none;
}
.collections-swiper .swiper-pagination-bullet-active {
	background: #ff6b35;
}

.collection-card {
	transition: transform 0.2s ease;
}

.collection-card:hover {
	transform: translateY(-5px);
}

.collection-card__image img {
	width: auto;
	height: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	border: 5px solid #f0f0f0;
	transition: border-color 0.2s ease;
}

.collection-card:hover .collection-card__image img {
	border-color: #08dd76;
	box-shadow: 0 4px 12px rgba(17, 190, 75, 0.35);
}

.collection-card__placeholder {
	width: 150px;
	height: 150px;
	background-color: #f8f9fa;
	margin: 0 auto;
	border: 3px solid #e9ecef;
}

.collection-card__name {
	font-size: 0.95rem;
	transition: color 0.2s ease;
}

.collection-card:hover .collection-card__name {
	color: #ff6b35 !important;
}

/* Botão "Ver Mais" */
.btn-see-more {
	background-color: #00ff85;
	color: #111;
	border: none;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 14px rgba(0, 255, 133, 0.3);
	padding: 15px;
	transition:
		background-color 0.25s ease,
		transform 0.25s ease,
		box-shadow 0.25s ease;
}
.btn-see-more:hover {
	background-color: #08bb64 !important;
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(8, 187, 100, 0.4);
}
.btn-see-more:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(8, 187, 100, 0.3);
}

/* ─── Responsive (Bootstrap breakpoints – mobile first) ──────────────── */

/* sm - Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* md - Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	.section-title {
		font-size: 1.6rem;
	}

	.carousel-swiper .swiper-button-prev,
	.carousel-swiper .swiper-button-next,
	.collections-swiper .swiper-button-prev,
	.collections-swiper .swiper-button-next {
		display: flex;
		color: #333;
		background: rgba(255, 255, 255, 0.9);
		width: 40px;
		height: 40px;
		border-radius: 50%;
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
		transition: background 0.2s ease;
	}
	.carousel-swiper .swiper-button-prev,
	.collections-swiper .swiper-button-prev {
		left: 20px;
	}
	.carousel-swiper .swiper-button-next,
	.collections-swiper .swiper-button-next {
		right: 20px;
	}
	.carousel-swiper .swiper-button-prev::after,
	.carousel-swiper .swiper-button-next::after,
	.collections-swiper .swiper-button-prev::after,
	.collections-swiper .swiper-button-next::after {
		font-size: 16px;
		font-weight: 700;
	}
	.carousel-swiper .swiper-button-prev:hover,
	.carousel-swiper .swiper-button-next:hover,
	.collections-swiper .swiper-button-prev:hover,
	.collections-swiper .swiper-button-next:hover {
		background: #00ff85;
		color: #000;
		box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
	}
}

/* lg - Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
	.btn-see-more {
		font-size: 1.2rem;
		padding: 15px 30px;
	}
}

/* xl - X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* xxl - XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
}
