@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");

/* Định nghĩa Biến Màu Sắc */
/* :root {
    --main-color: #ff1111;
    --hover-color: rgb(255, 50, 50);
    --secondary-color: var(gold);
    --background-color: var(--secondary-color);
    --whatsapp-bg: #25d366;
    --whatsapp-hover: #13b84f;
    --sale-color: #F31C1C;
    --gold-color: gold;
    --info-color: #59a8ff;
} */

body {
    font-family: "Montserrat", sans-serif !important;
    line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}
button, input, label, textarea {
    font-family: inherit !important;
}

/* ===== TAG BASE ===== */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
}

/* ===== PRICE TAG ===== */
.tag-price {
    background: linear-gradient(135deg, #ff4d4f, #ff7a45);
    color: #fff;
    font-size: 15px;
}

/* ===== STATUS TAG ===== */
.tag-available {
    background: #e6f7ff;
    color: #0050b3;
}

.tag-hold {
    background: #fff7e6;
    color: #ad6800;
}

.tag-sold {
    background: #f5f5f5;
    color: #8c8c8c;
    text-decoration: line-through;
}

/* ===== META TOP ===== */
.bds-meta-highlight {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin: 12px 0 20px;
    font-size: 15px;
}

.bds-table {
    width: 100%;
    border-collapse: collapse;
}

.bds-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.sc-btn-favorite {
	display: inline-flex;
	align-items: center;
	gap: 8px;
    margin: 0 !important;
	padding: 6px 12px;
	font-size: 15px;
	font-weight: 600;

	color: #fff;
	background: #e53935; /* đỏ favorite */
	border: none;
	border-radius: 999px;

	cursor: pointer;
	user-select: none;

	box-shadow: 0 8px 22px rgba(229,57,53,0.35);
	transition: background .25s ease, transform .2s ease, box-shadow .25s ease;
}

/* Icon */
.sc-btn-favorite .heart {
	font-size: 16px;
	line-height: 1;
	transition: transform .25s ease;
}

/* Hover */
.sc-btn-favorite:hover {
	background: #d32f2f;
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(211,47,47,0.45);
}

.sc-btn-favorite:hover .heart {
	transform: scale(1.2);
}

/* Active */
.sc-btn-favorite:active {
	transform: scale(0.96);
}

/* Focus accessibility */
.sc-btn-favorite:focus-visible {
	outline: 3px solid rgba(255,255,255,0.6);
	outline-offset: 2px;
}
