.mt {
  background-color: var(--color-white);
  border: 1px solid var(--Bright-Yellow);
  border-radius: 10px; 
  padding: 20px !important;
}

.nut-dat-mua-wrapper {
    text-align: center;
}

.nut-dat-mua {
    display: inline-block;
    padding: 10px 15px;
    background: var(--Bright-Yellow);
    border-radius: 12px;
    color: var(--color-white);
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    max-width: 100%;
}

.nut-dat-mua:hover {
	opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.nut-dat-mua small {
    display: block;
    font-weight: normal;
    font-size: 13px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .nut-dat-mua {
        font-size: 14px;
        padding: 12px 20px;
    }

    .nut-dat-mua small {
        font-size: 12px;
    }
}

.nut-goi-dien {
	width: 100%;
    display: inline-block;
    background: var(--Medium-Green);
    color: var(--color-white);
    padding: 10px 15px;
    border-radius: 15px;
    text-align: center;
    font-size: 16px;
    text-decoration: none;
    line-height: 1.5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nut-goi-dien:hover {
	opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.nut-goi-dien small {
    display: block;
    font-size: 14px;
    font-weight: normal;
}

.nut-zalo {
	width: 100%;
    display: inline-block;
    background: var(--Bule);
    color: var(--color-white);
    padding: 10px 15px;
    border-radius: 15px;
    text-align: center;
    font-size: 16px;
    text-decoration: none;
    line-height: 1.5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nut-zalo:hover {
	opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.nut-zalo small {
    display: block;
    font-size: 14px;
    font-weight: normal;
}

.nut-goi-dien-wrapper a:hover, .nut-dat-mua-wrapper a:hover, .nut-zalo-wrapper a:hover {
	color: var(--color-white) !important;
}

.saletc-feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
	background-color: var(--color-white);
    clear: both;
    margin-bottom: 15px;
    padding: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .1);
    border-radius: 16px;
}

.saletc-feature-list h2 {
	color: var(--color-black);
	font-size: 20px;
}

.saletc-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
	margin-top: 10px;
}

.saletc-feature-item img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.saletc-feature-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-black);
}

/* Lớp phủ mờ toàn màn hình */
.saletc-contact-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* lớp mờ */
    display: none;
    justify-content: center; /* căn giữa ngang */
    align-items: center;     /* căn giữa dọc */
    z-index: 999999;
    padding: 20px; /* để mobile không bị sát màn hình */
}

/* Hộp popup */
.saletc-contact-popup-content {
    background: var(--color-white);
    width: 100%;
    max-width: 600px;
    padding: 25px 20px;
    border-radius: 16px;
    position: relative;
    animation: saletcPopupFadeIn 0.25s ease;
}

/* Animation */
@keyframes saletcPopupFadeIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Nút đóng popup */
.saletc-popup-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    color: #444;
    transition: 0.2s;
}

.saletc-popup-close:hover {
    color: var(--color-black);
}

/* Giữ style form bên trong */
.saletc-popup-form {
    margin-top: 30px;
}