body {
    font-family: sans-serif;
    background: #fafafa;
    direction: rtl;
}

header, footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.product-card {
    display: flex;
    background: white;
    border-radius: 10px;
    width: 400px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.product-card img {
    width: 150px;
    border-radius: 10px 0 0 10px;
}

.product-card .details {
    padding: 10px;
}

.price {
    color: #e0a800;
    font-weight: bold;
}
