body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    color: #333;
}

.category-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.category-item {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 10px;
    padding: 15px;
    text-align: center;
    transition: background-color 0.3s;
}

.category-item:hover {
    background-color: #e2e2e2;
}

.product-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.product-item {
    margin: 10px 0;
}

.product-item a {
    text-decoration: none;
    color: #0073aa;
    font-weight: bold;
}

.product-item a:hover {
    text-decoration: underline;
}
.product-data th {
    background-color: #DD042b;
}



 .product-card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.product-card {
    width: 260px;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card-bg {
    background-size: cover;
    background-position: center;
    height: 220px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    border-radius: 16px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.product-overlay {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 100%;
    padding: 15px;
    text-align: center;
    backdrop-filter: blur(2px);
}

.product-overlay h3 {
    margin: 0;
    font-size: 18px;
    color: white;
    font-weight: 600;
}

.arrow {
    display: inline-block;
    font-size: 20px;
    margin-top: 5px;
    color: #ff5252;
    font-weight: bold;
}

 