/* Shopping Cart Section */
.shopping-cart-section {
    background-color: #f8f9fa;
    padding: 40px 0;
    padding-top: 150px;
}

.shopping-cart-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.shopping-cart-header {
    padding: 20px 30px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.cart-subtitle {
    font-size: 1.25rem;
    color: #666;
}

.shopping-cart-content {
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

.course-image-container {
    flex: 0 0 250px;
    max-width: 250px;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-details {
    flex: 1;
    max-width: 800px;
    text-align: left;
}

.empty-cart-message {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 20px;
}

.btn-keep-shopping {
    display: inline-block;
    padding: 12px 20px;
    background-color: #ff5a5f;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-keep-shopping:hover {
    background-color: #e04848;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .shopping-cart-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cart-details {
        max-width: 100%;
    }

    .course-image-container {
        width: 100%;
        max-width: 300px;
    }
}
