/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0.9
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
/* 1. Chỉ áp dụng cho thẻ a KHÔNG chứa class "btn-coupon-inline" */
.entry-content a:not(.btn-coupon-inline) {
    transition: background-color 0.3s;
    color: #348efe;
}

/* 2. Hiệu ứng Hover cũng loại trừ class đó để đồng bộ */
.entry-content a:not(.btn-coupon-inline):hover {
    background-color: rgba(56, 167, 255, 0.10);
    border-radius: 4px;
}

.entry-content h2 {
    position: relative;
    z-index: 1;
    padding-left: 8px;
}

.entry-content h2::before {
    content: "";
    position: absolute;
    height: 100%;
    border-left: 3px solid #38a7ff;
    left: 0;
    top: 0;
    width: 20% !important;
    background: linear-gradient(270deg, rgba(215, 237, 255, 0.00) 0%, #D7EDFF 100%);
    z-index: -1;
}

.entry-content h2::after {
    content: "";
    position: absolute;
    height: 100%;
    border-left: 3px solid #38a7ff;
    left: 0;
    top: 0;
    width: 20% !important;
    background: linear-gradient(270deg, rgba(215, 237, 255, 0.00) 0%, #D7EDFF 100%);
    z-index: -1;
}


.btn-coupon-inline {
    display: inline-flex;
    align-items: center;
    background-color: #007bff;
    color: #ffffff !important;
    
    /* Tăng kích thước  thu hút sự chú ý */
    padding: 4px 12px; 
    font-size: 15px; 
    font-weight: 700; /* Ch đậm hơn để tăng t l click */
    
    line-height: 1;
    margin: 0 4px;
    vertical-align: middle; /* Căn giữa dòng để hài hòa với chữ to */
    text-decoration: none !important;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    
    /* Hiệu ứng chiều sâu để kích thích người dùng click */
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    transition: all 0.2s ease-in-out;
    text-transform: uppercase;
}

.btn-coupon-inline:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transform: translateY(-1px);
    text-decoration: none !important;
}

.btn-coupon-inline:active {
    transform: translateY(0);
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}