.shopee-products-wrapper body {
    font-family: 'Segoe UI', sans-serif;
    background: #f7f7f7;
    margin: 0;
    padding: 20px;
}

.shopee-products-wrapper h1 {
    text-align: center;
    color: #444;
}

.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;
}

.shopee-products-wrapper .menu button {
    padding: 6px 14px;
    border: none;
    background: #eee;
    cursor: pointer;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.2s;
}

.shopee-products-wrapper .menu button.active {
    background-color: #e60023;
    color: white;
}

.shopee-products-wrapper .menu button:hover {
    background: #007bff;
    color: white;
}

.shopee-products-wrapper .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.shopee-products-wrapper .card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    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: #333;
}

.shopee-products-wrapper .price {
    font-size: 25px;
    color: #888;
}

.shopee-products-wrapper .sale {
    color: #e60023;
    font-weight: bold;
}

.shopee-products-wrapper .baht {
    color: #333;
    font-size: 10px;
}

.shopee-products-wrapper .category {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
}

.shopee-products-wrapper a {
    text-decoration: none;
    color: #333;
}

.shopee-products-wrapper a:hover {
    text-decoration: none;
    color: #333;
}

@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; }
}
