body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f2f2f2;
}

/* MENU */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1b4f8a;
    color: white;
    padding: 15px 30px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.navbar a,
.cart-btn {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

/* Thiết lập ảnh nền và hiệu ứng Overlay */
.hero-section {
    min-height: 500px;
    background: 
        linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7)), 
        url('https://tcg-collection.com/cdn/shop/articles/featured-guia-completa-cajas-coleccion-pokemon-tcg_8422b1ec-3672-4b29-8c0d-cccea8e32183.jpg?v=1769351949&width=1000'); /* Thay link ảnh Pokémon bạn thích vào đây */
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; /* Tạo hiệu ứng Parallax nhẹ khi cuộn */
    position: relative;
}

/* Hiệu ứng mờ cho văn bản */
.opacity-90 {
    opacity: 0.9;
}

/* Nút bấm tùy chỉnh */
.btn-warning {
    background-color: #ffcb05; /* Màu vàng đặc trưng Pokémon */
    border-color: #ffcb05;
    color: #2a75bb; /* Màu xanh đặc trưng Pokémon */
    transition: transform 0.3s ease;
}

.btn-warning:hover {
    transform: scale(1.05);
    background-color: #e6b800;
}

/* Hiệu ứng xuất hiện khi load trang */
.animate-up {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner h1 {
    font-size: 42px;
}

/* SẢN PHẨM */
/* CARD SẢN PHẨM */
.card {
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* ẢNH SẢN PHẨM */
.card-img-top {
    height: 240px;
    object-fit: contain;
    padding: 15px;
    background-color: #f8f9fa;
}

/* TÊN SẢN PHẨM */
.card-title {
    font-size: 15px;
    font-weight: 600;
    min-height: 38px;
}

/* GIÁ */
.card-body p {
    font-size: 16px;
}

/* NÚT THÊM VÀO GIỎ */
.card-body .btn {
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.card-body .btn:hover {
    background-color: #ffcb05;
    color: #000;
    border-color: #ffcb05;
}

/* KHOẢNG CÁCH SECTION */
section.container {
    margin-top: 40px;
    margin-bottom: 40px;
}

/* GIỎ HÀNG */
#toggle-cart {
    display: none;
}

.cart {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 10px rgba(0,0,0,0.2);
    padding: 20px;
    transition: 0.3s;
}

#toggle-cart:checked ~ .cart {
    right: 0;
}

.cart ul {
    list-style: none;
    padding: 0;
}

.close {
    display: block;
    margin-top: 20px;
    text-align: center;
    background: #1b4f8a;
    color: white;
    padding: 10px;
    cursor: pointer;
}

.note {
    font-size: 13px;
    color: gray;
}
/* FILTER BAR */
.filter-bar {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.filter-item {
    position: relative;
}

.filter-item input {
    display: none;
}

.filter-btn {
    padding: 10px 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    background: white;
    font-weight: 500;
}

/* DROPDOWN */
.dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    width: 260px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    padding: 12px;
    display: none;
    z-index: 10;
}

.dropdown label {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    cursor: pointer;
    font-size: 14px;
}

.dropdown label:hover {
    background: #f5f5f5;
}

.dropdown input {
    accent-color: #ee4d2d;
}

/* TOGGLE DROPDOWN */
#price-toggle:checked ~ .dropdown,
#brand-toggle:checked ~ .dropdown {
    display: block;
}

.contact-buttons {
  position: fixed;
  bottom: 10px; /* Cách đáy 20px */
  right: 10px;  /* Cách phải 20px */
  display: flex;
  flex-direction: column; /* Xếp theo hàng dọc */
  gap: 15px;      /* Khoảng cách giữa các icon */
  z-index: 9999;
}

.contact-buttons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff; /* Nền trắng cho icon */
}

/* Hiệu ứng khi di chuột vào */
.contact-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.contact-buttons img {
  width: 100%; /* Icon chiếm toàn bộ vòng tròn */
  height: 100%;
}

/* Tùy chỉnh riêng cho Messenger nếu cần */
.btn-messenger {
  background-color: #0084FF; 
}