.sec-product {
	padding: 30px 0;
	background: #111;
}

/* product detail */
.product-image {}

.product-image__for-item {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	border: 0;
}

.product-image__for-item::before {
	content: "";
	padding-top: 125.5%;
	display: block;
}

.product-image__for-item img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-image__nav-item {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	border: 0;
}

.product-image__nav-item::before {
	content: "";
	padding-top: 130%;
	display: block;
}

.product-image__nav-item img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	/* height: 100%; */
	object-fit: cover;
}

/* .product-image__nav {
		margin-top: 15px;
	} */

.product-image__nav .slick-slide {
	margin: 5px 0px;
}

.product-image__nav .slick-list {
	margin: -5px 0px;
}

@media (min-width: 992px) {
	.product-image {
		flex-direction: row-reverse;
	}
}

@media (max-width: 768px) {
	.sec-product {
		padding: 20px 0;
	}
}


.stars-container {
	direction: rtl;
	display: flex;
	gap: 5px;
}

.stars-container input {
	display: none;
}

.stars-container label {
	font-size: 2rem;
	color: #ccc;
	cursor: pointer;
	transition: color 0.2s;
}

.stars-container input:checked~label,
.stars-container label:hover,
.stars-container label:hover~label {
	color: gold;
}

.options-container {
	display: flex;
	gap: 10px;
	align-items: center;
}

.option-item {
	border: 2px solid #ddd;
	border-radius: 6px;
	padding: 15px 20px;
	text-align: center;
	cursor: pointer;
	background: white;
	transition: all 0.2s ease;
	position: relative;
	min-width: 120px;
}

.option-item:hover {
	border-color: #007bff;
}

.option-item.selected {
	border-color: #1aace3;
	background: #1aace3;
	color: white;
}

.popular-badge {
	background: #ff4757;
	color: white;
	font-size: 10px;
	padding: 4px 8px;
	border-radius: 10px;
	font-weight: bold;
	white-space: nowrap;
	margin-bottom: 8px;
}

.duration {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 5px;
}

.price {
	font-size: 16px;
	font-weight: bold;
	color: #333;
}

.option-item.selected .price {
	color: white;
}

.unit {
	font-size: 12px;
	color: #666;
}

.option-item.selected .unit {
	color: rgba(255, 255, 255, 0.9);
}

.text-strong {
	width: 100px;
	display: inline-block;
}

.box-detail-sgc .description p {
	padding-bottom: 5px;
	border-bottom: 1px solid #cdcdcd;
	padding-top: 5px;
}

@media (max-width: 992px) {
	.product-image > .row {
		flex-direction: column-reverse;
	}

	.product-image__nav .slick-slide {
		margin: 0 5px;
	}

	.product-image__nav .slick-list {
		margin: 0 -5px;
	}

	.product-image__nav {
		margin-top: 10px;
	}
}

@media(max-width:768px) {
	.box-detail-sgc .product-layout {
		display: block;
	}

	.product-image__nav-item {
		margin: 10px 5px;
	}

	.product-image {
		display: block;
	}

	.product-info .title {
		flex-wrap: wrap;
		width: 100%;
	}
}

@media (max-width: 480px) {
	.options-container {
		flex-direction: column;
		width: 100%;
	}

	.option-item {
		width: 100%;
	}
}

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