/* 1. Khai báo màu sắc đặc trưng của PKDN */
:root {
    --primary-yellow: #FFCC00; /* Vàng rực PKDN */
    --dark-bg: #1a1a1a;        /* Đen xám hiện đại */
    --white: #ffffff;
    --gray-light: #f4f4f4;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 2. Reset cơ bản */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--gray-light);
    color: #333;
    line-height: 1.6;
}

/* 3. Header & Navigation (Màu đen vàng) */





/* 4. Banner Mini (Vùng "Ăn mặc chất") */
.banner-mini {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
    border-radius: 15px;
    margin: 20px auto;
    max-width: 1200px;
}

.banner-mini h2 {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.banner-mini h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* 5. Bố cục chính (Sidebar + Grid) */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.content-wrapper {
    display: flex;
    gap: 30px;
}

.sidebar {
    width: 250px;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    height: fit-content;
    box-shadow: var(--shadow);
}

.sidebar h3 {
    border-bottom: 2px solid var(--primary-yellow);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

/* 6. Lưới sản phẩm (Product Grid) */
.product-section {
    flex: 1;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cột như Khôi muốn */
    gap: 25px;
}

/* Card sản phẩm style PKDN */
.product-card {
    background: var(--white);
    border-radius: 15px; /* Bo góc mượt */
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
    position: relative;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.badge-new {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-yellow);
    color: #000;
    padding: 5px 12px;
    font-weight: bold;
    border-radius: 5px;
    font-size: 0.8rem;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.price {
    color: #d32f2f;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.btn-add {
    background: #000;
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
    padding: 10px 25px;
    border-radius: 25px; /* Nút bo tròn cực đẹp */
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.btn-add:hover {
    background: var(--primary-yellow);
    color: #000;
}

/* Responsive cho điện thoại */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
