html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-container {
    background-color: rgba(0, 0, 0, 0.93);
    border: 0.3px solid #32B70D;
    border-radius: 10px;
    padding: 20px;
    width: 80%;
    max-width: 800px;
}

#productosAgregados {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


 #carrito {
    height: 100vh;
    background-image: url(img/fondoCarrito.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow-y: auto; /* permite scroll si hay muchos productos */
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #32B70D;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.cart-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin: 0;
    color: #32B70D;
    flex: 1;
    margin-left: 1%;
}

.back-link {
    font-family: 'Inter', sans-serif;
    color: #32B70D;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 1%;
}

.cart-item {
    display: grid;
    grid-template-columns: 60px 2fr 1fr 1fr auto;
    align-items: center;
    gap: 10px;
    width: 100%;
    align-items: center;
    background-color: #1c1c1c;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.cart-item p {
    color: #f4f9f2;
}

.cart-item img {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 10px;
}

.item-details p {
    font-family: 'Inter', sans-serif;
    margin: 0;
    flex: 1;
}

.item-quantity {
    margin-left: 20%;
    margin-right: 5%;
    flex: 1;
}

.item-quantity input {
    width: 50px;
    text-align: center;
    margin: 0 20px;
}

.item-price p {
    margin: 0;
    color: #32B70D;
    font-size: 1.2rem;
    flex: 1;
    text-align: right;
}

.item-remove {
    margin: 0 20px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #32B70D;
    flex: 1;
    text-align: right;
}

#totalCarrito {
    font-family: 'Inter', sans-serif;
    color: #32B70D;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 1%;
}


.checkout {
    text-align: right;
}

.checkout .btn {
    background-color: #32B70D;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
}

/* @media (max-width: 768px) {
    .cart-container {
        width: 95%;
        margin: 20px auto;
    }

    .cart-item {
        grid-template-columns: 60px 1.5fr 1fr 1fr auto;
        grid-template-rows: 1fr;
        gap: 8px;
    }

    .item-quantity,
    .item-price,
    .item-remove {
        grid-column: 2 / span 1;
    }

    .item-quantity input {
        margin: 0;
    }

} */


@media (max-width: 768px) {
  .cart-item {
    grid-template-columns: 50px 2fr 1fr 1fr 30px; /* columnas más estrechas */
    gap: 6px;
  }

  .cart-item img {
    width: 50px;
    height: 50px;
  }

  .item-quantity input {
    width: 40px;
  }

  .item-price p {
    font-size: 1rem;
  }

 /*  .item-details p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
} */

}