.top-header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}
.container.mt-4 {
    margin-top: -1.5rem !important;
}
.service-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e4f5dc;
}
.service-item {
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: relative;
}
.service-item i {
    font-size: 24px;
    color: #d42333;
    margin-right: 10px;
}
.service-item .text-content {
    line-height: 1.2;
}
.service-item .text-content div:first-child {
    font-weight: bold;
    color: #333;
}
.service-item .text-content div:last-child {
    color: #666;
    font-size: 0.9em;
}
.service-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background-color: #ddd;
}
.main-menu {
    background-color: #2489db;
    padding: 2px 0;
}
.main-menu .nav {
    display: flex;
    justify-content: center;
    width: 100%;
}
.main-menu .nav-item {
    padding: 0 15px;
}
.main-menu .nav-link {
    color: #fff !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border-radius: 3px;
    position: relative;
}
.main-menu .nav-link:hover {
    color: #d42333 !important;
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    
}

.main-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}
.main-menu .nav-link:hover::after {
    width: 100%;
}
.main-menu .nav-item.active .nav-link {
    color: #d42333 !important;
    background-color: #fff;
}
.main-menu .nav-item.active .nav-link::after {
    width: 100%;
}
.search-form {
    width: 100%;
}
.search-form .input-group {
    width: 100%;
}
.search-form input {
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 5px 15px;
    font-size: 14px;
}
.search-form input:focus {
    box-shadow: none;
    border-color: #d42333;
}
.search-form .search-btn {
    height: 40px;
    width: 50px;
    background-color: #333333;
    border: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-form .search-btn i {
    color: white;
    font-size: 16px;
}
.search-form .search-btn:hover {
    background-color: #000000;
}

/* Style cho banner */
.banner img {
    width: 60%;
    position: relative;
    display: block;
    margin: auto;
    margin-top: 10px;
}

/* Style cho phần danh mục sản phẩm */
.categories {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    color: #333;
    font-weight: bold;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #d42333;
}

.category-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.category-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-content {
    padding: 20px;
    text-align: center;
}

.category-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.category-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-view {
    display: inline-block;
    padding: 8px 20px;
    background-color: #d42333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background-color: #333;
    color: #fff;
    text-decoration: none;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .service-wrapper {
        flex-wrap: wrap;
    }
    
    .service-item {
        width: 50%;
        margin-bottom: 15px;
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .slide-content h2 {
        font-size: 2.5em;
    }
    .slide-content p {
        font-size: 1.2em;
    }
    
    .main-menu .nav {
        flex-wrap: wrap;
    }
    
    .main-menu .nav-item {
        width: 50%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-item {
        margin-bottom: 20px;
    }
    
    .banner img {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .slide-content h2 {
        font-size: 2em;
    }
    .slide-content p {
        font-size: 1em;
    }
    
    .main-menu .nav-item {
        padding: 0 5px;
    }
    
    .main-menu .nav-link {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .categories {
        padding: 30px 0;
    }
    
    .category-item {
        margin-bottom: 20px;
    }
    
    .category-item img {
        height: 180px;
    }
    
    .service-item {
        width: 100%;
    }
    
    .main-menu .nav-item {
        width: 100%;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .banner img {
        width: 100%;
    }
    
    .footer {
        padding: 0;
        margin-top: 20px;
    }
    
    .footer .container {
        padding: 0;
    }
    
    .footer .row {
        margin: 0;
    }
    
    .footer .col-md-3 {
        width: 100%;
        padding: 0 15px;
        margin-bottom: 15px;
    }
    
    .footer h4 {
        font-size: 14px;
        margin: 10px 0;
        font-weight: 600;
    }
    
    .footer p {
        margin-bottom: 5px;
        font-size: 13px;
        display: flex;
        align-items: flex-start;
    }
    
    .footer p i {
        width: 16px;
        margin-right: 8px;
        margin-top: 4px;
    }
    
    .footer p strong {
        margin-right: 4px;
    }
    
    .footer-links {
        margin-bottom: 0;
    }
    
    .footer-links li {
        margin-bottom: 5px;
        display: flex;
        align-items: flex-start;
    }
    
    .footer-links li i {
        width: 16px;
        margin-right: 8px;
        margin-top: 4px;
    }
    
    .footer-links a {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .social-links {
        margin: 10px 0;
        gap: 12px;
    }
    
    .social-links a {
        font-size: 16px;
    }
    
    .ban_quyen {
        background: #b43a63;
        margin-top: 0;
        margin-bottom: 0;
        padding: 10px 15px;
    }
    
    .fooeter-below {
        text-align: center;
    }
    
    .fooeter-below a {
        position: static;
        padding: 0;
        font-size: 12px;
        display: inline-block;
    }
    
    .mt-4 {
        margin-top: 10px !important;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .category-content h3 {
        font-size: 16px;
    }
    
    .btn-view {
        padding: 6px 15px;
        font-size: 14px;
    }
    
    .product-title {
        font-size: 18px;
    }
    
    .price-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .quantity-section {
        width: 100%;
    }
    
    .purchase-buttons {
        flex-direction: column;
    }
    
    .btn-add-cart, .btn-buy-now {
        width: 100%;
        margin: 5px 0;
    }
}

/* Fix for mobile menu */
@media (max-width: 992px) {
    .navbar-toggler {
        display: block;
    }
    
    .main-menu .nav {
        display: none;
    }
    
    .main-menu .nav.show {
        display: flex;
        flex-direction: column;
    }
}

/* Fix for images */
img {
    max-width: 100%;
    height: auto;
}

/* Fix for tables */
table {
    width: 100%;
    overflow-x: auto;
    display: block;
}

/* Fix for forms */
input, select, textarea {
    max-width: 100%;
}

/* Fix for modals */
.modal-dialog {
    margin: 10px;
    max-width: 100%;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}

/* Footer Styles */
.footer {
    background-color: #b43a63;
    color: #fff;
    padding: 20px 0;
}

.footer h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer p {
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
}

.footer p i {
    width: 20px;
    margin-right: 8px;
    font-size: 15px;
    margin-top: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.footer-links li i {
    width: 20px;
    margin-right: 8px;
    font-size: 15px;
    margin-top: 3px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    color: #fff;
    font-size: 16px;
}

.ban_quyen {
    background: #b43a63;
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.fooeter-below a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .footer {
        padding: 0;
    }

    .footer .container {
        padding: 0;
    }

    .footer .row {
        margin: 0;
    }

    .footer .col-md-3 {
        padding: 10px 15px;
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .footer .col-md-3:last-child {
        border-bottom: none;
    }

    .footer h4 {
        font-size: 14px;
        margin: 8px 0;
    }

    .footer p {
        margin: 5px 0;
        font-size: 13px;
    }

    .footer p i {
        font-size: 14px;
        margin-top: 2px;
    }

    .footer-links li {
        margin: 5px 0;
    }

    .footer-links li i {
        font-size: 14px;
        margin-top: 2px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .social-links {
        margin: 8px 0;
        gap: 12px;
    }

    .social-links a {
        font-size: 15px;
    }

    .ban_quyen {
        padding: 8px 15px;
        margin: 0;
    }

    .fooeter-below a {
        font-size: 12px;
    }
}

.footer h4 {
    color: #f6f6f6;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    margin-top: 15px;
}

.fooeter-below{
    text-align: center; 
}
.fooeter-below  a{
    color: #e9e5e5;
    text-decoration: none;
    padding-bottom: 25px;
    position: absolute;
    top: 18px;
    left: 403px;
}
.ban_quyen {
    background: #b43a63;
    height: 60px;
    margin-top: 2px;
    margin-bottom: -19px;
}
.author p {
    color: #8f2222;
    text-align: right;
    padding-top: 20px;
}

.footer p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f8f9fa;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #fff;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }
    
    .footer h4 {
        margin-top: 20px;
    }
    
    .social-links {
        margin-top: 15px;
    }
}
/* trang giới thiệu  */

.page-header {
    width: 100%;
    padding-bottom: 17px;
    margin: 1px 3px;
    border: none;
    background: #f5f5f5;
    padding-top: 5px;
    
}
.page-header ul li{
    list-style: none;
    float: left;
    margin-right: 5px;
}/* trang liên hệ */
.text-title-lien-he{
    text-transform: uppercase;
    background: rgb(14, 109, 187);
    width: 100%;
    height: 35px;
    color: white;
    margin-bottom: 20px;
    padding: 7px;
    padding-left: 10px;
}
.form-lien-he{
    border: 1px black dashed;
    margin-top: 3px;
    width: 475px;
    height: 200px;
}
.text-content-lien-he ul li{
    list-style: none;
    margin: 12px;
    margin-left: -18px;
    color: black;
}
.iframe-map form iframe{
    width: 100%;
    height: 200px;
}.lien-he{
    margin-top: 15px;
    margin-bottom: 50px;
}
/* trang liên hệ */

/* Style cho trang chi tiết sản phẩm */
.product-detail-page {
    padding: 40px 0;
    background-color: #f8f9fa;
    margin-bottom: 80px;
}

/* Phần gallery sản phẩm */
.product-gallery {
    max-width: 400px;
    margin: 0 auto 20px;
    position: relative;
}

/* Khung chứa ảnh chính */
.main-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
}

/* Ảnh sản phẩm */
.main-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .product-gallery {
        max-width: 300px;
    }
}

/* Khung thông tin sản phẩm */
.product-info {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

/* Tiêu đề sản phẩm */
.product-title {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Phần giá */
.price-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.current-price {
    font-size: 28px;
    color: #ee4d2d;
    font-weight: 700;
}

.old-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.discount {
    background: #ee4d2d;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

/* Phần mô tả */
.product-description {
    margin-bottom: 25px;
}

.product-description h3 {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-description li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.product-description li:before {
    content: "•";
    color: #ee4d2d;
    position: absolute;
    left: 0;
}

/* Phần số lượng */
.quantity-section {
    margin-top: 25px;
}

.quantity-label {
    display: block;
    font-size: 15px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 500;
}

.quantity-controls {
    display: flex;
    align-items: center;
    max-width: 120px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: #f8f9fa;
    color: #2c3e50;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: #ee4d2d;
    color: white;
}

.qty-input {
    width: 48px;
    height: 36px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    font-size: 15px;
    color: #2c3e50;
}

/* Nút mua ngay */
.btn-buy-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 45px;
    margin-top: 20px;
    background: #ee4d2d;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buy-now i {
    margin-right: 8px;
}

.btn-buy-now:hover {
    background: #d73211;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(238, 77, 45, 0.2);
}

/* Container cho phần controls mua hàng */
.purchase-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Wrapper cho controls */
.purchase-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Phần số lượng */
.quantity-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Nút mua hàng */
.purchase-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
}

.btn-add-cart, 
.btn-buy-now {
    min-width: 150px;
    padding: 12px 25px;
}

.product-title {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
}

.old-price {
    font-size: 18px;
    color: #95a5a6;
    text-decoration: line-through;
}

.discount {
    background: #e74c3c;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 14px;
}

.product-description {
    margin-bottom: 20px;
}

.product-description h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.product-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-description li {
    padding: 3px 18px;
    color: #34495e;
}

.quantity-label {
    font-weight: 600;
    color: #2c3e50;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #f8f9fa;
    border-radius: 4px;
    font-size: 16px;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #e74c3c;
    color: white;
}

.qty-input {
    width: 50px;
    height: 32px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.btn-add-cart {
    background: white;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.btn-add-cart:hover {
    background: #fdf2f2;
}

.btn-buy-now {
    background: #e74c3c;
    color: white;
    border: none;
}

.btn-buy-now:hover {
    background: #c0392b;
}

/* Modal Thanh toán */
.modal-content {
    border-radius: 10px;
    border: none;
}

.modal-header {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.modal-title {
    color: #2c3e50;
    font-weight: 600;
}

.order-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.order-info h6 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.order-details {
    background: white;
    padding: 15px;
    border-radius: 6px;
}

.order-details img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.order-details p {
    margin: 8px 0;
    display: flex;
    justify-content: space-between;
    color: #666;
}

.order-details .total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-weight: 600;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 8px;
}

.required {
    color: #e74c3c;
}

.form-control {
    border-radius: 6px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: #e74c3c;
    box-shadow: none;
}

.payment-methods {
    padding: 15px;
    border-radius: 6px;
}

.form-check {
    margin: 10px 0;
}

.btn-primary {
    background: #e74c3c;
    border: none;
    padding: 8px 25px;
}

.btn-primary:hover {
    background: #c0392b;
}

.btn-secondary {
    background: #95a5a6;
    border: none;
}

select:disabled {
    background: #e9ecef;
}

.order-summary {
    background: white;
    padding: 19px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: -8px;
}
.order-summary h4 {
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.order-details {
    padding: 10px 0;
}

.product-thumbnail {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 15px;
}

.quantity-info p {
    margin: 0;
    color: #666;
}

.order-quantity {
    font-weight: 600;
    color: #e74c3c;
    background: #f8f9fa;
    padding: 2px 8px;
    border-radius: 4px;
}

.price-details .price-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: #666;
}

.price-row span:last-child {
    font-weight: 600;
    color: #2c3e50;
}

.price-row.total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-weight: 700;
}

.price-row.total span:last-child {
    color: #e74c3c;
    font-size: 18px;
}

/* Animation khi giá thay đổi */
.subtotal, .total-amount {
    transition: all 0.3s ease;
}

.order-quantity {
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .product-info {
        flex-direction: column;
    }

    .main-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    .purchase-controls {
        flex-direction: column;
        align-items: flex-start;
    }

    .purchase-buttons {
        width: 100%;
    }

    .btn-add-cart, .btn-buy-now {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .product-gallery {
        max-width: 300px;
    }
    
    .main-image {
        border-width: 1px;
    }
    
    .main-image img {
        width: 85%;
        height: 85%;
    }
    
    .main-image:hover img {
        width: 90%;
        height: 90%;
    }

    .purchase-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .purchase-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .btn-add-cart, 
    .btn-buy-now {
        min-width: 0;
        flex: 1;
    }

    /* Giá và đánh giá sản phẩm */
    .product-detail-page .price-section {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        margin-bottom: 4px;
        padding-bottom: 0;
        border-bottom: none;
    }
    .product-detail-page .current-price {
        font-size: 18px !important;
        color: #ee4d2d;
        font-weight: 700;
        margin-bottom: 0;
        display: inline-block;
        text-align: left;
    }
    .product-detail-page .discount {
        font-size: 12px;
        padding: 2px 6px;
        border-radius: 3px;
        background: #ee4d2d;
        color: #fff;
        margin-left: 0;
        margin-top: 0;
        display: inline-block;
        vertical-align: middle;
    }
    .product-detail-page .old-price {
        font-size: 13px !important;
        color: #999;
        text-decoration: line-through;
        margin-left: 0;
        margin-bottom: 0;
        display: inline-block;
        vertical-align: middle;
        margin-right: 6px;
    }
    .product-detail-page .sold-count {
        font-size: 13px;
        color: #666;
        margin-left: 0;
        margin-bottom: 2px;
        display: block;
        align-items: center;
    }
    .product-detail-page .rating {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 15px;
        margin-bottom: 2px;
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .product-detail-page .current-price {
        font-size: 16px !important;
    }
    .product-detail-page .discount {
        font-size: 11px !important;
        padding: 1px 5px !important;
    }
    .product-detail-page .old-price {
        font-size: 12px !important;
    }
    .product-detail-page .rating {
        font-size: 13px !important;
    }
    .product-detail-page .sold-count {
        font-size: 12px !important;
    }
}

/* Style cho grid sản phẩm */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 0;
}

/* Card sản phẩm */
.product-item {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hiệu ứng hover cho card */
.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Container ảnh */
.product-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Ảnh sản phẩm */
.product-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hiệu ứng hover cho ảnh */
.product-item:hover .product-image {
    transform: scale(1.05);
}

/* Overlay khi hover */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.03);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-item:hover .product-overlay {
    opacity: 1;
}

/* Hiệu ứng cho giá */
.current-price {
    color: #ee4d2d;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-item:hover .current-price {
    transform: scale(1.05);
    color: #ff4d4d;
}

/* Thêm badge giảm giá */
.discount {
    background: #ee4d2d;
    color: white;
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 12px;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.product-item:hover .discount {
    transform: rotate(-5deg) scale(1.1);
    background: #ff4d4d;
}

/* Thông tin sản phẩm */
.product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Tiêu đề sản phẩm */
.product-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    height: 40px; /* Chiều cao cố định cho tiêu đề */
    overflow: hidden;
    display: -webkit-box;

    -webkit-box-orient: vertical;
}

/* Phần giá */
.price-section {
    margin-bottom: 10px;
    height: 24px; /* Chiều cao cố định cho phần giá */
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
    margin-left: 5px;
}

/* Đánh giá sao */
.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 20px;
}

/* Style cho stars */
.stars {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    letter-spacing: 2px;
}

/* Style cho từng loại sao */
.star {
    display: inline-block;
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 1;
}

.star.full {
    color: #FFD700;
}

.star.half {
    color: #FFD700;
    position: relative;
}

.star.empty {
    color: #DDD;
}

/* Score bên cạnh stars */
.rating-score {
    font-size: 14px;
    color: #666;
    margin-left: 4px;
}

.product-item:hover .stars {
    transform: scale(1.1);
    color: #ffed4a;
}

/* Số lượng đã bán */
.sold-count {
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.product-item:hover .sold-count {
    color: #333;
}

/* Container nút */
.button-wrapper {
    margin-top: auto;
    height: 36px; /* Chiều cao cố định cho container nút */
}

/* Nút xem chi tiết */
.btn-view {
    width: 100%;
    height: 36px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hiệu ứng hover cho nút */
.btn-view:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,123,255,0.3);
}

/* Hiệu ứng ripple cho nút */
.btn-view::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-view:hover::after {
    width: 200%;
    height: 200%;
}

/* Responsive */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
/* Thêm style cho feedback */
.rating-feedback {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    animation: fadeInOut 3s ease;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(20px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); }
}

/* Thêm vào file CSS */
.stars-container {
    position: relative;
    display: inline-block;
}

.stars-display {
    color: #DDD;
}

.stars-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

.stars-input .star {
    float: left;
    width: 20%;
    height: 100%;
}

.stars-input:hover .star,
.stars-input .star:hover ~ .star {
    color: #FFD700;
}

.star.active {
    color: #FFD700;
}

.star.half {
    position: relative;
}

.star.half:after {
    content: '★';
    color: #FFD700;
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
}
.section-title-h2 h2 {
    font-size: 24px;
    color: #333;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    margin-left: 395px;
    margin-top: 21px;
    
}
.section-title-h2-splq h2 {
    font-size: 24px;
    color: #333;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-left: 395px;
    margin-top: -50px;
    white-space: normal;
    word-break: break-word;
}

@media (max-width: 768px) {
    .section-title-h2-splq {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .section-title-h2-splq h2 {
        font-size: 18px;
        margin-left: 0;
        margin-top: 20px;
        text-align: center;
        padding: 10px 15px;
        margin-bottom: 15px;
        width: 100%;
        white-space: normal;
        word-break: break-word;
        line-height: 1.3;
        letter-spacing: 1px;
        display: inline-block;
    }
}

@media (max-width: 576px) {
    .section-title-h2-splq h2 {
        font-size: 16px;
        padding: 8px 10px;
        width: 100%;
        line-height: 1.3;
        letter-spacing: 0.5px;
        margin-top: -78px;
    }
}
/* Thêm vào file style.css */
.thank-you-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 20px;
}

.thank-you-content {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    position: relative;
}

.check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #4CAF50;
}

.check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}

.check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    animation: rotate-circle 4.25s ease-in;
}

.check-icon::before, .check-icon::after {
    content: '';
    height: 100px;
    position: absolute;
    background: #FFFFFF;
    transform: rotate(-45deg);
}

.icon-line {
    height: 5px;
    background-color: #4CAF50;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

.buttons {
    margin-top: 30px;
}

.buttons .btn {
    margin: 0 10px;
    padding: 10px 30px;
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 46px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

/* CSS cho layout mới */
.checkout-container {
    position: relative;
    margin: 20px 0;
}

.payment-methods {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 7px;
    padding-top: 0px;
}
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-option {
    padding: 15px;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bank-info {
    display: none;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.bank-info.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    padding-top: -25px;
    position: absolute;
    left: -368px;
    top: 166px;
    margin-top: -188px;
    margin-left: -116px;
    width: 445px;
    height: 487px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* Thêm đổ bóng đậm hơn */
}
.bank-account {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.account-info p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    padding: 8px;
    background: white;
    border-radius: 4px;
}

.copy-icon {
    cursor: pointer;
    color: #d42333;
    transition: all 0.2s ease;
}

.copy-icon:hover {
    transform: scale(1.1);
}

.qr-code {
    text-align: center;
    margin: 20px 0;
}

.qr-code img {
    max-width: 166px;
    border: 1px solid;
    /* border-radius: 11px; */
    padding: 1px;
    margin-top: -12px;
}

.bank-note {
    background: #fff3cd;
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
}

.bank-note .note {
    color: #856404;
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* CSS dành riêng cho trang cảm ơn */
.balo-thank-you-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 20px;
}

.balo-thank-you-wrapper {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    animation: baloSlideUp 0.6s ease;
}

.balo-success-icon {
    width: 120px;
    height: 120px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: baloScaleIn 0.5s ease 0.3s both;
}

.balo-success-icon i {
    font-size: 60px;
    color: white;
}

.balo-thank-you-title {
    color: #212529;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: baloFadeIn 0.5s ease 0.4s both;
}

.balo-thank-you-subtitle {
    color: #6c757d;
    font-size: 18px;
    margin-bottom: 30px;
    animation: baloFadeIn 0.5s ease 0.5s both;
}

.balo-order-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
    animation: baloFadeIn 0.5s ease 0.6s both;
}

.balo-order-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.balo-order-item {
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.balo-order-item h4 {
    color: #495057;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
}

.balo-order-item p {
    color: #212529;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

.balo-thank-you-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    animation: baloFadeIn 0.5s ease 0.7s both;
}

.balo-btn-continue {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    background: #0d6efd;
    color: white;
    border: none;
}

.balo-btn-continue:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

.balo-btn-track {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    background: white;
    color: #0d6efd;
    border: 2px solid #0d6efd;
}

.balo-btn-track:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Animations riêng biệt */
@keyframes baloSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes baloScaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes baloFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive cho trang cảm ơn */
@media (max-width: 768px) {
    .balo-thank-you-wrapper {
        padding: 30px 20px;
    }

    .balo-success-icon {
        width: 100px;
        height: 100px;
    }

    .balo-success-icon i {
        font-size: 50px;
    }

    .balo-thank-you-title {
        font-size: 28px;
    }

    .balo-thank-you-subtitle {
        font-size: 16px;
    }

    .balo-thank-you-actions {
        flex-direction: column;
    }

    .balo-btn-continue,
    .balo-btn-track {
        width: 100%;
        text-align: center;
    }
}

/* Print styles cho trang cảm ơn */
@media print {
    .balo-thank-you-page {
        background: white;
    }

    .balo-thank-you-actions {
        display: none;
    }

    .balo-thank-you-wrapper {
        box-shadow: none;
    }
}

/* CSS cho kiểu dấu tích hoàn chỉnh với hiệu ứng phát sáng */
.balo-success-checkmark {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
}

.balo-success-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #2ECC71; /* Màu xanh lá tươi sáng */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: baloCircleAppear 0.5s ease-in-out;
}

.balo-success-glow {
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    background: radial-gradient(
        circle,
        rgba(46, 204, 113, 0.2) 0%,
        rgba(46, 204, 113, 0.1) 45%,
        rgba(46, 204, 113, 0) 70%
    );
    border-radius: 50%;
    animation: baloGlowPulse 2s ease-in-out infinite;
    z-index: -1;
}

.balo-success-check {
    position: relative;
    width: 35px;
    height: 60px;
    border-right: 12px solid white;
    border-bottom: 12px solid white;
    transform: rotate(45deg) translate(-10%, -10%);
    animation: baloCheckAppear 0.4s ease-in-out 0.2s forwards;
    opacity: 0;
}

@keyframes baloCircleAppear {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes baloCheckAppear {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-10%, -10%) scale(0.3);
    }
    50% {
        opacity: 1;
        transform: rotate(45deg) translate(-10%, -10%) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: rotate(45deg) translate(-10%, -10%) scale(1);
    }
}

@keyframes baloGlowPulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.6;
        transform: scale(1);
    }
}

/* Shadow effect */
.balo-success-circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 
        inset 0 -3px 10px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(46, 204, 113, 0.3);
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .balo-success-checkmark {
        width: 100px;
        height: 100px;
    }

    .balo-success-check {
        width: 28px;
        height: 48px;
        border-right-width: 10px;
        border-bottom-width: 10px;
    }
}
.balo-btn-continue {
    color: white !important;
}

.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
}

.thank-you-content {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.thank-you-content h1 {
    color: #28a745;
    margin-bottom: 1rem;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info h4 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info i {
    margin-right: 10px;
    color: #007bff;
}

/* Mobile Menu Styles */
.navbar-toggler {
    border: none;
    background: transparent;
    padding: 10px;
    cursor: pointer;
    display: none;
}

.navbar-toggler i {
    font-size: 24px;
}

@media (max-width: 991px) {
    .navbar-toggler {
        display: none;
    }

    .main-menu {
        position: relative;
        width: 100%;
        background: #2489db;
    }

    .main-menu .nav {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .nav-item {
        flex: 1;
        text-align: center;
        border-right: 1px solid rgba(255,255,255,0.1);
    }

    .nav-item:last-child {
        border-right: none;
    }

    .nav-link {
        display: block;
        padding: 12px 5px !important;
        font-size: 14px !important;
        color: white !important;
        text-transform: uppercase;
        font-weight: 500;
        line-height: 1.2;
    }

    .nav-link:hover {
        background-color: rgba(255,255,255,0.1);
    }

    .service-wrapper {
        flex-direction: column;
        padding: 10px;
    }

    .service-item {
        width: 100%;
        margin-bottom: 10px;
        padding: 10px;
    }

    .service-item:not(:last-child)::after {
        display: none;
    }

    .logo img {
        max-width: 150px;
        position: static !important;
        margin: 0 !important;
    }

    .col-md-3 {
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .nav-link {
        font-size: 12px !important;
        padding: 10px 3px !important;
    }
}

@media (max-width: 768px) {
    /* Banner */
    .banner {
        margin: 0 !important;
        padding: 0 !important;
        height: auto !important;
        min-height: 200px !important;
    }
    .banner img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        border-radius: 0 !important;
    }
    .banner-content {
        padding: 15px !important;
        text-align: center !important;
    }
    .banner-content h1 {
        font-size: 24px !important;
        margin-bottom: 10px !important;
    }
    .banner-content p {
        font-size: 14px !important;
        margin-bottom: 15px !important;
    }
    .banner-content .btn {
        padding: 8px 20px !important;
        font-size: 14px !important;
    }
    /* Banner Slider */
    .banner-slider {
        margin: 0 !important;
        padding: 0 !important;
    }
    .banner-slider .carousel-item {
        height: 200px !important;
    }
    .banner-slider .carousel-item img {
        height: 100% !important;
        object-fit: cover !important;
    }
    .banner-slider .carousel-caption {
        padding: 10px !important;
        bottom: 0 !important;
        background: rgba(0,0,0,0.5) !important;
    }
    .banner-slider .carousel-caption h2 {
        font-size: 20px !important;
        margin-bottom: 5px !important;
    }
    .banner-slider .carousel-caption p {
        font-size: 14px !important;
        margin-bottom: 10px !important;
    }
    .banner-slider .carousel-control-prev,
    .banner-slider .carousel-control-next {
        width: 40px !important;
        height: 40px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        background: rgba(0,0,0,0.3) !important;
        border-radius: 50% !important;
    }
    .banner-slider .carousel-indicators {
        bottom: 5px !important;
    }
    .banner-slider .carousel-indicators li {
        width: 8px !important;
        height: 8px !important;
        margin: 0 3px !important;
    }
}

@media (max-width: 576px) {
    .banner {
        min-height: 150px !important;
    }
    .banner-content h1 {
        font-size: 20px !important;
    }
    .banner-content p {
        font-size: 13px !important;
    }
    .banner-content .btn {
        padding: 6px 15px !important;
        font-size: 13px !important;
    }
    .banner-slider .carousel-item {
        height: 150px !important;
    }
    .banner-slider .carousel-caption h2 {
        font-size: 18px !important;
    }
    .banner-slider .carousel-caption p {
        font-size: 12px !important;
    }
}
