.binhluan .product-details {
	background: unset !important;
	box-shadow: unset !important;
	padding: unset !important;
	margin-bottom: 0px !important;
}

span.rating-text.countRating {
	color: var(--color-main2);
}

p.loiich {
	border: none !important;
}

.box-products-top.single-item iframe {
	width: 100%;
	height: 400px;
	border-radius: 10px;
}


.binhluan {
	width: 75%;
	margin: 0 auto;
	padding: 30px 0px;
}

.price-section ul li {
	list-style: disc;
	margin-left: 20px;
	font-size: 16px;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.binhluan .rating-form {
	background: white;
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #cdcdcd3b;
}

.binhluan a {
	color: var(--color-2);
}

.binhluan .rating-form:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.binhluan .form-header {
	text-align: center;
	margin-bottom: 30px;
}

.binhluan .form-header h2 {
	color: #1e293b;
	font-size: 33px;
	font-weight: 700;
	margin-bottom: 8px;
}

.binhluan .form-header p {
	color: #64748b;
	font-size: 16px;
}

.binhluan .product-info {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 10px 20px;
	background: linear-gradient(135deg, #f8fafc, #f1f5f9);
	border-radius: 12px;
	margin-bottom: 30px;
}

.binhluan .product-image {
	/* width: 60px; */
	/* height: 60px; */
	border-radius: 8px;
	overflow: hidden;
}

.binhluan .product-image img {
	width: 80px !important;
	height: 80px !important;
	object-fit: cover;
}

.binhluan .product-details h3 {
	color: #1e293b;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 4px !important;
}

.binhluan .product-details p {
	color: #64748b;
	font-size: 14px;
}

.binhluan .form-group {
	margin-bottom: 13px;
}

.binhluan .form-group label {
	display: block;
	color: #374151;
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 18px;
}

.binhluan .star-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.binhluan .stars-container {
	display: flex;
	gap: 4px;
}

.binhluan .star {
	font-size: 2.5rem !important;
	color: #e2e8f0 !important;
	cursor: pointer;
	transition: all 0.3s ease;
	user-select: none;
}

.binhluan .star:hover {
	transform: scale(1.1);
	color: #fbbf24 !important;
}

.binhluan .star.active {
	color: #fbbf24;
	text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.binhluan .star.hover {
	color: #fde68a;
	transform: scale(1.05);
}

.binhluan .rating-text {
	color: var(--color-main);
	font-weight: 600;
	font-size: 1.1rem;
	margin-left: 12px;
	min-width: 120px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.binhluan .rating-text.show {
	opacity: 1;
}

.binhluan .rating-labels {
	display: flex;
	justify-content: space-between;
	margin-top: 8px;
	font-size: 12px;
	color: #94a3b8;
}

.binhluan .quick-ratings {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 12px;
	margin-bottom: 20px;
}

.binhluan .quick-rating-btn {
	padding: 12px 16px;
	border: 1px solid #e5e7eb;
	background: white;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: #64748b;
}

.binhluan .quick-rating-btn:hover {
	border-color: var(--color-main);
	color: var(--color-main);
	transform: translateY(-1px);
}

.binhluan .quick-rating-btn.active {
	background: linear-gradient(135deg, var(--color-main), #4f46e5);
	color: white;
	border-color: var(--color-main);
}

.binhluan .comment-textarea {
	width: 100%;
	min-height: 120px;
	padding: 16px;
	border: 1px solid #e5e7eb;
	border-radius: 5px;
	font-family: inherit;
	font-size: 16px;
	line-height: 1.6;
	resize: vertical;
	transition: all 0.3s ease;
	background: #fafbfc;
}

.binhluan .comment-textarea:focus {
	outline: none;
	background: white;
}

.binhluan .comment-textarea::placeholder {
	color: #94a3b8;
}

.binhluan .char-count {
	text-align: right;
	font-size: 12px;
	color: #94a3b8;
	margin-top: 8px;
}

.binhluan .user-info {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.binhluan .input-field {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid #e5e7eb;
	border-radius: 5px;
	font-size: 16px;
	transition: all 0.3s ease;
	background: #fafbfc;
}

.binhluan .input-field:focus {
	outline: none;
	border-color: var(--color-main);
	background: white;
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.binhluan .checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.binhluan .checkbox-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.binhluan .custom-checkbox {
	position: relative;
	width: 20px;
	height: 20px;
}

.binhluan .custom-checkbox input {
	opacity: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.binhluan .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	background: #f1f5f9;
	border: 1px solid #e5e7eb;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.binhluan .custom-checkbox input:checked+.checkmark {
	background: linear-gradient(135deg, var(--color-main), #4f46e5);
	border-color: var(--color-main);
}

.binhluan .checkmark::after {
	content: '';
	position: absolute;
	display: none;
	left: 6px;
	top: 2px;
	width: 6px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.binhluan .custom-checkbox input:checked+.checkmark::after {
	display: block;
}

.binhluan .checkbox-item label {
	margin: 0;
	font-weight: 500;
	font-size: 14px;
	cursor: pointer;
}

.binhluan .submit-section {
	margin-top: 20px;
	text-align: center;
}

.binhluan .submit-btn {
	background: var(--color-main2);
	color: white;
	border: none;
	padding: 16px 40px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	min-width: 200px;
}

.binhluan .submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.binhluan .submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.binhluan .success-message {
	background: linear-gradient(135deg, #dcfce7, #bbf7d0);
	color: #166534;
	padding: 16px 20px;
	border-radius: 12px;
	text-align: center;
	font-weight: 600;
	margin-top: 20px;
	display: none;
	animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

section.dungtich ul li {
	list-style: none;
	margin-left: 0px;
}

section.dungtich ul {
	display: flex;
	gap: 0px 10px;
}

section.dungtich ul li.active span {
	background: linear-gradient(360deg, #347bbb, #2a4e9e);
	border: 1px solid #2866b0;
	color: #fff;
}

section.dungtich {
	display: flex;
	gap: 0px 10px;
	align-items: center;
}

.name-dungtich {
	font-weight: 600;
	color: #374151;
}

section.dungtich ul li span {
	padding: 5px 17px;
	font-size: 12px;
	border: 1px solid #cdcdcd;
	border-radius: 25px;
}

section.dungtich ul li span:hover {
	background: #1aace3;
	color: #fff;
	border: 1px solid #1aace3;
	cursor: pointer;
}

@media (max-width: 768px) {
	.binhluan .submit-btn {
		padding: 8px 10px;
	}

	.box-detail-sgc .quantity-selector {
		flex-wrap: wrap;
	}

	button.tab-btn {
		width: 100%;
		min-width: max-content;
		max-width: fit-content;
	}

	.box-detail-sgc .details-tabs {
		overflow-x: scroll;
	}

	.box-detail-sgc .product-details {
		padding: unset !important;
	}

	.box-detail-sgc .tab-panel.active {
		padding: 0;
	}

	.binhluan {
		width: 100%;
		padding: 20px 0px;
	}

	.binhluan .container {
		padding: 10px;
	}

	.binhluan .rating-form {
		padding: 24px;
	}

	.binhluan .user-info {
		grid-template-columns: 1fr;
	}

	.binhluan .star {
		font-size: 2rem;
	}

	.binhluan .quick-ratings {
		grid-template-columns: 1fr 1fr;
	}
}

.box-detail-sgc {
	padding-top: 30px;
	/* Product Details Styles */
	/* Specs Styles */
	/* Reviews Styles */
	/* Warranty Styles */
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.box-detail-sgc .breadcrumb {
	margin-bottom: 0px;
	font-size: 14px;
	color: #000000;
	padding: 10px;
	background: #eee;
	margin-bottom: 20px;
}

.box-detail-sgc .breadcrumb a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
}

.box-detail-sgc .breadcrumb a:hover {
	color: #4f46e5;
}

.box-detail-sgc .product-container {
	background: white;
	/* border-radius: 20px; */
	/* padding: 10px; */
	margin-bottom: 30px;
	/* box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04); */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.box-detail-sgc .product-layout {
	display: grid;
	grid-template-columns: calc(50% - 30px) 50%;
	gap: 30px;
	align-items: start;
}






.box-detail-sgc .badge {
	position: absolute;
	top: 20px;
	left: 20px;
	background: linear-gradient(135deg, #10b981, #059669);
	color: white;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.box-detail-sgc .product-info h1 {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 7px;
	line-height: 1.2;
}

.box-detail-sgc .rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 0px;
	justify-content: left;
}

.box-detail-sgc .stars {
	display: flex;
	gap: 2px;
	color: #ddd;
}

.box-detail-sgc .star {
	color: #fbbf24;
	font-size: 18px;
}

.box-detail-sgc .rating-text {
	color: #64748b;
	font-size: 14px;
}

.box-detail-sgc .price-section {
	margin-bottom: 10px;
}

.box-detail-sgc .current-price {
	font-size: 2.2rem;
	font-weight: 700;
	color: #dc2626;
	margin-right: 16px;
}

.box-detail-sgc .original-price {
	font-size: 1.4rem;
	color: #94a3b8;
	text-decoration: line-through;
	margin-right: 12px;
}

.box-detail-sgc .discount {
	background: linear-gradient(135deg, #fef3c7, #fde68a);
	color: #92400e;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
}

.box-detail-sgc .description {
	margin-bottom: 17px;
	color: #475569;
	font-size: 16px;
	line-height: 1.7;
}

.box-detail-sgc .features {
	margin-bottom: 30px;
}

.box-detail-sgc .features h3 {
	color: #1e293b;
	font-size: 23px;
	margin-bottom: 16px;
	font-weight: 600;
}

.box-detail-sgc .feature-list {
	display: grid;
	gap: 12px;
}

.box-detail-sgc .feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid #f1f5f9;
}

.box-detail-sgc .feature-item:last-child {
	border-bottom: none;
}

.box-detail-sgc .feature-icon {
	width: 20px;
	height: 20px;
	background: linear-gradient(135deg, #ddd6fe, #c4b5fd);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #7c3aed;
	font-size: 12px;
}

.box-detail-sgc .quantity-selector {
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 17px 0;
}

.box-detail-sgc .quantity-label {
	font-weight: 700;
	color: #374151;
}

.box-detail-sgc .quantity-controls {
	display: flex;
	align-items: center;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
}

.box-detail-sgc .qty-btn {
	width: 30px;
	height: 36px;
	border: none;
	background: #f9fafb;
	color: #6b7280;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 18px;
	font-weight: 600;
	padding: 0px;
}

.box-detail-sgc .qty-btn:hover {
	background: var(--color-main);
	color: white;
}

.box-detail-sgc .qty-input {
	width: 36px;
	height: 35px;
	border: none;
	text-align: center;
	font-weight: 600;
	color: #374151;
	background: white;
}

.box-detail-sgc .action-buttons {
	display: flex;
	gap: 16px;
}

.box-products-top.single-item img {
	height: 400px;
}

.box-detail-sgc .btn {
	padding: 10px 25px;
	border: none;
	border-radius: 26px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.box-detail-sgc .btn-primary {
	background: var(--color-main2);
	color: white;
	flex: 1;
	gap: 0px 10px;
}

.box-detail-sgc .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.box-detail-sgc .btn-secondary {
	background: transparent;
	color: var(--color-main);
	border: 2px solid var(--color-main);
	padding: 14px 32px;
}

.box-detail-sgc .btn-secondary:hover {
	background: var(--color-main);
	color: white;
}

.box-detail-sgc .shipping-info {
	background: #e4f2eb;
	padding: 20px;
	border-radius: 16px;
	margin-top: 30px;
	border-left: 4px solid var(--color-main2);
}

.box-detail-sgc .shipping-info h4 {
	color: var(--color-main2);
	margin-bottom: 8px;
	font-size: 21px;
}

.box-detail-sgc .shipping-info p {
	color: var(--color-main2);
	font-size: 14px;
}

.box-detail-sgc .product-details {
	background: white;
	border-radius: 20px;
	padding: 20px 0;
	margin-bottom: 30px;
}

@media (max-width: 768px) {
	.box-detail-sgc .product-layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.box-detail-sgc .product-container {
		padding: 10px 0;
		margin-bottom: 0;
	}

	.box-detail-sgc .product-details,
	.box-detail-sgc .product-details {
		margin-bottom: 0;
	}

	.box-detail-sgc .product-info h1 {
		font-size: 2rem;
		padding-top: 10px;
	}

	.box-detail-sgc .action-buttons {
		flex-direction: column;
	}

}


.box-detail-sgc .details-tabs {
	display: flex;
	border-bottom: 2px solid #ececec;
	margin-bottom: 30px;
	gap: 10px;
}

.box-detail-sgc .tab-btn {
	padding: 7px 24px;
	border: none;
	background: transparent;
	color: #64748b;
	font-weight: 600;
	cursor: pointer;
	border-radius: 8px 8px 0 0;
	transition: all 0.3s ease;
	position: relative;
	font-size: 17px;
}

.box-detail-sgc .tab-btn.active {
	color: #fff;
	background: var(--color-main2);
}

.box-detail-sgc .tab-btn.active::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--color-main2);
}

.box-detail-sgc .tab-btn:hover:not(.active) {
	color: #475569;
	background: #f8fafc;
}

.box-detail-sgc .tab-panel {
	display: none;
	animation: fadeIn 0.5s ease-out;
}

.box-detail-sgc .tab-panel.active {
	display: block;
	font-size: 16px;
}

.box-detail-sgc .tab-panel h3 {
	color: #1e293b;
	font-size: 21px;
	margin-bottom: 24px;
	font-weight: 700;
}

.box-detail-sgc .detail-content p {
	margin-bottom: 16px;
	line-height: 1.7;
	color: #475569;
}

.box-detail-sgc .detail-content h4 {
	color: #1e293b;
	font-size: 21px;
	margin: 24px 0 12px 0;
	font-weight: 600;
}

.box-detail-sgc .highlight-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.box-detail-sgc .highlight-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px;
	background: linear-gradient(135deg, #f8fafc, #f1f5f9);
	border-radius: 12px;
	transition: transform 0.3s ease;
}

.box-detail-sgc .highlight-item:hover {
	transform: translateY(-2px);
}

.box-detail-sgc .highlight-icon {
	font-size: 2rem;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #ddd6fe, #c4b5fd);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.box-detail-sgc .highlight-item h5 {
	color: #1e293b;
	font-size: 20px;
	margin-bottom: 4px;
	font-weight: 600;
}

.box-detail-sgc .highlight-item p {
	color: #64748b;
	font-size: 14px;
	margin: 0;
}

.box-detail-sgc .specs-grid {
	display: grid;
	gap: 16px;
}

.box-detail-sgc .spec-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
	border-bottom: 1px solid #f1f5f9;
}

.box-detail-sgc .spec-row:last-child {
	border-bottom: none;
}

.box-detail-sgc .spec-label {
	font-weight: 600;
	color: #374151;
	flex: 1;
}

.box-detail-sgc .spec-value {
	color: var(--color-main);
	font-weight: 600;
	text-align: right;
}

.box-detail-sgc .reviews-summary {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 40px;
	margin-bottom: 30px;
}

.box-detail-sgc .rating-overview {
	text-align: center;
}

.box-detail-sgc .big-rating {
	font-size: 3rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 8px;
}

.box-detail-sgc .stars-large {
	color: #fbbf24;
	font-size: 1.5rem;
	margin-bottom: 8px;
}

.box-detail-sgc .rating-bars {
	display: grid;
	gap: 8px;
}

.box-detail-sgc .rating-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
}

.box-detail-sgc .rating-bar span:first-child {
	width: 20px;
	color: #64748b;
}

.box-detail-sgc .rating-bar span:last-child {
	width: 30px;
	text-align: right;
	color: #64748b;
}

.box-detail-sgc .bar {
	flex: 1;
	height: 8px;
	background: #f1f5f9;
	border-radius: 4px;
	overflow: hidden;
}

.box-detail-sgc .fill {
	height: 100%;
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	border-radius: 4px;
	transition: width 0.5s ease;
}

.box-detail-sgc .review-item {
	border: 1px solid #f1f5f9;
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 16px;
	transition: box-shadow 0.3s ease;
}

.box-detail-sgc .review-item:hover {
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.box-detail-sgc .reviewer-info {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.box-detail-sgc .reviewer-avatar {
	width: 45px;
	height: 45px;
	background: linear-gradient(135deg, var(--color-main), #4f46e5);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
}

.box-detail-sgc .reviewer-info h5 {
	color: #1e293b;
	font-size: 18px;
	margin-bottom: 4px;
}

.box-detail-sgc .review-stars {
	color: #fbbf24;
	font-size: 14px;
}

.box-detail-sgc .review-date {
	color: #94a3b8;
	font-size: 12px;
}

.box-detail-sgc .warranty-content {
	display: grid;
	gap: 24px;
}

.box-detail-sgc .warranty-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 24px;
	background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
	border-radius: 12px;
	border-left: 4px solid #0ea5e9;
}

.box-detail-sgc .warranty-icon {
	font-size: 2rem;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #0ea5e9, #0284c7);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.box-detail-sgc .warranty-item h5 {
	color: #0c4a6e;
	font-size: 21px;
	margin-bottom: 8px;
	font-weight: 600;
}

.box-detail-sgc .warranty-item p {
	color: #0369a1;
	line-height: 1.6;
	margin: 0;
}
























.group-status {
	display: flex;
	flex-flow: wrap;
	gap: 20px;
}

.pro-vendor {
	position: relative;
	padding-left: 15px;
	font-size: 16px;
}

.group-status>div:before {
	content: '';
	position: absolute;
	background: rgba(17, 17, 17, 0.3);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	left: 0;
	top: 7px;
}

.group-status>div:before {
	content: '';
	position: absolute;
	background: rgba(17, 17, 17, 0.3);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	left: 0;
	top: 7px;
}

.group-status>div {
	position: relative;
	padding-left: 15px;
	font-size: 16px;
}

.productDetail--main .product-heading h1 {
	margin-bottom: 10px;
	display: inline-block;
}

.productGallery_slider {
	position: relative;
	margin-top: 15px;
}

.productGallery_slider .productList-slider {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 15px;
	grid-row-gap: 8px;
	align-items: start;
	align-content: space-between;
	justify-items: stretch;
	justify-content: center;
}

.productGallery_slider .productList-slider .gallery-item:first-child {
	grid-area: 1 / 1 / 3 / 3;
}

.productGallery_slider .productList-slider .gallery-item:nth-child(3)~.gallery-item {
	display: none;
}

.productGallery_slider .icon-gallery {
	position: absolute;
	bottom: 14px;
	right: 13px;
	height: 44px;
	padding: 12px 16px;
	border-radius: 200px;
	background: #fff;
	display: inline-flex;
	flex-wrap: nowrap;
	gap: 8px;
	align-items: center;
	color: #111111;
	cursor: pointer;
}

.productGallery_slider .productList-slider .gallery-item img {
	border-radius: 16px;
	width: 100%;
}

.product-heading {
	margin-bottom: 20px;
	padding-top: 20px;
}

.productDetail--content .productDetail--box {
	/* padding: 10px 0;
    margin-bottom: 10px;
    margin-top: 10px; */
}

.productDetail--content .product-description .box-title h2 {
	font-size: 24px;
	text-transform: uppercase;
	font-weight: 600;
	padding-bottom: 5px;
	margin-bottom: 10px;
	border-bottom: solid 1px #ccc;
}

.productDetail--content .product-description .description-content h3 {
	font-size: 20px;
}

#form-booking-pro {
	scroll-margin-block-start: 110px;
}

.productDetail--content .wrapbox-right .wrapbox-detail {
	position: -webkit-sticky;
	position: sticky;
	margin-top: 0px;
	top: 15px;
}

.productDetail--content .wrapbox-right .wrapbox-detail h1 {
	font-size: 20px;
	margin-bottom: 10px;
	color: #11321a;
	padding-bottom: 10px;
	border-bottom: solid 1px #eee;
	line-height: 1.3;
}

.productDetail--content .wrapbox-right .wrapbox-detail {
	padding: 20px;
	background: #fef6ed;
	border-radius: 16px;
	border: 1px solid #ff6b00;
}

.productDetail--content .product-price {
	display: flex;
	align-items: flex-start;
	margin-bottom: 13px;
}

.productDetail--content .product-price .pro-title {
	flex: 0 0 25%;
	margin-top: 7px;
}

.productDetail--content .product-price .pro-price {
	flex: 0 0 75%;
	max-width: 75%;
}

.productDetail--content .product-price .pro-price .percent-price {
	display: flex;
	align-items: center;
	gap: 10px;
}

.productDetail--content .product-price .pro-price .price {
	font-size: 21px;
	padding-bottom: 0px;
}

.productDetail--content .product-price .pro-price .pro-percent {
	color: #fff;
	font-weight: 600;
	font-size: 12px;
	z-index: 2;
	padding: 2px 8px;
	border-radius: 3px;
	background: #1aace3;
}

.productDetail--content .product-price .pro-price del {
	color: #a0a0a0;
	font-size: 18px;
}

.productDetail--content .product-price .pro-price del .person {
	color: #a0a0a0;
}

.productDetail--content .product-price .pro-price .person {
	font-size: 14px;
	color: #565;
}

.productDetail--content .contact-form .input-group {
	width: 100%;
	margin-bottom: 8px;
}

.productDetail--content .wrapbox-right .wrapbox-detail .form-booking input {
	border: 1px solid #ddd;
	border-radius: 8px;
	height: 43px;
	font-size: 16px;
}

.productDetail--content .contact-form .input-group input,
.contact-form .input-group textarea {
	color: #5c5c5c;
	height: 45px;
	width: 100%;
	font-weight: 500;
	padding: 8px 20px;
	background: #fff;
	border-radius: 4px;
	box-shadow: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}

.productDetail--content .wrapbox-right .wrapbox-detail .form-booking .pro-qty {
	display: flex;
	gap: 15px;
	align-items: center;
	margin-bottom: 10px;
	margin-top: 10px;
}

.productDetail--content .wrapbox-right .wrapbox-detail .form-booking .field-error {
	color: red;
}

.productDetail--content .field-error {
	position: absolute;
	bottom: -16px;
	font-size: 12px;
	color: #ff0000;
}

.productDetail--content .wrapbox-right .wrapbox-detail .form-booking .pro-total {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	gap: 15px;
}

.productDetail--content .wrapbox-right .wrapbox-detail .form-booking .pro-qty input {
	height: 35px;
	padding-left: 12px;
	width: 60px;
}

.productDetail--content .wrapbox-right .wrapbox-detail .form-booking .pro-qty label {
	margin-bottom: 0px;
}

.productDetail--content .wrapbox-right .wrapbox-detail .form-booking .pro-total .pro-num-total {
	font-size: 20px;
	font-weight: 600;
}










.flex-quantity {
	display: flex;
	align-items: end;
}

.custom.custom-btn-number {
	display: inline-flex;
	align-items: center;
}

.input_number_product {
	width: auto;
	position: relative;
	padding: 0;
	border: none;
	box-shadow: none;
	background-color: transparent;
	display: inline-flex;
}

.input_number_product {
	display: inline-flex;
	align-items: center;
	border-radius: 5px;
	margin-right: 10px;
}

button.btn_num.num_1.button.button_qty {
	font-size: 20px;
	line-height: 0px;
	border: solid 1px #e4e4e4;
	display: inline-block;
	width: 45px;
	height: 42px;
	background-color: #fff;
	float: left;
	color: #333;
	text-align: center;
	padding: 0px;
	font-size: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.button_qty {
	flex: 0 0 45px;
	height: 45px;
	display: flex;
	align-items: center;
	border: none;
	background: transparent;
	justify-content: center;
	text-align: center;
	width: 45px;
}

input.form-control.prd_quantity {
	display: block;
	border-radius: unset !important;
	color: #00090f;
	text-align: center;
	box-shadow: none;
	background: #fff;
	margin: 0;
	height: 42px !important;
	line-height: 42px;
	box-shadow: none;
	border-radius: 0px;
	font-size: 16px;
	width: 45px;
	padding: 0;
	border: none;
	border-top-width: medium;
	border-top-style: none;
	border-top-color: currentcolor;
	border-bottom-width: medium;
	border-bottom-style: none;
	border-bottom-color: currentcolor;
	border-bottom: solid 1px #ddd;
	border-top: solid 1px #ddd;
}

.wrapbox-detail .add-to-cartProduct {
	border-radius: 5px;
}

button.btn_num.num_2.button.button_qty {
	border-radius: 0;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	font-size: 20px;
	line-height: 0px;
	border: solid 1px #e4e4e4;
	display: inline-block;
	width: 35px;
	height: 42px;
	background-color: #fff;
	float: left;
	color: #333;
	text-align: center;
	padding: 0px;
	font-size: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.button_qty {
	flex: 0 0 45px;
	height: 45px;
	display: flex;
	align-items: center;
	border: none;
	background: transparent;
	justify-content: center;
	text-align: center;
	width: 45px;
}

.clearfix.form-group.box-cart {
	display: flex;
	align-items: center;
	gap: 0px 10px;
}

.wrap-addcart svg {
	width: 20px;
	height: 20px;
	margin-right: 8px;
}

.wrap-addcart button {
	font-size: 14px;
	background: #11321a;
	border-radius: 5px;
}

.product-gallery.boxlazy-img.gallery-item:nth-child(n + 2) img {
	height: 265px;
}

.wrap-addcart .wd-uppercase {
	color: #fff;
}


.productDetail--content .wraper-detail-products .product-price {
	flex-direction: column;
}

.wraper-detail-products .prices-products {
	width: 100%;
	display: flex;
	align-items: center;
}

.crumina-submit {
	margin-left: 2px;
}

.wraper-detail-products .box-desc-products h2 {
	font-size: 22px;
	color: #000;
	font-weight: 700;
	margin-bottom: 5px;
}

section.room.bg--section-color .products-card-content .desc ul li {
	margin-left: 20px;
	padding-left: 0px;
	background: unset;
	list-style: disc;
}

.wraper-detail-products .box-desc-products p {
	font-size: 14px;
	line-height: 1.3;
}

.wraper-detail-products .box-desc-products {
	padding: 10px 0px;
}

.productGallery_slider .icon-gallery a {
	display: flex;
}

.content-detai ul li {
	font-size: 13px;
	margin: 5px;
	list-style: disc;
	margin-left: 10px;
}

.products-card-content .desc ul li:nth-child(n + 4) {
	display: none;
}

.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);
}

/* .box-detail-sgc .description strong {
        width: 74px;
       
    } */
.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: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;
}





































.box-member-detail-products .ctnr {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	padding: 30px 10px 0px;
	/* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
	backdrop-filter: blur(10px);
}

.box-member-detail-products .header {
	text-align: center;
	margin-bottom: 30px;
	position: relative;
}

.box-member-detail-products .header-title {
	background: #FECB38;
	color: #000;
	padding: 12px 30px;
	border-radius: 25px;
	font-size: 16px;
	font-weight: 600;
	display: inline-block;
	position: relative;
	box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.box-member-detail-products .header-title::before {
	content: '';
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #FECB38;
}

.box-member-detail-products .features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	margin-top: 20px;
}

.box-member-detail-products .feature-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-member-detail-products .feature-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.box-member-detail-products .icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	flex-shrink: 0;
}

.box-member-detail-products .icon-blue {
	background: linear-gradient(45deg, #4285f4, #6fa8f7);
}

.box-member-detail-products .icon-red {
	background: linear-gradient(45deg, #ea4335, #f06659);
}

.box-member-detail-products .icon-green {
	background: linear-gradient(45deg, #34a853, #5cbf75);
}

.box-member-detail-products .feature-text {
	flex: 1;
}

.box-member-detail-products .feature-title {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin-bottom: 4px;
	line-height: 1.3;
}

.box-member-detail-products .feature-subtitle {
	font-size: 13px;
	color: #666;
	line-height: 1.4;
}

.box-member-detail-products .floating-shape {
	position: absolute;
	border-radius: 50%;
	opacity: 0.1;
	pointer-events: none;
}

.box-member-detail-products .shape-1 {
	width: 60px;
	height: 60px;
	background: #4285f4;
	top: 10%;
	left: 5%;
	animation: float 6s ease-in-out infinite;
}

.box-member-detail-products .shape-2 {
	width: 40px;
	height: 40px;
	background: #ea4335;
	top: 20%;
	right: 10%;
	animation: float 8s ease-in-out infinite reverse;
}

.box-member-detail-products .shape-3 {
	width: 50px;
	height: 50px;
	background: #34a853;
	bottom: 15%;
	left: 8%;
	animation: float 7s ease-in-out infinite;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-20px);
	}
}


.post-new__price {
	color: var(--color-main);
	font-weight: 600;
	font-size: 13px;
}

@media (max-width: 768px) {
	.box-member-detail-products .container {
		padding: 20px;
		margin: 10px;
	}

	.box-detail-sgc .rating {
		flex-wrap: wrap;
	}

	.box-member-detail-products .features {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.box-member-detail-products .feature-item {
		padding: 15px;
	}

	.box-member-detail-products .header-title {
		font-size: 14px;
		padding: 10px 25px;
	}
}

@media (min-width: 992px) {
	.productDetail--content .wrapbox-right {
		padding-left: 15px;
		padding-right: 0;
		margin-top: 30px;
	}
}

@media (min-width: 992px) {
	.productDetail--content .wrapbox-left .wrapbox-detail {
		padding-right: 10px;
	}
}

@media(max-width:990px) {
	.product-gallery.boxlazy-img.gallery-item:nth-child(n + 2) img {
		height: auto;
	}

	div#form-booking-pro {
		order: 1;
	}

	.box-member-detail-products .header {
		padding: 0px;
	}

	.box-member-detail-products .ctnr {
		padding: 30px 0px 0px;
	}

	.wrapbox-left {
		order: 2;
	}

	.productDetail--content .wrapbox-right .wrapbox-detail h1 {
		font-size: 20px;
	}

	.productDetail--content .product-price .pro-price .price {
		font-size: 19px;
	}

	.productDetail--content .wrapbox-right .wrapbox-detail .form-booking .pro-total .pro-num-total {
		font-size: 18px;
	}

	.addcart-area button {
		font-size: 15px;
	}

	div#form-booking-pro {
		order: 1;
	}

	.wrapbox-left {
		order: 2;
	}

	div#productCarousel-slider {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(2, 1fr);
		grid-row-gap: 5px;

	}

	.productGallery_slider .icon-gallery {
		height: 35px;
	}

	.productDetail--main .product-heading h1 {
		margin-top: 10px;
	}

	.productDetail-information>.ctnr {
		padding: 0;
	}
}

@media(max-width:550px) {
	.product-gallery.boxlazy-img.gallery-item:nth-child(n + 2) img {
		height: 166px;
	}
}



.pro-total label {
	margin-bottom: 0px;
}

.addcart-area button {
	position: relative;
	display: inline-block;
	z-index: 1;
	overflow: hidden;
	padding: 12px 20px;
	line-height: normal;
	color: #ffffff;
	border-radius: 20px;
	background: #1aace3;
	border: 0;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	letter-spacing: 1px;
	/* text-transform: uppercase; */
	outline: none !important;
	-webkit-transition: all 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	transition: all 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	width: 100%;
}

.addcart-area button:hover {
	background: #1c5694;
}

.wrap-addcart svg path {
	stroke: #fff;
}

.addcart-area button {
	width: 100%;
}

.addcart-area {
	width: 100%;
}

.model-content-details .custom.custom-btn-number {
	margin-bottom: 20px;
}

.item-product-lienquan {
	padding: 0px 5px;
	overflow: hidden;
}

.item-product-lienquan img {
	height: 200px;
	border: 1px solid #eee;
}

div#description ul li {
	list-style: disc;
	margin-left: 20px;
}

div#description ul li {
	list-style: disc;
	margin-left: 30px;
}

.list-product-by-category h2 {
	text-align: center;
	font-size: 30px;
	text-transform: uppercase;
}

.box-products-top.single-item {
	height: 430px;
	width: calc(100% - 100px);
}

.product-image .product-lienquan {
	width: 100px;
}

.box-products-top.single-item .slick-slide {
	height: auto !important;
	position: relative;
	overflow: hidden;
}

.box-products-top.single-item .slick-slide::before {
	content: "";
	padding-top: 100%;
	display: block;
}

.box-products-top.single-item .slick-slide img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.box-detail-sgc .description p a {
	color: #1aace3;
}

.sec-relate-product {
	padding: 40px 0;
}

.sec-relate-product .c-ttl__01 {
	margin-bottom: 20px;
}

.box-detail-sgc .tab-panel.active ul li {
	padding-bottom: 10px;
}

blockquote {
	font-style: italic;
	padding: 5px 0 5px 20px;
	border-left: 5px solid #ccc;
}

blockquote:not(:last-child) {
	margin-bottom: 10px;
}



.thuonghieu-detail p {
	font-size: 14px;
}

.thuonghieu-detail .text-strong {
	width: unset;
}

.tab-content table:not(:last-child) {
	margin-bottom: 10px;
}

.tab-content table td,
.tab-content table th {
	padding: 5px;
}

@media(max-width:990px) {
	.tab-content table tr td {
		/* width: 100% !important;
		display: block; */
	}

	.box-detail-sgc-left {
		display: none;
	}

	.sec-relate-product {
		padding: 20px 0;
	}

	.binhluan .form-header h2 {
		font-size: 26px;
	}

	.box-detail-sgc .tab-panel h3 {
		font-size: 18px;
	}

	.binhluan .form-header p {
		font-size: 13px;
	}
}
