﻿/*=====================================
    GLOBAL & LAYOUT CSS
=======================================*/
.footer {
    background-color: #000;
    color: #fff;
}

    .footer a.footer-link {
        color: #fff;
        text-decoration: none;
        display: block;
        margin-bottom: 0.5rem;
        transition: color 0.3s;
    }

        .footer a.footer-link:hover {
            color: #ff0000;
        }

    .footer .social-icons a {
        color: #fff;
        font-size: 1.5rem;
        margin-right: 10px;
        transition: color 0.3s, transform 0.3s;
    }

        .footer .social-icons a:hover {
            color: #ff0000;
            transform: scale(1.2);
        }

    .footer .form-control {
        background-color: #111;
        border: 1px solid #333;
        color: #fff;
    }

        .footer .form-control::placeholder {
            color: #fff;
        }

    .footer .btn-danger {
        background-color: #d32f2f;
        border: none;
        color: #fff;
        transition: background-color 0.3s;
    }

        .footer .btn-danger:hover {
            background-color: #b71c1c;
        }

/*=====================================
    NAVBAR CUSTOMIZATION (Header)
=======================================*/
.navbar {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    align-items: center;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

    .navbar-nav .nav-link:hover {
        color: #ff0000 !important;
        text-decoration: underline;
        transform: scale(1.1);
    }

.login {
    margin-top: 13px; /* Giữ lề trên theo yêu cầu */
    margin-left: 15px; /* Cách nút tìm kiếm */
    margin-right: 30px; /* Cách icon giỏ hàng */
    color: white;
    font-weight: bold;
    cursor: pointer;
}

    .login:hover {
        color: red;
        text-decoration: underline;
        transform: scale(1.05);
    }

.logogiohang {
    margin-right: 60px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    transition: transform 0.3s;
    transform: translateY(-1px);
}

    .logogiohang:hover {
        transform: scale(1.15);
    }

/*=====================================
    SEARCH BAR
=======================================*/

nav .navbar-collapse .d-flex {
    /* Căn chỉnh vị trí ngang (cẩn thận với responsive) */
    margin-left: 400px;
}

nav .form-control {
    width: 200px;
    /* Tăng lề phải để cách xa nút tìm kiếm */
    margin-right: 10px !important;
}

nav .btn-outline-light {
    /* Thêm lề phải để cách xa Login */
    margin-right: 15px;
}

@media (max-width: 991.98px) {
    nav .navbar-collapse .d-flex {
        width: 100%;
        margin: 10px 0 10px 0 !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    nav .form-control {
        margin-right: 10px !important;
    }

    nav .btn-outline-light {
        margin-right: 0;
    }

    .login {
        margin-right: 15px;
        margin-left: 15px;
        margin-top: 0;
    }
}
/* Popup Audi */
.audi-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.audi-popup-content {
    background: #fff;
    padding: 30px;
    width: 400px;
    max-width: 90%;
    border-radius: 10px;
    text-align: center;
    animation: fadeIn 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    font-family: 'Segoe UI', sans-serif;
}

    .audi-popup-content h2 {
        margin-bottom: 10px;
        font-weight: bold;
    }

.audi-popup-btn {
    background: #d40000;
    color: #fff;
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    width: 100%;
    font-size: 16px;
}

.audi-popup-close {
    margin-top: 10px;
    padding: 8px 16px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
.logo{
    width:70px;
    height:50px;
}
/* Styling chung cho các pop-up (Dùng lại audi-popup) */
.audi-popup {
    display: none; /* Mặc định ẩn pop-up */
    position: fixed;
    z-index: 1050; /* Cao hơn navbar */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7); /* Lớp phủ mờ */
    justify-content: center;
    align-items: center;
}

.audi-popup-content {
    background-color: #fefefe;
    margin: auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 450px; /* Giới hạn chiều rộng cho form */
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.audi-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 20px;
    font-weight: bold;
    border: none;
    background: none;
    cursor: pointer;
}

    .audi-popup-close:hover,
    .audi-popup-close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

/* Định dạng cho link trong form (Đăng ký ngay/Đăng nhập) */
#openSignupLink, #openLoginLink, .footer-link {
    color: #cc0000; /* Màu đỏ nổi bật */
    text-decoration: none;
    font-weight: bold;
}

    #openSignupLink:hover, #openLoginLink:hover, .footer-link:hover {
        color: #ff0000;
        text-decoration: underline;
    }

/* Cập nhật định dạng cho nút Login trên navbar để dễ click */
.navbar .login {
    color: white;
    cursor: pointer; /* Cho biết đây là một nút/link */
    margin-right: 15px; /* Thêm khoảng cách */
    padding: 5px 10px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.2s;
}

    .navbar .login:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
    }