:root {
    --primary-color: #00f2ff; /* Màu xanh LED của Nike Mag */
    --bg-dark: #0a0a0a;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

/* Header & Nav */
header {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

/* Layout chính - Laptop (3-4 cột theo kế hoạch của bạn) */
.container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

.product-display {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Bố cục chia cột */
    gap: 40px;
    align-items: center;
}

/* Hiệu ứng hình ảnh */
.product-image {
    position: relative;
    text-align: center;
}

.product-image img {
    width: 100%;
    filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Form đặt hàng phong cách Glassmorphism */
.order-form {
    background: var(--glass-bg);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.input-group {
    margin-bottom: 15px;
}

input, select {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    color: white;
    border-radius: 8px;
}

.btn-order {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 0 15px var(--primary-color);
}

.btn-order:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px var(--primary-color);
}

/* RESPONSIVE - Theo yêu cầu trong dự án của bạn */

/* Tablet: Bố cục 2 cột hoặc xếp chồng nhẹ  */
@media (max-width: 992px) {
    .product-display {
        grid-template-columns: 1fr;
    }
}

/* Mobile: Bố cục 1 cột  */
@media (max-width: 600px) {
    nav ul {
        display: none; /* Ẩn menu trên mobile để gọn hơn */
    }
    .container {
        margin: 10px;
    }
}
/* Trang Liên Hệ */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Laptop/Desktop: 2 cột  */
    gap: 50px;
    background: var(--glass-bg);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(0, 242, 255, 0.1);
}

.contact-info h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 1.8rem;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.active {
    color: var(--primary-color) !important;
    border-bottom: 2px solid var(--primary-color);
}

/* Responsive theo đúng cấu trúc của Hưng  */
@media (max-width: 992px) {
    .contact-section {
        grid-template-columns: 1fr; /* Tablet & Mobile: 1-2 cột  */
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .contact-info h2 {
        font-size: 1.8rem;
    }
}
.section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.product-grid {
    display: grid;
    /* Laptop/Desktop: 4 cột theo kế hoạch  */
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--glass-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

.product-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.img-container {
    height: 200px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-container img {
    max-width: 90%;
    transition: 0.5s;
}

.card-info {
    padding: 20px;
    text-align: center;
}

.btn-detail {
    display: block;
    margin-top: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid var(--primary-color);
    padding: 8px;
    border-radius: 5px;
}

/* Tablet: 2 cột  */
@media (max-width: 992px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile: 1 cột  */
@media (max-width: 600px) {
    .product-grid { grid-template-columns: 1fr; }
}
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    line-height: 1.8;
}

blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    font-style: italic;
    color: var(--primary-color);
    margin: 20px 0;
}

@media (max-width: 768px) {
    .about-container { grid-template-columns: 1fr; }
}
/* Header trang sản phẩm */
.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
    margin-bottom: 10px;
}

/* Lưới sản phẩm - Responsive 4 cột  */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Thẻ sản phẩm */
.product-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2);
}

/* Khu vực chứa ảnh */
.product-img {
    position: relative;
    height: 250px;
    background: #151515;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    max-width: 90%;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.1) rotate(-5deg);
}

.placeholder-img {
    color: #444;
    font-weight: bold;
}

/* Overlay khi hover */
.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 242, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.product-card:hover .img-overlay {
    opacity: 1;
}

/* Chi tiết sản phẩm */
.product-details {
    padding: 20px;
}

.category {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.product-details h3 {
    margin: 10px 0;
    font-size: 1.2rem;
}

.desc {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 15px;
    height: 40px;
    overflow: hidden;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: bold;
    color: #fff;
    font-size: 1.1rem;
}

.buy-btn {
    background: var(--primary-color);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.buy-btn:hover {
    transform: rotate(360deg);
}

/* RESPONSIVE THEO KẾ HOẠCH DỰ ÁN  */

/* Tablet: 2 cột */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 cột */
@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
/* Container chính của Banner */
.banner-split {
    display: flex;
    height: 80vh; /* Chiều cao chiếm 80% màn hình */
    position: relative;
    overflow: hidden;
    background-color: #000;
}

/* Các nửa của banner */
.banner-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Giúp ảnh không bị méo */
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Hiệu ứng phóng to khi hover như các web cao cấp */
.banner-item:hover img {
    transform: scale(1.1);
}

/* Lớp phủ mờ và chữ ẩn hiện khi hover */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.banner-item:hover .banner-overlay {
    opacity: 1;
}

.banner-overlay span {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
}

/* Nội dung văn bản trung tâm */
.banner-content {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    width: 100%;
}

.banner-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    letter-spacing: 5px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.btn-shop {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    background: var(--primary-color);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

/* Responsive cho Mobile  */
@media (max-width: 768px) {
    .banner-split {
        flex-direction: column; /* Chuyển thành 1 cột trên điện thoại */
        height: auto;
    }
    .banner-item {
        height: 300px;
    }
    .banner-content h1 {
        font-size: 2.5rem;
    }
}
/* Container chứa Logo */
.logo-container {
    display: flex;
    align-items: center;
}

/* Nếu bạn dùng ảnh Logo */
.logo-img {
    height: 50px; /* Điều chỉnh chiều cao logo của bạn */
    width: auto;
    object-fit: contain;
}

/* Nếu bạn dùng Text Logo (Phong cách mới mẻ) */
.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    color: #000; /* Màu đen sang trọng */
    letter-spacing: -1px;
    transition: 0.3s;
}

.logo-text span {
    color: var(--primary-neon); /* Chữ SNEAKER màu xanh neon */
    font-weight: 300;
    margin-left: 5px;
    letter-spacing: 2px;
    font-size: 1rem;
    text-transform: uppercase;
}

/* Hiệu ứng khi hover vào Logo */
.logo-text:hover {
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
    transform: skewX(-10deg); /* Nghiêng nhẹ tạo cảm giác tốc độ */
}

/* Đảm bảo Logo luôn đẹp trên Mobile */
@media (max-width: 600px) {
    .logo-text {
        font-size: 1.4rem;
    }
    .logo-text span {
        display: none; /* Ẩn bớt chữ SNEAKER trên mobile cho gọn */
    }
}
/* ============================================================
   CHỈNH RESPONSIVE THEO KẾ HOẠCH DỰ ÁN VHDT [cite: 34, 40]
   ============================================================ */

/* 1. MÀN HÌNH LAPTOP/DESKTOP (Mặc định) */
.arrival-grid, .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cột như kế hoạch  */
    gap: 20px;
}

/* 2. MÀN HÌNH TABLET (Dưới 1024px) */
@media (max-width: 1024px) {
    .arrival-grid, .product-grid {
        grid-template-columns: repeat(2, 1fr); /* Chuyển thành 2 cột  */
        gap: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .banner-content h1 {
        font-size: 3rem; /* Thu nhỏ tiêu đề banner cho vừa màn hình */
    }
}
/* Container chính của Banner - Laptop */
.banner-split {
    display: flex;
    height: 70vh; /* Giảm nhẹ chiều cao để cân đối */
    position: relative;
    overflow: hidden;
    background-color: #000;
}

/* Các nửa của banner */
.banner-item {
    flex: 1;
    position: relative;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Giữ ảnh luôn lấp đầy khung mà không méo */
}

/* CHỈNH SỬA CHO MOBILE (Dưới 600px) */
@media (max-width: 600px) {
    .banner-split {
        flex-direction: column; /* Xếp chồng 2 ảnh lên nhau  */
        height: auto; /* Quan trọng: Để chiều cao tự động theo ảnh */
    }

    .banner-item {
        width: 100%;
        height: 300px; /* Cố định chiều cao vừa phải cho mỗi ảnh trên điện thoại */
    }

    .banner-item img {
        object-fit: cover; /* Đảm bảo ảnh giày không bị bẹp */
    }

    .banner-content {
        position: relative; /* Đẩy nội dung xuống dưới ảnh cho dễ đọc */
        transform: none;
        left: 0;
        bottom: 0;
        padding: 30px 15px;
        background: #000;
    }

    .banner-content h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
}
:root {
    --neon: #00f2ff;
    --dark: #000000;
    --light: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', sans-serif; background: #000; color: #fff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* Header & Logo */
header { background: #000; padding: 15px 0; border-bottom: 1px solid #222; position: sticky; top: 0; z-index: 100; }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo-box a { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 45px; margin-right: 10px; }
.logo-text { color: #fff; font-weight: bold; font-size: 1.2rem; }
.logo-text span { color: var(--neon); font-weight: 300; font-size: 0.8rem; margin-left: 5px; }
.nav-menu { display: flex; list-style: none; gap: 20px; }
.nav-menu a { color: #ccc; text-decoration: none; font-size: 0.9rem; }
.nav-menu a.active, .nav-menu a:hover { color: var(--neon); }

/* Banner Responsive - FIX LỖI Ở ĐÂY */
.hero-banner { position: relative; height: 70vh; overflow: hidden; background: #000; }
.banner-track { display: flex; height: 100%; }
.banner-slide { flex: 1; height: 100%; }
.banner-slide img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }

.hero-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; width: 100%; }
.hero-content h1 { font-size: 3.5rem; letter-spacing: 5px; }
.btn-main { display: inline-block; margin-top: 20px; padding: 12px 35px; background: var(--neon); color: #000; text-decoration: none; font-weight: bold; border-radius: 5px; }

/* Grid Sản Phẩm */
.new-arrivals { padding: 60px 0; }
.header-center { text-align: center; margin-bottom: 40px; }
.line { width: 40px; height: 2px; background: var(--neon); margin: 10px auto; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.item { background: #111; padding: 15px; border-radius: 10px; text-align: center; }
.item-img { height: 200px; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; }
.item-img img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* Form */
.order-section { padding: 60px 0; border-top: 1px solid #222; }
.order-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.form-box input, .form-box select { width: 100%; padding: 12px; margin-bottom: 15px; background: #222; border: 1px solid #333; color: #fff; border-radius: 5px; }
.form-box button { width: 100%; padding: 15px; background: var(--neon); border: none; font-weight: bold; cursor: pointer; border-radius: 5px; }

/* ==========================================
   MOBILE RESPONSIVE (Sửa lỗi cho Hưng)
   ========================================== */
@media (max-width: 768px) {
    .nav-menu { display: none; } /* Ẩn menu mobile */
    
    /* Chỉnh Banner không bị mất hình */
    .hero-banner { height: 500px; } /* Giảm chiều cao banner trên Mobile */
    .banner-track { flex-direction: column; } /* Xếp dọc 2 ảnh */
    .banner-slide { height: 250px; } /* Mỗi ảnh cao 250px */
    
    .hero-content h1 { font-size: 2rem; }
    
    /* Grid 1 cột */
    .product-grid { grid-template-columns: 1fr; }
    .order-container { grid-template-columns: 1fr; }
}