.shopee-products-wrapper body {
    font-family: 'Segoe UI', sans-serif;
    background: #000000;
    color: #ffffff;
    margin: 0;
    padding: 20px;
}

.shopee-products-wrapper h1 {
    text-align: center;
    color: #ffffff;
}

.shopee-products-wrapper .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.shopee-products-wrapper .menu span {  
    font-weight: bold;
    color: #ffffff;
}

.shopee-products-wrapper .menu button {
    padding: 6px 14px;
    border: none;
    background: #222222;
    color: #ffffff;
    cursor: pointer;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.2s;
}

.shopee-products-wrapper .menu button.active {
    background-color: #e60023;
    color: #ffffff;
}

.shopee-products-wrapper .menu button:hover {
    background: #007bff;
    color: #ffffff;
}

.shopee-products-wrapper .grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.shopee-products-wrapper .card {
    background: #1a1a1a;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(255,255,255,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.shopee-products-wrapper .card:hover {
    transform: translateY(-5px);
}

.shopee-products-wrapper .card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.shopee-products-wrapper .card-body {
    padding: 15px;
}

.shopee-products-wrapper .card-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.shopee-products-wrapper .price {
    font-size: 25px;
    color: #cccccc;
}

.shopee-products-wrapper .sale {
    color: #ff4d6d;
    font-weight: bold;
}

.shopee-products-wrapper .baht {
    color: #bbbbbb;
    font-size: 10px;
}

.shopee-products-wrapper .category {
    font-size: 13px;
    color: #aaaaaa;
    margin-top: 8px;
}

.shopee-products-wrapper a {
    text-decoration: none;
    color: #ffffff;
}

.shopee-products-wrapper a:hover {
    text-decoration: none;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .shopee-products-wrapper .grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .shopee-products-wrapper .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .shopee-products-wrapper .grid { grid-template-columns: 1fr; }
}
