/* ============================================================
   GSTOP Reservas Web - CSS aislado (prefijo gstop-)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* Variables */
.gstop-wrap {
    --gstop-primary:    #e85d3a;
    --gstop-primary-dk: #c94a29;
    --gstop-dark:       #1a1a2e;
    --gstop-mid:        #4a4a6a;
    --gstop-light:      #f7f7fb;
    --gstop-border:     #e2e2ed;
    --gstop-white:      #ffffff;
    --gstop-success:    #22c55e;
    --gstop-error:      #ef4444;
    --gstop-radius:     10px;
    --gstop-shadow:     0 2px 16px rgba(0,0,0,0.08);
    font-family: 'Outfit', sans-serif;
    color: var(--gstop-dark);
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
}

/* Reset básico dentro del widget */
.gstop-wrap *, .gstop-wrap *::before, .gstop-wrap *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ---- Pasos indicador ---- */
.gstop-paso-header {
    margin-bottom: 20px;
}

.gstop-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 14px;
}

.gstop-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gstop-border);
    color: var(--gstop-mid);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s;
}

.gstop-step--activo {
    background: var(--gstop-primary);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(232,93,58,.18);
}

.gstop-step--done {
    background: var(--gstop-success);
    color: #fff;
}

.gstop-step-line {
    flex: 1;
    height: 2px;
    background: var(--gstop-border);
    margin: 0 6px;
    max-width: 80px;
}

.gstop-step-line--done {
    background: var(--gstop-success);
}

/* ---- Títulos ---- */
.gstop-titulo {
    font-size: 22px;
    font-weight: 700;
    color: var(--gstop-dark);
    line-height: 1.2;
}

.gstop-subtitulo {
    font-size: 15px;
    font-weight: 600;
    color: var(--gstop-dark);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gstop-border);
}

/* ---- Cards ---- */
.gstop-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--gstop-border);
    border-radius: var(--gstop-radius);
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: var(--gstop-shadow);
    backdrop-filter: blur(4px);
}

.gstop-card--resumen {
    background: var(--gstop-light);
    border-color: var(--gstop-primary);
    border-left: 4px solid var(--gstop-primary);
}

.gstop-card--total {
    background: var(--gstop-dark);
    color: #fff;
    border: none;
    position: sticky;
    top: 20px;
}

.gstop-card--confirmacion {
    text-align: center;
    padding: 48px 24px;
}

.gstop-card--error {
    text-align: center;
    padding: 48px 24px;
    border-color: var(--gstop-error);
}

/* ---- Formulario ---- */
.gstop-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 600px) {
    .gstop-grid-2 { grid-template-columns: 1fr; }
}

.gstop-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gstop-field--full {
    grid-column: 1 / -1;
}

.gstop-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gstop-mid);
    text-transform: uppercase;
    letter-spacing: .4px;
}

.gstop-req {
    color: var(--gstop-primary);
}

.gstop-input, .gstop-select {
    padding: 9px 12px;
    border: 1.5px solid var(--gstop-border);
    border-radius: 7px;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    color: var(--gstop-dark);
    background: var(--gstop-white);
    transition: border-color .2s;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.gstop-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a4a6a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

.gstop-input:focus, .gstop-select:focus {
    outline: none;
    border-color: var(--gstop-primary);
    box-shadow: 0 0 0 3px rgba(232,93,58,.12);
}

/* ---- Botones ---- */
.gstop-actions {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    flex-wrap: wrap;
}
.gstop-powered-by {
    display: inline-flex;
    align-items: center;
    opacity: 0.85;
    transition: opacity .2s;
}
.gstop-powered-by:hover { opacity: 1; }
.gstop-powered-by img { display: block; }

.gstop-btn {
    padding: 10px 22px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    border: none;
    transition: all .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.gstop-btn--primary {
    background: var(--gstop-primary);
    color: #fff;
}

.gstop-btn--primary:hover {
    background: var(--gstop-primary-dk);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(232,93,58,.35);
}

.gstop-btn--secondary {
    background: var(--gstop-light);
    color: var(--gstop-dark);
    border: 1.5px solid var(--gstop-border);
}

.gstop-btn--secondary:hover {
    border-color: var(--gstop-primary);
    color: var(--gstop-primary);
}

.gstop-btn--ghost {
    background: #fff;
    color: var(--gstop-mid);
    border: 1.5px solid var(--gstop-border);
}

.gstop-btn--ghost:hover {
    color: var(--gstop-dark);
    border-color: var(--gstop-mid);
}

.gstop-btn--grande {
    padding: 13px 32px;
    font-size: 15px;
}

.gstop-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none !important;
}

/* ---- Resumen fechas ---- */
.gstop-resumen-fechas {
    font-size: 13px;
    color: var(--gstop-mid);
    margin-top: 4px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.gstop-resumen-fechas span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ---- Lista vehículos ---- */
.gstop-lista-vehiculos {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 16px;
}

.gstop-vehiculo-card {
    background: var(--gstop-white);
    border: 2px solid var(--gstop-border);
    border-radius: var(--gstop-radius);
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 0;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
    cursor: pointer;
}

.gstop-vehiculo-card:hover {
    border-color: var(--gstop-primary);
    box-shadow: 0 4px 20px rgba(232,93,58,.12);
}

@media (max-width: 680px) {
    .gstop-vehiculo-card {
        grid-template-columns: 1fr;
    }
}

.gstop-vehiculo-foto {
    width: 100%;
    height: 130px;
    object-fit: contain;
    background: var(--gstop-light);
    padding: 12px;
}

.gstop-vehiculo-foto-placeholder {
    width: 100%;
    height: 130px;
    background: var(--gstop-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gstop-border);
    font-size: 40px;
}

.gstop-vehiculo-info {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gstop-vehiculo-categoria {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--gstop-primary);
}

.gstop-vehiculo-nombre {
    font-size: 17px;
    font-weight: 700;
    color: var(--gstop-dark);
}

.gstop-vehiculo-desc {
    font-size: 12px;
    color: var(--gstop-mid);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gstop-vehiculo-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.gstop-vehiculo-icon {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--gstop-mid);
    background: var(--gstop-light);
    padding: 3px 8px;
    border-radius: 20px;
}

.gstop-vehiculo-precio-wrap {
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    min-width: 140px;
    border-left: 1px solid var(--gstop-border);
}

@media (max-width: 680px) {
    .gstop-vehiculo-precio-wrap {
        border-left: none;
        border-top: 1px solid var(--gstop-border);
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        min-width: unset;
    }
}

.gstop-vehiculo-precio-label {
    font-size: 11px;
    color: var(--gstop-mid);
    text-align: right;
}

.gstop-vehiculo-precio {
    font-size: 28px;
    font-weight: 700;
    color: var(--gstop-primary);
    line-height: 1;
}

.gstop-vehiculo-precio-sub {
    font-size: 11px;
    color: var(--gstop-mid);
    text-align: right;
}

.gstop-vehiculo-btn {
    margin-top: 8px;
    padding: 8px 18px;
    background: var(--gstop-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}

.gstop-vehiculo-btn:hover {
    background: var(--gstop-primary-dk);
}

/* ---- Paso 3 layout ---- */
.gstop-grid-paso3 {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 20px;
    align-items: start;
}

@media (max-width: 860px) {
    .gstop-grid-paso3 { grid-template-columns: 1fr; }
    .gstop-card--total { position: static; }
}

/* ---- Resumen vehículo seleccionado ---- */
.gstop-resumen-veh {
    display: flex;
    gap: 14px;
    align-items: center;
}

.gstop-resumen-veh img {
    width: 100px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
}

.gstop-resumen-veh-info {
    flex: 1;
}

.gstop-resumen-veh-nombre {
    font-size: 16px;
    font-weight: 700;
}

.gstop-resumen-veh-cat {
    font-size: 11px;
    color: var(--gstop-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.gstop-resumen-lineas {
    margin-top: 12px;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gstop-resumen-linea {
    display: flex;
    justify-content: space-between;
    color: var(--gstop-mid);
}

/* ---- Extras ---- */
.gstop-lista-extras {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gstop-extra-item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1.5px solid var(--gstop-border);
    border-radius: 8px;
    transition: border-color .2s;
    cursor: pointer;
}

.gstop-extra-item:hover {
    border-color: var(--gstop-primary);
}

.gstop-extra-item.gstop-extra--seleccionado {
    border-color: var(--gstop-primary);
    background: rgba(232,93,58,.04);
}

.gstop-extra-img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    background: var(--gstop-light);
}

.gstop-extra-img-placeholder {
    width: 56px;
    height: 56px;
    background: var(--gstop-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.gstop-extra-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gstop-extra-titulo {
    font-size: 13px;
    font-weight: 600;
}

.gstop-extra-precio {
    font-size: 12px;
    color: var(--gstop-primary);
    font-weight: 600;
}

.gstop-extra-desc {
    font-size: 11px;
    color: var(--gstop-mid);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gstop-extra-accion {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.gstop-extra-check {
    width: 22px;
    height: 22px;
    accent-color: var(--gstop-primary);
    cursor: pointer;
}

.gstop-extra-cant {
    display: flex;
    align-items: center;
    gap: 4px;
}

.gstop-extra-cant button {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--gstop-border);
    background: var(--gstop-white);
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    color: var(--gstop-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s;
}

.gstop-extra-cant button:hover {
    border-color: var(--gstop-primary);
    color: var(--gstop-primary);
}

.gstop-extra-cant span {
    font-size: 14px;
    font-weight: 600;
    min-width: 18px;
    text-align: center;
}

/* ---- Cupón ---- */
.gstop-cupon-wrap {
    display: flex;
    gap: 8px;
}

.gstop-cupon-wrap .gstop-input {
    flex: 1;
    text-transform: uppercase;
}

.gstop-cupon-msg {
    margin-top: 8px;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 6px;
}

.gstop-cupon-msg--ok {
    background: rgba(34,197,94,.1);
    color: #15803d;
    border: 1px solid rgba(34,197,94,.3);
}

.gstop-cupon-msg--err {
    background: rgba(239,68,68,.1);
    color: #b91c1c;
    border: 1px solid rgba(239,68,68,.3);
}

/* ---- Total ---- */
.gstop-total-lineas {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.gstop-total-linea {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,.75);
}

.gstop-total-linea--destacada {
    color: #fff;
    font-weight: 600;
}

.gstop-total-linea--descuento {
    color: #86efac;
}

.gstop-total-final {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .5px;
}

.gstop-total-final span {
    font-size: 32px;
    color: var(--gstop-primary);
    text-shadow: 0 0 20px rgba(232,93,58,.4);
}

/* ---- Checkbox términos ---- */
.gstop-field--check {
    margin-top: 8px;
}

.gstop-check-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--gstop-mid);
    cursor: pointer;
}

.gstop-check-label input {
    margin-top: 2px;
    accent-color: var(--gstop-primary);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.gstop-check-label a {
    color: var(--gstop-primary);
    text-decoration: underline;
}

/* ---- Error / Mensajes ---- */
.gstop-error {
    background: rgba(239,68,68,.08);
    border: 1px solid rgba(239,68,68,.25);
    color: #b91c1c;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 13px;
    margin-top: 10px;
}

/* ---- Confirmación ---- */
.gstop-confirmacion-icon {
    width: 72px;
    height: 72px;
    background: var(--gstop-success);
    color: #fff;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 10px rgba(34,197,94,.12);
}

.gstop-error-icon {
    width: 72px;
    height: 72px;
    background: var(--gstop-error);
    color: #fff;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.gstop-codigo-reserva {
    font-size: 32px;
    font-weight: 700;
    color: var(--gstop-primary);
    letter-spacing: 4px;
    margin: 16px 0;
    padding: 12px 24px;
    background: var(--gstop-light);
    border-radius: 8px;
    display: inline-block;
    border: 2px dashed var(--gstop-primary);
}

.gstop-confirmacion-msg {
    color: var(--gstop-mid);
    font-size: 14px;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---- Loader ---- */
.gstop-loader {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.88);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 99;
    border-radius: var(--gstop-radius);
    backdrop-filter: blur(3px);
}

.gstop-spinner {
    width: 42px;
    height: 42px;
    border: 4px solid var(--gstop-border);
    border-top-color: var(--gstop-primary);
    border-radius: 50%;
    animation: gstop-spin .8s linear infinite;
}

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

.gstop-loader p {
    font-size: 14px;
    color: var(--gstop-mid);
    font-weight: 500;
}

/* ---- Vacío ---- */
.gstop-vacio {
    text-align: center;
    padding: 40px;
    color: var(--gstop-mid);
    font-size: 15px;
}

/* =============================================
   RESPONSIVE - AÑADIDOS
   ============================================= */

/* Grid paso 1 */
.gstop-paso1-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 0.8fr 2fr 1.2fr 0.8fr;
    gap: 12px;
    align-items: end;
}

@media (max-width: 900px) {
    .gstop-paso1-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 600px) {
    /* Paso 1: todo en columna */
    .gstop-paso1-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Paso 3: columna única */
    .gstop-grid-paso3 {
        grid-template-columns: 1fr;
    }

    /* Tarjetas vehículo: columna única */
    .gstop-vehiculo-card {
        grid-template-columns: 1fr !important;
    }
    .gstop-vehiculo-foto {
        height: 180px;
        border-radius: 10px 10px 0 0;
    }

    /* Steps más pequeños */
    .gstop-step {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    .gstop-step-line {
        width: 24px;
    }

    /* Acciones en columna */
    .gstop-actions {
        flex-direction: column;
        gap: 10px;
    }
    .gstop-actions .gstop-btn {
        width: 100%;
        justify-content: center;
    }

    /* Botón buscar ancho completo */
    #gstop-btn-buscar {
        width: 100%;
    }

    /* Extras: columna única */
    .gstop-extra-item {
        grid-template-columns: 56px 1fr auto !important;
    }

    /* Cupón */
    .gstop-cupon-wrap {
        flex-direction: column;
    }
    .gstop-cupon-wrap .gstop-btn {
        width: 100%;
    }

    /* Datos personales: columna única */
    .gstop-grid-2 {
        grid-template-columns: 1fr !important;
    }

    /* Padding reducido en cards */
    .gstop-card {
        padding: 16px;
    }

    /* Título más pequeño */
    .gstop-titulo {
        font-size: 18px;
    }

    /* Resumen fechas compacto */
    .gstop-resumen-fechas {
        font-size: 12px;
        padding: 8px 12px !important;
    }
}

@media (max-width: 400px) {
    .gstop-wrap {
        padding: 0 4px;
    }
    .gstop-paso-header {
        padding: 16px 12px 12px;
    }
}

/* ============================================================
   GSTOP — Shortcode Términos y Condiciones
   ============================================================ */
.gstop-terminos {
    max-width: 860px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}
.gstop-terminos__titulo {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}
.gstop-terminos__contenido h2,
.gstop-terminos__contenido h3 {
    margin-top: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}
.gstop-terminos__contenido p { margin-bottom: 12px; }
.gstop-terminos__contenido ul,
.gstop-terminos__contenido ol {
    padding-left: 20px;
    margin-bottom: 12px;
}

/* ============================================================
   GSTOP — Shortcode Extras
   ============================================================ */
.gstop-extras-listado {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin: 0 auto;
}
.gstop-extra-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    transition: box-shadow .2s;
}
.gstop-extra-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.gstop-extra-card__img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}
.gstop-extra-card__body { padding: 16px; }
.gstop-extra-card__titulo {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #1a1a1a;
}
.gstop-extra-card__desc {
    font-size: 13px;
    color: #666;
    margin: 0 0 12px;
    line-height: 1.5;
}
.gstop-extra-card__precio {
    font-size: 15px;
    font-weight: 700;
    color: #e85d3a;
}
.gstop-extra-card__precio span {
    font-size: 12px;
    font-weight: 400;
    color: #999;
}

/* ============================================================
   GSTOP — Shortcode Flota
   ============================================================ */
.gstop-flota-listado {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin: 0 auto;
}
.gstop-flota-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    transition: box-shadow .2s;
}
.gstop-flota-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.gstop-flota-card__img img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}
.gstop-flota-card__body { padding: 18px; }
.gstop-flota-card__categoria {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #e85d3a;
    margin-bottom: 6px;
}
.gstop-flota-card__nombre {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1a1a1a;
}
.gstop-flota-card__desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 14px;
}
.gstop-flota-card__specs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.gstop-flota-card__specs li {
    font-size: 13px;
    color: #444;
    background: #f5f5f5;
    border-radius: 6px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ============================================================
   GSTOP — Shortcode Promociones
   ============================================================ */
.gstop-sin-promociones {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    text-align: center;
    padding: 32px 16px;
}
.gstop-promociones-listado {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin: 0 auto;
}
.gstop-promo-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    transition: box-shadow .2s;
}
.gstop-promo-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.gstop-promo-card__img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.gstop-promo-card__body { padding: 18px; }
.gstop-promo-card__nombre {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #1a1a1a;
}
.gstop-promo-badge {
    display: inline-block;
    background: #e85d3a;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
}
.gstop-promo-card__fechas {
    font-size: 13px;
    color: #888;
    margin: 6px 0;
}
.gstop-promo-card__terminos {
    font-size: 12px;
    color: #aaa;
    margin: 8px 0 0;
    line-height: 1.5;
    border-top: 1px solid #f0f0f0;
    padding-top: 8px;
}

/* ============================================================
   GSTOP — Botón Reservar (compartido)
   ============================================================ */
.gstop-btn-reservar {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 22px;
    background: #e85d3a;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s, transform .1s;
}
.gstop-btn-reservar:hover {
    background: #c94d2e;
    transform: translateY(-1px);
    text-decoration: none;
}

/* ============================================================
   GSTOP — Extras en filas
   ============================================================ */
.gstop-extras-listado--filas {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.gstop-extra-card--fila {
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
}
.gstop-extra-card--fila .gstop-extra-card__img {
    flex-shrink: 0;
    width: 140px;
    height: 100px;
}
.gstop-extra-card--fila .gstop-extra-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gstop-extra-card--fila .gstop-extra-card__body {
    flex: 1;
    padding: 14px 0;
}
.gstop-extra-card--fila .gstop-extra-card__accion {
    flex-shrink: 0;
    padding: 0 20px 0 0;
}
@media (max-width: 520px) {
    .gstop-extra-card--fila {
        flex-direction: column;
        align-items: flex-start;
    }
    .gstop-extra-card--fila .gstop-extra-card__img {
        width: 100%;
        height: 160px;
    }
    .gstop-extra-card--fila .gstop-extra-card__body {
        padding: 14px 16px 0;
    }
    .gstop-extra-card--fila .gstop-extra-card__accion {
        padding: 0 16px 16px;
    }
}
