.product-purchase-slider {
    padding: 1.5rem;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.product-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.current-price {
    font-size: 1.75rem;
    font-weight: 600;
    color: #FF5733;
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.add-to-bag-button {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-bag-button:hover {
    background-color: #555;
}

.add-to-bag-form {
    display: flex;
    gap: 10px;
    align-items: center;
}