.user-profile .dropdown-toggle::after {
    display: none !important;
}

.user-profile .dropdown-menu {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.user-profile.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
}

.select-table {
    width: 75px;
    float: right;
}

.card-discount-code {
    border: .0625rem solid transparent;
    border-left: none;
    box-shadow: var(--vc-template-box-shadow, .125rem .125rem .3125rem rgba(0, 0, 0, .07));
    box-sizing: border-box;
    display: flex;
    height: 100%;
    position: relative;
    transition: background 1s ease;
}

.card-dc-code {
    background: red;
    color: white;
    padding: 15px;
}

.card-dc-code-lable {
    display: flex;
    justify-content: center;
    position: relative;
    border-right: none;
    align-items: center;
    box-sizing: border-box;
    flex-direction: column;
}

.card-dc-detail {
    flex: 1;
    flex-direction: column;
    overflow: hidden;
    display: flex;
    justify-content: center;
    position: relative;
    font-size: 14px;
    padding-left: .75rem;
}

.card-dc-check {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding: .75rem;
    position: relative;
}

.nav.nav-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex-direction: unset !important;
    /* Xóa bullet */
}

.nav.nav-tabs li a {
    display: block;
    text-align: center;
    width: 100%;
    /* Đảm bảo link chiếm toàn bộ không gian của item */
}

@media (max-width: 768px) {
    .nav.nav-tabs {
        display: none;
    }

    .nav.nav-tabs li {
        border: 1px solid #f0f0f0;
        border-radius: 5px;
        background: #fafafa;
        flex: 1 1 calc(50% - 8px);
    }
}

#method_payment {
    color: red;
    border-color: red;
}

.mobile-menu-hot {
    background: red !important;
}

.product-view .details-list-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 25px;
}

.product-view .details-tag-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.product-view .check_attribute {
    padding: 10px 20px;
    margin-right: 15px;
    margin-bottom: 0px !important;
}

.product-view .profile-card {
    padding: 5px 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    background: var(--chalk);
    border: 1px solid var(--border);
    position: relative;
    cursor: pointer;
}

.product-view .details-list-title {
    margin-right: 10px;
}

.product-view .profile-card.active {
    background: var(--green-chalk);
    border-color: var(--primary);
}



.product-add-view,
.product-attr-view {
    width: 100%;
    font-size: 15px;
    padding: 6px 0px;
    border-radius: 6px;
    text-align: center;
    text-transform: capitalize;
    color: var(--heading);
    background: var(--border);
    text-shadow: var(-primary-tshadow);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.product-add-view {
    padding: 10px 0px;
    color: var(--white);
    background: var(--primary);
    text-transform: uppercase
}

.product-card:hover .product-attr-view {
    color: var(--white);
    background: var(--primary)
}

.product-attr-view i,
.product-add-view i {
    font-size: 14px;
    margin-right: 5px;
}