.cafe-paquetes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.cafe-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: white;
    transition: transform 0.2s ease;
}

.cafe-card:hover {
    transform: scale(1.02);
}

.cafe-card-header {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.cafe-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, #f12711, #f5af19);
    color: white;
    text-align: center;
}

.cafe-ciudad {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
}

.cafe-brand {
    font-size: 14px;
}

.cafe-phone {
    display: inline-block;
    background: red;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    margin-top: 5px;
}

.cafe-card-body {
    padding: 15px;
}

.cafe-lugar {
    color: var(--color1);
    font-size: 14px;
}

.cafe-titulo {
    color: #ec1c24;
    margin: 5px 0;
    font-size: 16px;
		font-weight: 700;
}

.cafe-precio {
    font-size: 18px;
    font-weight: bold;
	  color: var(--color1);
}


.cafe-incluye {
    font-weight: normal;
    font-size: 13px;
    color: #777;
}

.cafe-detalles {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
    color: var(--color2);
}
.vert-al{
	vertical-align:sub
}
.marginb{
    margin-bottom: 1rem;	
}
.icon-fontS{
	font-size:22px;
	color: var(--color1);
}

.text-end{
    text-align: end;
}

.cart_item .product-quantity {
    display: none;
}
.remove-item-btn {
    cursor: pointer;
}

#general-reservation .person-count-action{
    color: white;
    font-weight: bold;
    background: #1c74b4;
    border: 0;
    padding: 0px 10px 4px 10px;
    border-radius: 5px;
    font-size: 20px;
}

#general-person-count{
    margin-bottom: 10px;
    border: 0;
    border: 1px solid lightgrey;
    height: 31px;
    border-radius: 5px;
    text-align: center;
    width: 100px;
}

.reserva-modal-title{
        background: #1c74b4;
        color: white !important;
        padding: 10px;
        border-radius: 8px;
}

#general-persons h5{
    background: #000;
    border-radius: 8px;
    padding: 10px;
    color: white;
}

#modal-close {
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 20px;
    cursor: pointer;
    background: black;
    height: 20px;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 50%;
    padding: 12px 15px 17px 15px;
}

