* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f4f7fc;
    color: #333;
}

.cart {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cart h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.cart-items {
    display: flex;
    flex-direction: column;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-info {
    display: flex;
    flex-direction: column;
}

.product-image {
    position: relative;
}

.product-image img {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.bakery-stripe {
    position: absolute;
    bottom: 0;
    width: 100%; /* Asegura que ocupe todo el ancho */
    background-color: rgba(255, 255, 255, 0.7); /* Fondo semi-transparente */
    padding: 10px 20px;
    display: flex;
    justify-content: center;
}


.bakery-stripe img {
    max-height: 60px; /* Ajusto el tamaño del logo */
    object-fit: contain;
}

.remove-btn {
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
}

.remove-btn:hover {
    background-color: #c0392b;
}

.item-details {
    flex-grow: 1;
    padding-left: 20px;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quantity {
    width: 50px;
    padding: 5px;
    text-align: center;
}

.cart-total {
    font-size: 24px;
    margin: 20px 0;
    text-align: right;
    font-weight: bold;
    color: #27ae60;
}

.cart-total span {
    color: #333;
    font-weight: normal;
}

.cart-options {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.cart-options button {
    flex: 1;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: white;
}

.continue-shopping-btn {
    background-color: #3498db;
}

.continue-shopping-btn:hover {
    background-color: #2980b9;
}

.clear-cart-btn {
    background-color: #c0392b;
}

.clear-cart-btn:hover {
    background-color: #a73023;
}

.checkout-container {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
}

.checkout-btn {
    background-color: #27ae60;
    color: white;
    padding: 14px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 200px;
    align-self: flex-end;
    margin-top: 20px;
}

.checkout-btn:hover {
    background-color: #2ecc71;
}
