
.card {
    width: 95% !important;
    margin-left: 1rem;
    margin-right: 1rem;
}


@media only screen and (min-width: 768px) and (max-width: 942px) {

    #map{
        display:none;
    }
    .md\:w-1\/2 {
        width: 100%;
    }
}


.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom: var(--swiper-pagination-bottom, -1.5rem) !important;
}
/* Card Container */
.card {
    width: 30rem;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Ocultamos los botones por defecto */
.swiper-button-prev-custom,
.swiper-button-next-custom {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hacemos que aparezcan al hacer hover sobre la tarjeta */
.card:hover .swiper-button-prev-custom,
.card:hover .swiper-button-next-custom {
    opacity: 1;
}


.swiper-container:hover .swiper-button-prev-custom,
.swiper-container:hover .swiper-button-next-custom {
    opacity: 1;
}


.card-title{
    text-overflow: ellipsis;
    overflow: hidden;
    height: 1.5em;
    white-space: nowrap;
}

.card-description{
    text-overflow: ellipsis;
    overflow: hidden;
    height: 1.2em;
    white-space: nowrap;
    text-align: left;
}

/* Swiper container */
.swiper-card {
    width: 100%;
    height: 17.5rem;
    position: relative;
}

/* Swiper slides */
.swiper-slide {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.swiper-slide-card {
    /*background-size: contain !important;*/
    background-position: center;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Card Content */
.card-content {
    padding: 20px;
    text-align: center;
}

.card-content h3 {
    font-size: 18px;
    /*margin-bottom: 10px;*/
    color: #333;
}

.card-content p {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

.card-content .price {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

/* Contenedor del título y la calificación */
.title-rating-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
/* Estrella y porcentaje */
.rating {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #f39c12;
}


.rating i {
    margin-right: 5px;
}

.rating-percentage {
    color: #333;
    inline-size: max-content;
}


/* Precio */
.price {
    display: block;
    font-size: 18px;
    color: #1C95DA;
    font-weight: bold;
}

.site-content {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
}
.main-form{
    margin-top: 0rem;
}
.site-content {
    padding: 0 0; 
    position: relative;
    z-index: 1;
}
@media (min-width: 1024px) {
    .container {
        max-width: -webkit-fill-available;
    }
}
@media (min-width: 768px) {
    .container {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}
@media (min-width: 640px) {
    .container {
        max-width: -webkit-fill-available;
    }
}

@media only screen and (min-width: 1131px) and (max-width: 1590px) {

    .xl\:grid-cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}


@media only screen and (min-width: 943px) and (max-width: 1131px) {

    .md\:grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }
}