.product-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

.product-image {
    max-width: 100%;
    height: auto;
}

.product-info {
    margin-top: 20px;
}

.product-price {
    color: #007BFF;
    font-size: 1.5em;
    font-weight: bold;
}

.cart-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    overflow-y: auto;
    z-index: 1000;
}

.cart-overlay .cart-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}


.cart .cart-item {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-bottom: 1px solid #ccc;
}