.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 20px;
	background-color: white;
}

.detail-top-member .product-wrapper {
	display: grid;
	grid-template-columns: 49% 49%;
	gap: 24px;
	margin-bottom: 30px;
}

.detail-top-member .image-section {
	position: relative;
	margin-bottom: 20px;
}

.detail-top-member .discount-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background-color: #e74c3c;
	color: white;
	padding: 5px 12px;
	border-radius: 20px;
	font-weight: bold;
	font-size: 14px;
	z-index: 10;
}

.detail-top-member .main-image {
	width: 100%;
	background: linear-gradient(135deg, #7ba89e 0%, #c8d8d5 100%);
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 15px;
	position: relative;
}

.detail-top-member .main-image img {
	width: 100%;
	height: 515px;
	display: block;
}


.detail-top-member .thumbnail {
	width: 130px;
	height: 130px;
	border: 2px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	transition: border-color 0.3s;
	margin: 0px 5px;
}

.detail-top-member .thumbnail.active {
	border-color: #06c;
}

.detail-top-member .thumbnail:hover {
	border-color: #06c;
}

.detail-top-member .thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.detail-top-member .product-info h1 {
	font-size: 28px;
	margin-bottom: 6px;
	line-height: 1.3;
}

.detail-top-member .rating {
	display: flex;
	align-items: center;
	gap: 3px;
	margin-bottom: 5px;
}

.detail-top-member .stars {
	color: #ffa500;
	font-size: 16px;
}

.detail-top-member .review-count {
	color: #666;
	font-size: 14px;
}

.detail-top-member .review-link {
	color: #06c;
	font-size: 14px;
	text-decoration: none;
}

.detail-top-member .price-section {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 0px 16px;
}

.detail-top-member .current-price {
	font-size: 30px;
	color: #e74c3c;
	font-weight: bold;
}

.detail-top-member .original-price {
	font-size: 16px;
	color: #999;
	text-decoration: line-through;
}

.detail-top-member .vat-included {
	color: #fff;
	font-size: 11px;
	margin-top: 5px;
	display: flex;
	align-items: center;
	gap: 5px;
	background: #27ae60b8;
	padding: 5px 8px;
	border-radius: 3px;
}

.detail-top-member .vat-included::before {
	content: "\2713";
	font-weight: bold;
}

.detail-top-member .variant-section {
	margin-bottom: 25px;
}

.detail-top-member .variant-label {
	font-weight: 600;
	margin-bottom: 12px;
	display: block;
}

.detail-top-member .variant-options {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.detail-top-member .variant-btn {
	padding: 10px 20px;
	border: 2px solid #ddd;
	background: white;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s;
	font-size: 14px;
}

.detail-top-member .variant-btn.active {
	border-color: #06c;
	color: #06c;
	background: #e6f2ff;
}

.detail-top-member .variant-btn:hover {
	border-color: #06c;
}

.detail-top-member .action-buttons {
	display: flex;
	gap: 15px;
	margin-bottom: 25px;
}

.detail-top-member .buy-now-btn {
	flex: 1;
	background: #e74c3c;
	color: white;
	border: none;
	padding: 15px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s;
}

.detail-top-member .buy-now-btn:hover {
	background: #c0392b;
}

.detail-top-member .buy-now-btn .subtitle {
	display: block;
	font-size: 12px;
	font-weight: normal;
	margin-top: 3px;
}

.detail-top-member .installment-btn {
	padding: 15px 25px;
	background: white;
	border: 2px solid #e74c3c;
	color: #e74c3c;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.detail-top-member .installment-btn:hover {
	background: #fee;
}

.detail-top-member .installment-btn .subtitle {
	display: block;
	font-size: 11px;
	font-weight: normal;
}

.detail-top-member .features-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 15px;
}

.detail-top-member .feature-box {
	padding: 15px;
	background: #f8f9fa;
	border-radius: 8px;
	border: 1px solid #cdcdcd73;
}

.detail-top-member .feature-title {
	font-weight: 600;
	margin-bottom: 10px;
	color: #06c;
	display: flex;
	align-items: center;
	gap: 8px;
}

.detail-top-member .feature-title::before {
	content: "\2713";
	color: #06c;
	font-weight: bold;
}

.detail-top-member .feature-item {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 14px;
	color: #555;
}

.detail-top-member .feature-item::before {
	content: "\2022";
	color: #27ae60;
	font-size: 12px;
	margin-top: 2px;
}

.detail-top-member .highlights {
	background: #eff6ff;
	padding: 15px;
	border-radius: 8px;
	border: 1px solid #cdcdcd73;
}

.detail-top-member .highlights h3 {
	margin-bottom: 10px;
	font-size: 18px;
}

.detail-top-member .highlights ul {
	list-style: none;
}

.detail-top-member .highlights li {
	padding: 5px 0;
	padding-left: 25px;
	position: relative;
	font-size: 14px;
	line-height: 1.6;
}

.detail-top-member .highlights li::before {
	content: "\2022";
	position: absolute;
	left: 8px;
	color: #e74c3c;
	font-weight: bold;
}
.review-btn.btn-menu-mobile__2 {
    text-align: center;
}
.detail-bottom-custum .left-content {
	flex: 1;
	background: white;
	border-radius: 8px;
}

.detail-bottom-custum .right-sidebar {
	width: 350px;
	position: sticky;
	top: 60px;
	height: 100%;
}

.detail-bottom-custum .tabs {
	display: flex;
	border-bottom: 2px solid #e0e0e0;
	margin-bottom: 30px;
	justify-content: left;
}

.detail-bottom-custum .tab {
	padding: 8px 20px;
	cursor: pointer;
	font-weight: 500;
	color: #666;
	border-bottom: 3px solid transparent;
	margin-bottom: -1px;
}

.detail-bottom-custum .tab.active {
	color: #06c;
	border-bottom-color: #06c;
}

.detail-bottom-custum h2 {
	font-size: 20px;
	margin-bottom: 15px;
	color: #333;
}

.detail-bottom-custum .description {
	color: #666;
	margin-bottom: 30px;
	font-size: 15px;
}

.detail-bottom-custum .product-image {
	width: 100%;
	margin-bottom: 30px;
	border-radius: 8px;
}

.detail-bottom-custum h3 {
	font-size: 18px;
	margin-bottom: 15px;
	color: #333;
}

.detail-bottom-custum .feature-text {
	color: #666;
	margin-bottom: 30px;
	font-size: 15px;
}

.detail-bottom-custum .btn-more {
	display: inline-block;
	padding: 12px 30px;
	border: 2px solid #06c;
	color: #06c;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s;
}

.detail-bottom-custum .btn-more:hover {
	background: #06c;
	color: white;
}

.detail-bottom-custum .rating-section {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 2px solid #e0e0e0;
}

.detail-bottom-custum .rating-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 30px;
}

.detail-bottom-custum .rating-header svg {
	width: 24px;
	height: 24px;
	fill: #06c;
}

.detail-bottom-custum .rating-header h2 {
	margin: 0;
	color: #333;
}

.detail-bottom-custum .rating-summary {
	display: flex;
	gap: 50px;
	margin-bottom: 40px;
	align-items: center;
}

.detail-bottom-custum .rating-score {
	text-align: center;
}

.detail-bottom-custum .score-number {
	font-size: 56px;
	font-weight: 700;
	color: #333;
}

.detail-bottom-custum .score-max {
	font-size: 28px;
	color: #999;
}

.detail-bottom-custum .stars {
	display: flex;
	gap: 3px;
	margin: 10px 0;
	justify-content: center;
}

.detail-bottom-custum .star {
	color: #ffa500;
	font-size: 20px;
}

.detail-bottom-custum .total-reviews {
	color: #666;
	font-size: 14px;
}

.detail-bottom-custum .rating-bars {
	flex: 1;
}

.detail-bottom-custum .rating-bar {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 12px;
}

.detail-bottom-custum .bar-label {
	font-size: 14px;
	color: #666;
	min-width: 60px;
}

.detail-bottom-custum .bar-container {
	flex: 1;
	height: 8px;
	background: #e0e0e0;
	border-radius: 4px;
	overflow: hidden;
}

.detail-bottom-custum .bar-fill {
	height: 100%;
	background: #4caf50;
	border-radius: 4px;
	transition: width 0.3s;
}

.detail-bottom-custum .bar-percentage {
	font-size: 14px;
	color: #666;
	min-width: 40px;
	text-align: right;
}

.detail-bottom-custum .review {
	padding: 25px 0;
	border-bottom: 1px solid #e0e0e0;
}

.detail-bottom-custum .review:last-child {
	border-bottom: none;
}

.detail-bottom-custum .review-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.detail-bottom-custum .reviewer-name {
	font-weight: 600;
	color: #333;
}

.detail-bottom-custum .review-date {
	color: #999;
	font-size: 14px;
}

.detail-bottom-custum .review-stars {
	display: flex;
	gap: 2px;
	margin-bottom: 10px;
}

.detail-bottom-custum .review-text {
	color: #666;
	font-size: 15px;
}

.detail-bottom-custum .btn-show-all {
	/* width: 100%; */
	padding: 15px;
	margin-top: 30px;
	border: 2px solid #06c;
	background: white;
	color: #06c;
	border-radius: 25px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s;
	display: inline-block;
}

.detail-bottom-custum .btn-show-all:hover {
	background: #06c;
	color: white;
}

.detail-bottom-custum .tab-content {
	display: none;
}

.detail-bottom-custum .tab-content.active {
	display: block;
}

.detail-bottom-custum .specs-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 30px;
}

.detail-bottom-custum .specs-table tr {
	border-bottom: 1px solid #e0e0e0;
}

.detail-bottom-custum .specs-table td {
	padding: 15px;
	font-size: 15px;
}

.detail-bottom-custum .specs-table td:first-child {
	font-weight: 600;
	color: #333;
	width: 40%;
}

.detail-bottom-custum .specs-table td:last-child {
	color: #666;
}

.detail-bottom-custum .video-container {
	margin-bottom: 30px;
}

.detail-bottom-custum .video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	background: #000;
	border-radius: 8px;
	margin-bottom: 20px;
}

.detail-bottom-custum .video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.detail-bottom-custum .video-title {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
}

.detail-bottom-custum .video-description {
	font-size: 14px;
	color: #666;
	margin-bottom: 20px;
}

.detail-bottom-custum .news-box {
	color: white;
	border-radius: 8px;
	margin-bottom: 20px;
	padding: unset;
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.detail-bottom-custum .news-box-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 5px;
	padding: 15px 10px;
	background: #06c;
}

.detail-bottom-custum .news-box-icon {
	width: 24px;
	height: 24px;
}

.detail-bottom-custum .news-box h3 {
	color: white;
	font-size: 18px;
	margin: 0;
}

.detail-bottom-custum .news-item {
	display: flex;
	gap: 15px;
	padding: 15px 10px;
	border-bottom: 1px solid rgb(0 0 0 / 20%);
	background: unset;
	box-shadow: unset;
	border-radius: unset;
}

.detail-bottom-custum .news-item:last-child {
	border-bottom: none;
}

.detail-bottom-custum .news-icon {
	width: 50px;
	height: 50px;
	background: rgb(157 157 157 / 20%);
	border-radius: 8px;
	flex-shrink: 0;
}

.detail-bottom-custum .news-content h4 {
	color: #000;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 5px;
	line-height: 1.4;
}

.detail-bottom-custum .news-time {
	color: #333;
	font-size: 12px;
}

.detail-bottom-custum .view-more {
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	background: #f7f9fa;
}

.detail-bottom-custum .view-more a {
	color: #000;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
}

.detail-bottom-custum .ad-box {
	background: #f0f0f0;
	border-radius: 8px;
	padding: 150px 20px;
	text-align: center;
}

.detail-bottom-custum .ad-content {
	background: white;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.detail-bottom-custum .news-content {
	background-color: unset;
	padding: unset;
}



section.detail-top-member {
	background: #f5f5f5;
}

section.detail-bottom-custum {
	background: #f5f5f5;
}

.detail-bottom-custum .container {
	display: flex;
	gap: 20px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 20px;
	background-color: white;
	overflow: unset !important;
}
section.detail-bottom-custum .news-icon img {
    height: 71px;
    object-fit: scale-down;
}
@media (max-width: 968px) {
	.detail-top-member .product-wrapper {
		display: block;
	}

	.detail-top-member .features-grid {
		grid-template-columns: 1fr;
	}

	.detail-top-member .action-buttons {
		flex-direction: column;
	}
}

@media (max-width: 640px) {
	.detail-top-member .container {
		padding: 15px;
	}

	.detail-top-member .product-info h1 {
		font-size: 22px;
	}

	.detail-top-member .current-price {
		font-size: 28px;
	}

	.detail-top-member .variant-options {
		grid-template-columns: 1fr 1fr;
	}

	.detail-top-member .variant-btn {
		width: 100%;
	}
}