/* Home Page Styles */
/* CSS Variables for maintainability */
:root {
	--home-slider-height-desktop: 330px;
	--home-slider-height-tablet: 290px;
	--home-slider-margin-top: 16px;
	--home-slider-margin-bottom: 54px;
	--swiper-btn-size: 36px;
	--swiper-btn-icon-size: 24px;
	--swiper-btn-offset: 30px;
	--swiper-btn-bg: rgba(0, 0, 0, 0.6);
	--swiper-btn-bg-hover: #20B1B1;
	--swiper-transition: 0.3s opacity;
	--video-section-padding: 60px;
	--video-title-padding: 24px;
	--video-text-color: #666C7C;
	--video-text-size: 14px;
	--video-text-line-height: 22px;
	--video-width-large: 825px;
	--tag-video-margin: 10px 0px 0px 0px;
	--tag-video-img-width: 400px;
	--responsive-margin-top: 54px;
}

/* Swiper Slider Styles */
#home_slider {
	position: relative;
	margin-top: var(--home-slider-margin-top) !important;
	margin-bottom: var(--home-slider-margin-bottom) !important;
	overflow: hidden;
}

#home_slider .swiper-wrapper {
	display: flex;
	height: var(--home-slider-height-desktop);
	margin-bottom: 0;
}

@media screen and (max-width: 1300px) {
	#home_slider .swiper-wrapper {
		height: var(--home-slider-height-tablet);
	}
}

@media screen and (min-width: 1200px) {
	#home_slider .swiper-wrapper {
		height: var(--home-slider-height-desktop);
	}
}

.swiper-slide {
	flex-shrink: 0;
	display: flex;
	list-style: none;
}

.slide-image-wrapper {
	display: block;
	width: 100%;
	cursor: pointer;
}

.slide-image {
	display: block;
	border-radius: 6px;
}

#home_slider:hover .swiper-btn {
	opacity: 1;
}

.swiper-btn {
	position: absolute;
	top: 50%;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--swiper-btn-size);
	height: var(--swiper-btn-size);
	margin-top: calc(var(--swiper-btn-size) / -2);
	text-align: center;
	background: var(--swiper-btn-bg);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	opacity: 0;
	transition: var(--swiper-transition);
}

.swiper-btn:hover {
	background: var(--swiper-btn-bg-hover);
}

.swiper-btn:focus {
	outline: 2px solid var(--swiper-btn-bg-hover);
	outline-offset: 2px;
}

.swiper-prev-btn {
	left: var(--swiper-btn-offset);
}

.swiper-next-btn {
	right: var(--swiper-btn-offset);
}

.swiper-btn-icon {
	width: var(--swiper-btn-icon-size);
	height: var(--swiper-btn-icon-size);
}

/* Video Section Styles */
.sld-home-video {
	padding-bottom: var(--video-section-padding);
}

.sld-home-video-title {
	padding-bottom: var(--video-title-padding);
}

.sld-home-video .tag_text {
	color: var(--video-text-color);
	font-size: var(--video-text-size);
	margin: 0;
	line-height: var(--video-text-line-height);
}

.sld-home-video .col-sm-6:first-child {
	width: var(--video-width-large) !important;
}

.sld-home-video .col-sm-6:last-child {
	width: calc(100% - var(--video-width-large)) !important;
}

.responsive-margin-top-45 {
	margin-top: var(--responsive-margin-top) !important;
}

.responsive-margin-top-45 div {
	padding-bottom: 0 !important;
}

.tag_video {
	margin: var(--tag-video-margin);
}

.tag_video img {
	max-width: 100%;
	width: var(--tag-video-img-width);
	cursor: pointer;
}

/* Price Highlight */
.sld-home-product .sld_goods_text .price {
	font-weight: bold;
	color: inherit;
}

