.chi_tiet {
	padding: 15px;
	border: 1px solid var(--Rose-Red);
	border-radius: 8px;
	background: var(--color-white);
}

.profile-box {
	display: flex;
	gap: 20px;
}

/* LEFT */
.profile-avatar {
	flex: 0 0 350px;
}

.profile-avatar img {
	width: 100%;
	border-radius: 12px;
	object-fit: cover;
}

/* RIGHT */
.profile-info {
	flex: 1;
}
.profile-info ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.profile-info li {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
	font-size: 17px;
	color: var(--color-black);
	font-weight: 600;
	margin-left: 0 !important;
}

.profile-info li span {
	color: #777;
	font-weight: 500;
}

/* BUTTONS */
.profile-contact {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 20px;
	flex-wrap: wrap;
	padding: 20px;
}

.contact-label {
	font-size: 20px;
	font-weight: 600;
	color: var(--color-black);
	white-space: nowrap;
}

.profile-buttons {
	display: flex;
	gap: 10px;
}

.profile-buttons .btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 15px;
	border-radius: 8px;
	color: var(--color-white);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all .2s ease;
}

/* icon */
.profile-buttons .btn img {
	width: 25px;
	height: 25px;
	object-fit: contain;
}

.profile-info .price-red {
	color: #B21010;
	font-weight: 700;
	font-size: 20px;
}

.profile-info .price-green {
	color: rgb(34 197 94);
	font-weight: 600;
}

/* màu */
.btn.whatsapp {
	background: #0B602B;
}

.btn.telegram {
	background: rgb(37 99 235);
}

/* hover */
.profile-buttons .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
}

/* ===== MAIN IMAGE ===== */
.profile-main-image img {
	width: 100%;
	border-radius: 12px;
	object-fit: cover;
	margin-bottom: 10px;
}

/* ===== GALLERY ===== */
.profile-gallery-wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 6px;
}

.profile-gallery {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 100px;
	grid-template-columns: repeat(3, 100px);
	gap: 8px;
	overflow: hidden;
	width: calc(3 * 100px + 2 * 8px);
}

.profile-gallery img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 8px;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all .2s ease;
}

.profile-gallery img:hover,
.profile-gallery img.active {
	border-color: var(--Rose-Red);
}

/* ===== NAV BUTTON ===== */
.gallery-nav {
	width: 35px;
	height: 30px;
	border-radius: 999px;
	font-size: 14px;
	border: 1px solid #ccc;
	background: var(--color-white);
	padding: 0;
	flex-shrink: 0;
	margin-bottom: 0;
}

/* ===== Mobile ===== */
@media(max-width:768px) {
	.profile-box {
		flex-direction: column;
	}

	.profile-avatar {
		flex: 100%;
		gap: 10px;
	}
	
	.profile-gallery {
		overflow-x: auto;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.profile-gallery::-webkit-scrollbar {
		display: none;
	}

	.profile-gallery img {
		scroll-snap-align: start;
	}

	.gallery-nav {
		display: none;
	}
	
	.profile-info li, .profile-info li span {
		font-size: 14px;
	}
	
	.profile-info .price-red {
		font-size: 16px;
	}
	
	.profile-contact {
		padding: 0;
	}
}
