/* ==========================================================================
   Custom Dark Theme cho Quán Nhỏ 
   ========================================================================== */
body.bg-dark-theme {
    background-color: #121212; /* Nền xám đen cực tối */
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.bg-dark-panel {
    background-color: #1e1e1e; /* Màu nền cho sidebar */
    border-right: 1px solid #333;
}

.sidebar-left {
    width: 250px;
    min-width: 250px;
    border-right: 1px solid #2d2d2d;
}

.sidebar-right {
    width: 300px;
    min-width: 300px;
    border-left: 1px solid #2d2d2d;
    background-color: #1a1a1a;
}

/* ==========================================================================
   Tùy chỉnh Menu Nav 
   ========================================================================== */
.menu-categories .nav-link {
    padding: 12px 15px;
    margin-bottom: 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .menu-categories .nav-link:hover,
    .menu-categories .nav-link.active {
        background-color: #333;
        color: #f39c12 !important; /* Màu cam vàng khi hover */
    }

/* ==========================================================================
   Tùy chỉnh Card Sản phẩm 
   ========================================================================== */
.product-card {
    background-color: #242424 !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5) !important;
        border: 1px solid #f39c12 !important;
    }

.banner-top {
    /* Tạo hiệu ứng gradient cho banner */
    background: linear-gradient(135deg, #b92b27, #1565C0);
}

.review-item {
    font-size: 0.9rem;
    border-left: 3px solid #f39c12;
    background-color: #2a2a2a !important;
}

/* ==========================================================================
   Tùy chỉnh thanh cuộn (Scrollbar) 
   ========================================================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #121212;
}

::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #888;
    }

/* ==========================================================================
   NÂNG CẤP: Sửa lỗi hiển thị ô nhập liệu (Input & Placeholder) trong Modal Đặt Hàng
   ========================================================================== */
#wrapper-step-2 .form-control {
    background-color: #2a2a32 !important; /* Đổi nền thành màu xám than giúp nổi bật trên Modal */
    border: 1px solid #444450 !important; /* Tạo đường viền nhẹ bao quanh ô nhập liệu */
    color: #ffffff !important; /* Màu chữ người dùng nhập vào sẽ trắng sáng rõ ràng */
    padding: 8px 12px;
    transition: all 0.2s ease;
}

    /* Hiệu ứng sáng viền vàng khi click chuột vào ô nhập liệu (Focus) */
    #wrapper-step-2 .form-control:focus {
        background-color: #32323c !important;
        border-color: #f39c12 !important; /* Đồng bộ màu viền vàng #f39c12 với hệ thống */
        box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25) !important; /* Đổ bóng nhẹ tone vàng */
        outline: none;
    }

    /* Ép chữ gợi ý (Placeholder) phải hiển thị màu xám sáng, không bị ẩn/mất chữ */
    #wrapper-step-2 .form-control::placeholder {
        color: #a0a0ab !important; /* Màu chữ gợi ý trực quan, dễ nhìn thấy */
        opacity: 1 !important; /* Ngăn chặn trình duyệt tự động làm mờ */
    }
