/* ==========================================
   CTA Section cho trang danh mục "MÁY POS" 
   ========================================== */
/* ==========================================
   2 NÚT Chưa chọn được thiết bị POS phù hợp?
   ========================================== */
/* Container tổng */
.wd-term-desc .sellaz-cta-section {
    text-align: center;
    padding: 32px 0;
    border-top: 1px solid #eee;
    margin-top: 32px;
}

/* Tiêu đề CTA */
.wd-term-desc .sellaz-cta-title {
    font-size: 17px;
    font-weight: 500;
    margin: 0 0 18px;
}

/* Wrapper chứa nút */
.wd-term-desc .sellaz-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap; /* Đổi thành wrap nếu muốn nút xuống hàng ở mobile */
}
/* Tự động xuống hàng trên mobile */
@media (max-width: 768px) {
    .sellaz-cta-wrapper {
        flex-wrap: wrap !important;
    }
}

/* Style chung cho nút */
.wd-term-desc .sellaz-cta-wrapper a {
    display: inline-block;
    padding: 10px 20px;
    line-height: 1.5;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.25s ease;
}

/* Nút chính */
.wd-term-desc .sellaz-cta-primary {
    background: #1a9f49;
    color: #fff;
}

/* Nút viền */
.wd-term-desc .sellaz-cta-outline {
    background: transparent;
    color: #1a9f49;
    border: 1px solid #1a9f49;
}

/* Hover */
.wd-term-desc .sellaz-cta-wrapper a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Xóa phần tử gây rớt dòng */
.wd-term-desc br {
    display: none !important;
}
.wd-term-desc p:empty {
    display: none !important;
}
/* ==========================================
   3 NÚT TRÊN DESCRIPTION / CATEGORY "MÁY POS"
   ========================================== */
/* Sellaz link mini CTA */
.sellaz-type-links {
    display: flex;
    gap: 12px;
    margin: 12px 0px;
}

.sellaz-link-mini {
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none !important;
    color: #1a9f49;
    font-size: 13px;
    border: 1px solid #e0e0e0;
    transition: all .25s ease;
}

.sellaz-link-mini:hover {
    background: #e9f7ef;
    color: #1a9f49;
    border-color: #1a9f49;
}
.sellaz-group-title {
    font-size: 15px;
    margin-bottom: 4px;
    font-weight: 500;
}

/* Thu nhỏ padding trên màn cực nhỏ để không bị dài */
@media (max-width: 480px) {
    .sellaz-type-links a {
        padding: 8px !important;
    }
}

