h1,h2,h3,h4,h5,h6 {
    font-family: var(--secondary-font);
}
.hero {
    position: relative;
    height: 280px;
    overflow: hidden;
    z-index: 1;
    padding: 10px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    padding: 40px;
    color: #fff;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    border-radius: 5px;
}

.hero-overlay h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 90px;
}

.hero-overlay p {
    font-size: 14px;
    opacity: .9;
    margin-bottom: 10px;
}

.hero-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
}

/* CONTENEDOR */
.experience-card {
    /*max-width: 900px;*/
    margin: -40px 30px 40px 30px;
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}

/* BLOQUES */
.block {
    margin-bottom: 30px;
}

.block h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* UBICACIÓN */
.location-box {
/*    display: flex;
    gap: 10px;*/
}

.title-with-icon {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.title-with-icon .icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 50px;   /* 👈 tamaño fijo */
  height: 50px;  /* 👈 tamaño fijo */

  color: #3b82f6;
  font-size: 18px;

  background: #EDF7FA;
  border-radius: 50%;

  flex-shrink: 0; /* 👈 evita que se encoja */
}

.title-with-icon .text h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.title-with-icon .text p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #6b7280;
}



.location-box input {
    flex: 1;
    height: 45px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 0px 12px;
}

.btn-location {
    background: #eef3ff;
    border: 1px solid #dbe5ff;
    padding: 0 15px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    height: 45px;
}

/* TIPOS DE EXPERIENCIA */
.experience-types {
    display: flex;
    gap: 12px;
}

.type-card {
    flex: 1;
    padding: 18px;
    border-radius: 14px;
    /*background: #f3f4f6;*/
    text-align: center;
    cursor: pointer;
    transition: .25s;
    border: 2px solid #ccc;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.type-card i {
 
    font-size: 22px;
    width: 60px;
    height: 60px;
    display: inline-block;
    border-radius: 50%;
    padding: 17px;
    
    color: #3b82f6;
    background: #EDF7FA;
    
}

.type-card p {
    font-size: 14px;
    margin: 0;
    font-weight: bold;
    color: black;
}

.type-card:hover {
    background: #e9efff;
}

.type-card.active {
    border-color: #0047AB;
    /*background: #eef3ff;*/
}

.type-card.active i {
    color: #0047AB;
}

/* RUTA */
.route-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.route-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 40px 10px 10px;
    border-radius: 12px;
    transition: .2s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.route-item:hover {
    background: #f5f7fb;
}

.route-item img {
    width: 65px;
    height: 65px;
    border-radius: 10px;
    object-fit: cover;
}

.route-item b {
    font-size: 14px;
}

.route-item p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* CONTACTO */
.contact-box {
/*    display: flex;
    gap: 10px;*/
}

.contact-box input {
    flex: 1;
    height: 45px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 0 12px;
}

/* BOTÓN CTA */
.btn-start {
    width: 100%;
    background: #0047AB;
    color: #fff;
    padding: 16px;
    border-radius: 14px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    transition: .2s;
}

.btn-start:hover {
    background: #003a8c;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-overlay h1{
        margin-top: 60px;
    }
    .experience-card {
        margin: -30px 10px 20px 10px;
        padding: 18px;
    }

    .experience-types {
        flex-direction: column;
    }

    .contact-box {
        /*flex-direction: column;*/
    }

    .location-box {
        flex-direction: column;
    }
    .cs_main_header_left{
        width: 100%;
    }
    .cs_site_branding{
        width: 100%;
        text-align: center;
    }
}
.i-active{
    color: green;
}

.download-card{

    width: 100%;
    max-width: 520px;

    margin: auto;
    padding: 28px;

    background: #fff;

    border-radius: 32px;

    box-shadow:
        0 10px 35px rgba(0,0,0,.05);

    border: 1px solid #f3f4f6;
}

/*codigo inicial start*/
.audio-player{
    display:flex;
    align-items:center;
    gap:14px;
    padding:16px;
    background:#f4f6f9;
    border-radius:18px;
    box-shadow:0 6px 16px rgba(0,0,0,0.08);
}

/* Botón play */
.audio-btn{
    width:48px;
    height:48px;
    border-radius:30px;
    border:none;
    background:#0d4aa6;
    color:white;
    font-size:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    flex-shrink:0;
    transition:all .2s ease;
}

.audio-btn:hover{
    transform:scale(1.05);
}

/* Contenedor derecho */
.player-right{
    flex:1;
}

/* Barra de progreso */
.audio-range{
    width:100%;
    height:6px;
    appearance:none;
    background:#cfd6df;
    border-radius:10px;
    outline:none;
    margin-top:6px;
}

/* Bolita del slider */
.audio-range::-webkit-slider-thumb{
    appearance:none;
    width:14px;
    height:14px;
    border-radius:50%;
    background:#0d4aa6;
    cursor:pointer;
}

/* Firefox */
.audio-range::-moz-range-thumb{
    width:14px;
    height:14px;
    border-radius:50%;
    background:#0d4aa6;
    cursor:pointer;
}

/* Tiempos */
.audio-time{
    display:flex;
    justify-content:space-between;
    font-size:11px;
    color:#6b7280;
    margin-top:6px;
}

.poi-distance {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 6px 0;
}

.poi-distance i {
    color: #1e5bb8;
}

.poi-list {
    margin-top: 10px;
}

/* Card */
.poi-card {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    height: 100%;

    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.2s ease;
}

.poi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

/* Título */
.poi-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e5bb8;
    margin-bottom: 6px;
}

/* Descripción */
.poi-desc {
    font-size: 13px;
    color: #666;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Distancia */
.poi-distance {
    font-size: 12px;
    color: #888;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.poi-distance i {
    color: #1e5bb8;
}

/* Botón */
.btn-poi {
    display: inline-block;
    margin-top: 10px;

    background: #0047AB;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;

    font-size: 13px;
    text-decoration: none;
}

.btn-poi:hover {
    background: #003b8e;
}
#map {
    width: 100%;
    height: 500px;
    border-radius: 12px;
}
input[type=text]{
    height: 64px
}
.extras-slider{
    padding:10px 0 20px;
}

.place-info{
    padding:14px;

    display:flex;
    flex-direction:column;
    flex:1;
}

.place-info h4{
    font-size:20px;
    color:#1b4ea1;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display:block;
    width:100%;
    min-width:1px;
}


.place-info .btn{
    background:#1b4ea1;
    color:white;
    border:none;
    padding:6px 12px;
    border-radius:6px;
    font-size:12px;
    margin-top:auto;
}
.place-address{
    font-size:12px;
    color:#666;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display:block;
    width:100%;
    min-width:1px;
}
.modal-header{
    justify-content: left;
    position: relative
};
.e-persona-alimentos{
    padding:10px 0 20px;
}
/*codigo inicial end*/



body{
    background:#f4f7fb;
    margin:0;
}

.container{
    max-width:900px;
    margin:auto;
    padding:30px;
}

/* Fecha */
.date-row{
    display:flex;
    align-items:center;
    gap:15px;
}

.date-circle{
    width:56px;
    height:56px;
    border-radius:50%;
    background:#1f6fff;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:20px;
}

.date-text{
    display:flex;
    flex-direction:column;
}

.today{
    font-size:20px;
    font-weight:700;
}

.month{
    color:#666;
}

/* Steps */
.steps{
    display:flex;
    align-items:center;
    margin:30px 0;
}

.step{
    display:flex;
    flex-direction:column;
    align-items:center;
    color:#999;
}

.step.active{
    color:#1f6fff;
    font-weight:600;
}

.step-number{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#e5edff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:6px;
}

.step.active .step-number{
    background:#1f6fff;
    color:#fff;
}

.step-line{
    flex:1;
    height:3px;
    background:#e5e5e5;
    margin:0 10px;
}

/* Cards */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 280px));
    gap:20px;
    margin:25px 0;
    justify-content:center; /* 👈 centra cuando hay pocas cards */
}

.cards{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  justify-content:center;
}

.card{
  width:260px;
  border-radius:16px;
  overflow:hidden;
  cursor:pointer;
  border:2px solid transparent;
  transition:.25s;
  box-shadow:0 4px 14px rgba(0,0,0,.08);
}

.card:hover{
  transform:translateY(-4px);
}

.card.selected{
  border:2px solid #0d6efd;
  box-shadow:0 8px 22px rgba(13,110,253,.25);
}

#continueBtn{
  margin-top:25px;
  padding:14px 32px;
  border:none;
  border-radius:12px;
  background:#0d6efd;
  color:white;
  font-weight:600;
  opacity:.5;
  pointer-events:none;
}

#continueBtn.active{
  opacity:1;
  pointer-events:auto;
}

.card-info p{
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    cursor:pointer;
    transition:.25s;
    border:2px solid transparent;
}

.card img{
    width:100%;
    height:140px;
    object-fit:cover;
}

.card-info{
    padding:15px;
}

.card.selected{
    border:2px solid #1f6fff;
    transform:scale(1.03);
}

/* Button */
button{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    background:#1f6fff;
    color:white;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
}

button:disabled{
    background:#cbd5e1;
    cursor:not-allowed;
}

/* Selector pasajeros */
.section-title{
  font-weight:700;
  margin-bottom:20px;
}

.passenger-selector{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
}

.passenger-selector button{
     width:50px;
     height:50px;
     border-radius:50%;
     border:none;
     background:#0d6efd;
     color:white;
     font-size:24px;
     font-weight:700;
     align-items: center;
    justify-content: center;
    display: flex;
}

.passenger-selector span{
  font-size:32px;
  font-weight:700;
  width:60px;
  text-align:center;
}

/* Botón primario */
.primary-btn{
  padding:14px 40px;
  border:none;
  border-radius:14px;
  background:#0d6efd;
  color:white;
  font-weight:600;
  opacity:.5;
  pointer-events:none;
}

.primary-btn.active{
  opacity:1;
  pointer-events:auto;
}

/* Estados steps */
.step.completed .step-number{
  background:#198754;
}

.step-line.active{
  background:#0d6efd;
}

.passenger-card {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.passenger-header {
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.passenger-header.active {
  background: #f5f8ff;
}

.passenger-body {
  display: none;
  padding: 16px;
  border-top: 1px solid #eee;
}

.passenger-body.active {
  display: block;
}

.input-group {
  margin-bottom: 12px;
}

.input-group label {
  font-size: 13px;
  color: #555;
}

.input-group input,
.input-group select {
  width: 100%;
  height: 42px;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 0 10px;
}

.badge-complete {
  font-size: 12px;
  color: #28a745;
}

.place-card {
    width: 100%;
    max-width: 200px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
    border: 2px solid transparent; /* importante */
}

/* HOVER */
.place-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* ✅ ACTIVO (FIX REAL) */
.place-card.active {
    border: 2px solid #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.15); /* glow suave */
}

/* 🔥 overlay para selección (opcional pero recomendado) */
.place-card.active::after {
    content: "✓";
    position: absolute;
    top: 8px;
    right: 8px;
    background: #007bff;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== IMAGE ===== */
.place-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block; /* evita gaps raros */
}

/* ===== INFO ===== */
.place-info {
    padding: 10px;
    background: #fff; /* asegura que no tape el borde */
}

.place-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 2px solid transparent;
}

/* 🔥 capa interna para contenido */
.place-card-inner {
    border-radius: 10px; /* un poco menor que el padre */
    overflow: hidden;
    background: #fff;
}

/* ACTIVO */
.place-card.active {
    border: 2px solid #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.15);
}

/* CONTENEDOR */
.recomendacion-box {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* RADIO COMO CARDS */
.radio-group {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.radio-card {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #eee;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.radio-card input {
    display: none;
}

.radio-card:hover {
    border-color: #007bff;
}

/* ACTIVO */
.radio-card.active {
    border-color: #007bff;
    background: rgba(0,123,255,0.05);
}

/* SELECT */
.select-custom {
    height: 56px;
    border-radius: 10px;
}

/* ANIMACIÓN */
.e-recomendacion {
    transition: all 0.3s ease;
}

.e-recomendacion.hide {
    opacity: 0;
    transform: translateY(-10px);
    display: none;
}

.e-recomendacion:not(.hide) {
    opacity: 1;
    transform: translateY(0);
}

/* INPUT */
.e-recomendacion-otros input {
    height: 52px;
    border-radius: 10px;
}
/* RESPONSABLE */
.responsable-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* PASAJEROS */
.passenger-card {
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.passenger-header {
  padding: 14px;
  background: #f8f9fa;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.passenger-body {
  display: none;
  padding: 15px;
  background: #fff;
}

.passenger-card.active .passenger-body {
  display: block;
}

/* INPUTS */
.input-group {
  margin-bottom: 12px;
}

.input-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
}

.input-group input {
  width: 100%;
  height: 45px;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 0 10px;
}

/* GRID ALTERNATIVO (si no usas swiper en este caso) */
.foods-grid {
  display: flex;
  gap: 12px;
  padding-bottom: 5px;
}

/* CARD */
.place-card {
  min-width: 180px; /* 🔥 evita que se aplasten */
  max-width: 200px;
  flex-shrink: 0;
}

/* SCROLL BONITO */
.foods-grid::-webkit-scrollbar {
  height: 6px;
}

.foods-grid::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
}

/*upgrades*/

.product-extras-btns{
     padding: 15px;
     background: white;
     width: 100%;
     position: fixed !important;
     bottom: 0px !important;
     right: 0px !important;
     left: 0px!important;
     z-index: 999 !important;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     text-align: right;
}

.products-slider {
  padding: 10px 0 20px;
}

/* card ocupa todo el slide */
.products-slider .card {
  width: 100%;
  height: 100%;
}

/* imagen consistente */
.products-slider .card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

/* 🔥 evita que texto rompa layout */
.products-slider .card-info p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.products-slider .card.selected {
  border: 2px solid #0d6efd;
  box-shadow: 0 0 0 3px rgba(13,110,253,0.2); /* 👈 glow visible */
  transform: scale(1.02);
}

/* texto */
.experience-info {
  flex: 1;
  min-width: 0; /* 🔥 evita que rompa */
}

.experience-info h2 {
  margin: 0;
  font-weight: 700;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.experience-info p {
  margin-top: 8px;
  color: #6c757d;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.checkin-success {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

/* ✅ SUCCESS */


/* opcional: mejora visual en móvil */
@media (max-width: 768px) {
  .success-box::before {
    background-size: contain; /* evita recorte agresivo */
    background-position: top center;
  }
}

.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: auto;
  margin-bottom: 10px;
}

/* ✅ SUMMARY */
.summary-box {
  margin-top: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 14px;
}

.summary-content {
  display: flex;
  gap: 15px;
  align-items: center;
}

.summary-content img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}

.summary-flex {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

/* 🔥 imagen más grande y vertical */
.summary-flex img {
    width: 180px;          /* más ancho */
    min-width: 140px;
    height: 135px;         /* proporción 4:5 aprox */
    object-fit: cover;
    border-radius: 12px;
}

/* contenido */
.summary-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* MOBILE */
@media (max-width: 768px) {
    .summary-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .summary-flex img {
        width: 100%;
        max-width: 280px;
        height: 220px; /* mantiene proporción vertical */
    }

    .summary-info {
        align-items: center;
    }
}

/* 🔥 UPGRADES */
.upgrade-section {
  margin-top: 25px;
}

.upgrade-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}

.upgrade-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.upgrade-info {
  padding: 12px;
}

.upgrade-info h5 {
  margin: 0;
}

.upgrade-info p {
  font-size: 13px;
  color: #666;
}

.price {
  display: block;
  font-weight: 700;
  margin: 8px 0;
}

.upgrade-info button {
  width: 100%;
  border: none;
  background: #0d6efd;
  color: #fff;
  padding: 8px;
  border-radius: 8px;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  .summary-content {
    flex-direction: column;
    align-items: flex-start;
  }

}

/* CONTENEDOR */

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

.qty-box{
  margin-top:12px;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* CONTROL */
.qty-control{
  display:flex;
  align-items:center;
  justify-content:space-between;

  background:#f4f7ff;
  border-radius:30px;
  padding:4px;

  width:100%;
}

/* BOTONES */
.qty-control .ctrl{
  width:36px;
  height:36px;
  border-radius:50%;
  border:none;

  background:#fff;
  color:#0d6efd;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:14px;
  cursor:pointer;

  box-shadow:0 2px 6px rgba(0,0,0,.1);
  transition:.2s;
}

.qty-control .ctrl:hover{
  background:#0d6efd;
  color:#fff;
  transform:scale(1.1);
}

/* INPUT */
.qty-control .quantity{
  width:40px;
  border:none;
  background:transparent;
  font-weight:600;
  font-size:14px;
  text-align:center;
  padding:0;
}

/* quitar flechas input */
.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ACTIVO (cuando > 0) */
.qty-box.active .qty-control{
  background:#e7f0ff;
}

.upgrade-section{
  margin-top:30px;
  padding:20px;
  border-radius:16px;
  background: #FFFFFF;
  box-shadow:0 6px 18px rgba(0,0,0,0.05);
}


/* GRID MÁS LIMPIO */
.product-extras{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
}

/* CARD MÁS PRO */
.product-extra{
  flex:1 1 calc(50% - 10px);
}

@media (min-width:768px){
  .product-extra{
    flex:1 1 calc(33.333% - 10px);
  }
}

/* HOVER SUAVE GLOBAL */
.product-extra .place-card{
  transition:all .25s ease;
}

.product-extra .place-card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.btn-whatsapp{
  display:flex;
  align-items:center;
  gap:10px;

  width:100%;
  padding:14px 16px;
  border-radius:14px;

  background:#25D366;
  color:#fff;

  text-decoration:none;
  font-weight:600;

  box-shadow:0 6px 18px rgba(37,211,102,0.25);
  transition:all .25s ease;
}

/* ICONO */
.btn-whatsapp i{
  font-size:22px;
}

/* TEXTO */
.btn-content{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.btn-title{
  font-size:15px;
}

.btn-content small{
  font-size:11px;
  opacity:.85;
}

/* HOVER */
.btn-whatsapp:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(37,211,102,0.35);
}

/* CLICK */
.btn-whatsapp:active{
  transform:scale(.98);
}

/* MOBILE ajuste */
@media(max-width:768px){
  .btn-whatsapp{
    padding:12px;
  }

  .btn-title{
    font-size:14px;
  }
}

@keyframes pulse {
  0%{ box-shadow:0 0 0 0 rgba(37,211,102,.5); }
  70%{ box-shadow:0 0 0 10px rgba(37,211,102,0); }
  100%{ box-shadow:0 0 0 0 rgba(37,211,102,0); }
}

.btn-whatsapp{
  animation:pulse 2s infinite;
}

.product-extras-btns{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;

  padding:12px 16px;
  background:#fff;

  box-shadow:0 -4px 20px rgba(0,0,0,0.08);
  z-index:999;

  display:flex;
  justify-content:center;
}

/* BOTÓN */
.btn-pay{
  width:100%;
  max-width:500px;

  padding:16px;
  border:none;
  border-radius:14px;

  background:linear-gradient(135deg,#1f6fff,#0d4ed8);
  color:#fff;

  font-size:16px;
  font-weight:600;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  cursor:pointer;
  transition:all .25s ease;

  box-shadow:0 6px 18px rgba(31,111,255,0.3);
}

/* HOVER */
.btn-pay:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(31,111,255,0.4);
}

/* CLICK */
.btn-pay:active{
  transform:scale(.98);
}

/* ICON */
.btn-pay i{
  transition:transform .2s ease;
}

.btn-pay:hover i{
  transform:translateX(4px);
}

/* SAFE AREA MOBILE (iPhone etc) */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .product-extras-btns{
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }
}

.btn-confirm-pay{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 100%;
    max-width: 320px;

    padding: 16px 20px;

    border: none;
    border-radius: 14px;

    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;

    font-size: 16px;
    font-weight: 600;

    box-shadow: 0 8px 20px rgba(34,197,94,0.35);

    transition: all .25s ease;
    cursor: pointer;
}

/* hover */
.btn-confirm-pay:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(34,197,94,0.45);
}

/* click */
.btn-confirm-pay:active{
    transform: scale(0.97);
}

/* icono */
.btn-confirm-pay .btn-icon{
    display:flex;
    align-items:center;
    justify-content:center;

    width:28px;
    height:28px;
    border-radius:50%;

    background: rgba(255,255,255,0.2);
}

/* loading state */
.btn-confirm-pay.loading{
    pointer-events:none;
    opacity:.8;
}

.btn-confirm-pay.loading .btn-text{
    opacity:0;
}

.btn-confirm-pay.loading::after{
    content:"";
    width:18px;
    height:18px;
    border:2px solid #fff;
    border-top:2px solid transparent;
    border-radius:50%;
    position:absolute;
    animation:spin .8s linear infinite;
}

@keyframes spin{
    to{ transform: rotate(360deg); }
}

.delivery-box{
    background:#fff;
    padding:18px;
    border-radius:14px;
    box-shadow:0 4px 14px rgba(0,0,0,.06);
    margin-top:15px;
}

.delivery-box h4{
    font-size:16px;
    font-weight:600;
    margin-bottom:12px;
}

.delivery-options{
    display:flex;
    gap:12px;
}

/* CARD */
.delivery-card{
    flex:1;
    border:2px solid #e5e7eb;
    border-radius:12px;
    padding:14px;
    cursor:pointer;
    transition:all .2s ease;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

/* ocultar radio */
.delivery-card input{
    display:none;
}

/* contenido */
.delivery-content{
    display:flex;
    align-items:center;
    gap:8px;
    font-weight:500;
    color:#444;
}

/* iconos */
.delivery-content i{
    font-size:18px;
}

/* hover */
.delivery-card:hover{
    border-color:#0d6efd;
    background:rgba(13,110,253,0.05);
}

/* ACTIVO */
.delivery-card input:checked + .delivery-content{
    color:#0d6efd;
}

.delivery-card input:checked + .delivery-content i{
    color:#0d6efd;
}

/* borde activo */
.delivery-card input:checked ~ .delivery-content,
.delivery-card input:checked{
}

/* 🔥 borde activo real */
.delivery-card:has(input:checked){
    border-color:#0d6efd;
    background:rgba(13,110,253,0.06);
    box-shadow:0 0 0 3px rgba(13,110,253,0.15);
}

/* TITULO */
.extras-title{
    font-size:14px;
    font-weight:600;
    color:#111;
    margin-bottom:10px;
    display:flex;
    align-items:center;
    gap:6px;
}

/* CARD GENERAL */
.order-card{
    background:#fff;
    border-radius:14px;
    padding:14px;
    margin-bottom:12px;
    box-shadow:0 4px 14px rgba(0,0,0,0.06);
    border:1px solid #f1f1f1;
}

/* HEADER */
.order-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
    padding-bottom:8px;
    border-bottom:1px dashed #eee;
}

.order-label{
    font-size:12px;
    color:#888;
}

.order-id{
    font-size:13px;
    font-weight:600;
    color:#1f6fff;
}

/* ITEMS */
.order-body{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.order-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* LEFT */
.order-item-left{
    display:flex;
    align-items:center;
    gap:6px;
}

.order-item-left i{
    color:#22c55e;
    font-size:14px;
}

.order-name{
    font-size:13px;
    color:#333;
}

/* RIGHT */
.order-qty{
    font-size:13px;
    font-weight:600;
    color:#111;
    background:#f4f6f9;
    padding:2px 8px;
    border-radius:6px;
}

/* MOBILE */
@media (max-width:768px){
    .order-card{
        padding:12px;
    }

    .order-name{
        font-size:12px;
    }

    .order-qty{
        font-size:12px;
    }
}
/*Botones wallet*/

/* base */
.btn-wallet{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-family: system-ui;
    transition: .2s;
    min-width: 180px;
}

/* icon */
.btn-wallet i{
    font-size: 20px;
}

/* text */
.btn-wallet span{
    display: block;
    font-size: 10px;
    opacity: .7;
}

.btn-wallet strong{
    font-size: 13px;
}

/* 🍎 Apple */
.btn-wallet.apple{
    background: #000;
    color: #fff;
}

.btn-wallet.apple:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

/* 🤖 Google */
.btn-wallet.google{
    background: #fff;
    color: #000;
    border: 1px solid #e5e7eb;
}

.btn-wallet.google:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
}

.app-download-btn{
	display:flex;
	align-items:center;
	gap:18px;
	padding:20px 24px;
	background:#fff;
	border-radius:20px;
	text-decoration:none;
	box-shadow:0 8px 30px rgba(0,0,0,.08);
	border:1px solid rgba(0,0,0,.05);
	transition:all .3s ease;
	height:100%;
	position:relative;
	overflow:hidden;
}

.app-download-btn:hover{
	transform:translateY(-5px);
	box-shadow:0 15px 40px rgba(0,0,0,.12);
	text-decoration:none;
}

.app-icon{
	width:64px;
	height:64px;
	border-radius:18px;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:30px;
	flex-shrink:0;
}

.ios-btn .app-icon{
	background:rgba(0,122,255,.12);
	color:#007AFF;
}

.android-btn .app-icon{
	background:rgba(52,168,83,.12);
	color:#34A853;
}

.app-info{
	flex:1;
}

.app-info span{
	display:block;
	font-size:13px;
	color:#999;
	margin-bottom:2px;
}

.app-info h5{
	margin:0;
	font-size:24px;
	font-weight:700;
	color:#1f2937;
}

.app-info small{
	font-size:14px;
	color:#6b7280;
}

.app-arrow{
	font-size:20px;
	transition:.3s;
}

.ios-btn .app-arrow{
	color:#007AFF;
}

.android-btn .app-arrow{
	color:#34A853;
}

.app-download-btn:hover .app-arrow{
	transform:translateX(6px);
}

.ios-btn::before,
.android-btn::before{
	content:'';
	position:absolute;
	top:-50px;
	right:-50px;
	width:140px;
	height:140px;
	border-radius:50%;
	opacity:.08;
}

.ios-btn::before{
	background:#007AFF;
}

.android-btn::before{
	background:#34A853;
}