.product-list {
    display: none;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
    align-items: center;
}

.product-list.shown {
    display: flex;
}

.product-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 10px;
    max-width: 300px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 8px rgba(255,255,255,0.02);
}

.product-card img {
    max-width: 100%;
    border-radius: 6px;
    margin-bottom: 10px;
}

.product-card h3 {
    font-size: 1.1rem;
    margin: 5px 0;
    color: #fff8c0;
}

.product-card p {
    color: #f0f0f0;
    margin: 5px 0;
}

.add-to-cart {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}

.add-to-cart:hover {
    background-color: #218838;
}

.product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 10px;
    width: 100%;
    max-width: 600px;
}

.product-name {
    flex: 2;
    font-weight: bold;
    color: #fff8c0;
}

.product-price {
    flex: 1;
    text-align: right;
    color: #f0f0f0;
}

.product-row button {
    background-color: #555;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.product-row button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.view-product {
    background-color: #007bff;
}

.view-product:hover {
    background-color: #0056b3;
}

.product-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
