/**
 * Top Selling Products Section Styles - Kloira Homepage
 * Wrapper styles for the top selling products slider
 *
 * @package Kloira
 * @since 1.0.0
 */

/* ==========================================================================
   Top Selling Section
   ========================================================================== */

.top-selling-section {
	width: 100%;
	padding: 80px 0;
	background: #FFFFFF;
}

/* Reduce gap between consecutive product slider blocks */
.product-slider-block + .product-slider-block {
	padding-top: 20px; /* 80px bottom from previous + 20px top = 100px total gap */
}

.top-selling-section__container {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0;
}

/* ==========================================================================
   Header
   ========================================================================== */

.top-selling-section__header {
	text-align: center;
	margin-bottom: 40px;
}

.top-selling-section__title {
	font-family: 'DM Serif Display', Georgia, serif;
	font-style: normal;
	font-weight: 400;
	font-size: 44px;
	line-height: 60px;
	color: #111111;
	margin: 0;
}

/* ==========================================================================
   Slider Override - Remove nested section padding
   ========================================================================== */

.top-selling-section__slider .ksq-product-slider {
	padding: 0;
}

.top-selling-section__slider .ksq-product-slider__container {
	padding: 0;
}

.top-selling-section__slider .ksq-product-slider__title {
	display: none;
}

/* ==========================================================================
   Footer / Explore All Button
   ========================================================================== */

.top-selling-section__footer {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.top-selling-section__button {
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 16px 32px;
	gap: 12px;
	background: #FFFFFF;
	border: 1.5px solid #FF5100;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.top-selling-section__button:hover {
	background: #FF5100;
	text-decoration: none;
}

.top-selling-section__button span {
	font-family: "Roboto Flex", sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: #111111;
	transition: color 0.3s ease;
}

.top-selling-section__button:hover span {
	color: #FFFFFF;
}

.top-selling-section__button svg {
	width: 10px;
	height: 10px;
	color: #111111;
	transition: color 0.3s ease;
	transform: rotate(0deg);
}

.top-selling-section__button:hover svg {
	color: #FFFFFF;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 1200px) {
	.top-selling-section {
		padding: 60px 0;
	}
	
	.top-selling-section__title {
		font-size: 36px;
		line-height: 48px;
	}
	
	.top-selling-section__header {
		margin-bottom: 32px;
	}
	
	.top-selling-section__footer {
		margin-top: 32px;
	}
}

@media (max-width: 767px) {
	.top-selling-section {
		padding: 40px 0;
	}
	
	.top-selling-section__container {
		padding: 0 16px;
	}
	
	.top-selling-section__title {
		font-size: 28px;
		line-height: 36px;
	}
	
	.top-selling-section__header {
		margin-bottom: 24px;
	}
	
	.top-selling-section__footer {
		margin-top: 24px;
	}
	
	.top-selling-section__button {
		padding: 12px 24px;
	}
	
	.top-selling-section__button span {
		font-size: 14px;
		line-height: 17px;
	}
}
