/* =========================================================
   AMAZING MEXICAN CRAVINGS
   KIOSK MENU
   Compatible con navegadores WebView antiguos
   ========================================================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body.amz-kiosk-body {
    color: #171717;
    background: #f4f4f4;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* El atributo hidden debe funcionar incluso en navegadores antiguos */
[hidden] {
    display: none !important;
}

/* =========================================================
   OCULTAR ASTRA EN LAS PÁGINAS DEL KIOSKO
   ========================================================= */

body.amz-kiosk-body #masthead,
body.amz-kiosk-body .site-header,
body.amz-kiosk-body .ast-mobile-header-wrap,
body.amz-kiosk-body .ast-desktop-header-content,
body.amz-kiosk-body .ast-above-header-wrap,
body.amz-kiosk-body .ast-main-header-wrap,
body.amz-kiosk-body .ast-primary-header-bar,
body.amz-kiosk-body .ast-below-header-wrap,
body.amz-kiosk-body #colophon,
body.amz-kiosk-body .site-footer,
body.amz-kiosk-body .site-above-footer-wrap,
body.amz-kiosk-body .site-primary-footer-wrap,
body.amz-kiosk-body .site-below-footer-wrap {
    display: none !important;
}

body.amz-kiosk-body #page,
body.amz-kiosk-body .site,
body.amz-kiosk-body #content,
body.amz-kiosk-body .site-content,
body.amz-kiosk-body .site-content > .ast-container,
body.amz-kiosk-body #primary {
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

/* =========================================================
   ESTRUCTURA GENERAL
   ========================================================= */

.amz-kiosk-page {
    width: 100%;
    min-height: 100vh;
    padding-bottom: 118px;
    background: #f4f4f4;
}

.amz-kiosk-shell {
    width: 94%;
    max-width: 1500px;
    margin-right: auto;
    margin-left: auto;
}

/* =========================================================
   CABECERA
   ========================================================= */

.amz-kiosk-header {
    padding: 30px 0;
    color: #ffffff;
    background: #151515;
    border-bottom: 8px solid #e10a03;
}

.amz-kiosk-header-inner {
    display: flex;
    align-items: center;
}

.amz-kiosk-logo {
    display: block;
    flex: 0 0 150px;
    width: 150px;
    height: 150px;
    margin-right: 35px;
    padding: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.amz-kiosk-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.amz-kiosk-header-copy {
    flex: 1 1 auto;
    min-width: 0;
}

.amz-kiosk-eyebrow {
    margin: 0 0 9px;
    color: #ffcd19;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.amz-kiosk-header-copy h1 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: "ADLaM Display", Arial, Helvetica, sans-serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.1;
}

.amz-kiosk-header-copy > p:last-child {
    margin: 0;
    color: #d8d8d8;
    font-size: 22px;
    line-height: 1.5;
}

/* =========================================================
   CATEGORÍAS
   ========================================================= */

.amz-kiosk-categories {
    padding: 38px 0 48px;
}

.amz-kiosk-category-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: -12px;
}

/*
 * Cuatro categorías por fila en pantallas grandes.
 * Se usan porcentajes y Flexbox para mayor compatibilidad.
 */
.amz-kiosk-category-card {
    position: relative;
    display: block;
    width: calc(25% - 24px);
    margin: 12px;
    overflow: hidden;
    color: #171717;
    background: #ffffff;
    border: 2px solid #e4e4e4;
    border-radius: 22px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
}

.amz-kiosk-category-card:hover,
.amz-kiosk-category-card:focus,
.amz-kiosk-category-card:active {
    color: #171717;
    border-color: #e10a03;
    text-decoration: none;
    outline: none;
}

.amz-kiosk-category-card:active {
    background: #fff6f5;
}

/* Imagen grande */

.amz-kiosk-category-image {
    position: relative;
    display: block;
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: #eeeeee;
}

.amz-kiosk-category-image img {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    object-position: center;
}

/* Letra temporal cuando la categoría no tiene imagen */

.amz-kiosk-category-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #ffffff;
    background: #e10a03;
    font-family: "ADLaM Display", Arial, Helvetica, sans-serif;
    font-size: 90px;
    font-weight: 400;
}

/* Nombre */

.amz-kiosk-category-name {
    display: block;
    min-height: 80px;
    padding: 20px 18px 8px;
    color: #151515;
    font-family: "ADLaM Display", Arial, Helvetica, sans-serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
}

/* Acción inferior */

.amz-kiosk-category-action {
    display: block;
    width: 82%;
    min-height: 54px;
    margin: 8px auto 22px;
    padding: 14px 12px;
    color: #ffffff;
    background: #e10a03;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    line-height: 26px;
    text-align: center;
    text-transform: uppercase;
}

.amz-kiosk-category-card:hover .amz-kiosk-category-action,
.amz-kiosk-category-card:focus .amz-kiosk-category-action,
.amz-kiosk-category-card:active .amz-kiosk-category-action {
    background: #b80702;
}

/* =========================================================
   MENSAJES
   ========================================================= */

.amz-kiosk-message {
    padding: 90px 0;
    text-align: center;
}

.amz-kiosk-message h2 {
    margin: 0 0 14px;
    color: #111111;
    font-family: "ADLaM Display", Arial, Helvetica, sans-serif;
    font-size: 42px;
    font-weight: 400;
}

.amz-kiosk-message p {
    margin: 0;
    color: #555555;
    font-size: 21px;
}

/* =========================================================
   BARRA INFERIOR
   ========================================================= */

.amz-kiosk-footer {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    min-height: 92px;
    padding: 13px 0;
    color: #ffffff;
    background: #151515;
    border-top: 5px solid #e10a03;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.16);
}

.amz-kiosk-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.amz-kiosk-footer-inner > span {
    display: block;
    padding-right: 20px;
    font-size: 20px;
    font-weight: 600;
}

.amz-kiosk-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 60px;
    padding: 14px 28px;
    color: #ffffff;
    background: #e10a03;
    border-radius: 12px;
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.amz-kiosk-footer a:hover,
.amz-kiosk-footer a:focus,
.amz-kiosk-footer a:active {
    color: #ffffff;
    background: #b80702;
    text-decoration: none;
    outline: none;
}

/* =========================================================
   TABLET Y KIOSKOS CON RESOLUCIÓN INTERMEDIA
   ========================================================= */

@media screen and (max-width: 1100px) {
    .amz-kiosk-header-copy h1 {
        font-size: 44px;
    }

    .amz-kiosk-logo {
        flex-basis: 130px;
        width: 130px;
        height: 130px;
        margin-right: 28px;
    }

    .amz-kiosk-category-card {
        width: calc(33.333% - 24px);
    }

    .amz-kiosk-category-image {
        height: 215px;
    }

    .amz-kiosk-category-name {
        font-size: 21px;
    }
}

/* =========================================================
   TELÉFONOS Y PANTALLAS ANGOSTAS
   ========================================================= */

@media screen and (max-width: 700px) {
    .amz-kiosk-page {
        padding-bottom: 102px;
    }

    .amz-kiosk-shell {
        width: 94%;
    }

    .amz-kiosk-header {
        padding: 20px 0;
        border-bottom-width: 6px;
    }

    .amz-kiosk-header-inner {
        align-items: center;
    }

    .amz-kiosk-logo {
        flex-basis: 86px;
        width: 86px;
        height: 86px;
        margin-right: 18px;
        padding: 5px;
    }

    .amz-kiosk-eyebrow {
        display: none;
    }

    .amz-kiosk-header-copy h1 {
        margin-bottom: 5px;
        font-size: 28px;
        line-height: 1.15;
    }

    .amz-kiosk-header-copy > p:last-child {
        font-size: 15px;
        line-height: 1.35;
    }

    .amz-kiosk-categories {
        padding: 20px 0 30px;
    }

    .amz-kiosk-category-grid {
        margin: -7px;
    }

    .amz-kiosk-category-card {
        width: calc(50% - 14px);
        margin: 7px;
        border-radius: 16px;
    }

    .amz-kiosk-category-image {
        height: 150px;
    }

    .amz-kiosk-category-fallback {
        font-size: 60px;
    }

    .amz-kiosk-category-name {
        min-height: 62px;
        padding: 14px 8px 5px;
        font-size: 16px;
        line-height: 1.25;
    }

    .amz-kiosk-category-action {
        width: 86%;
        min-height: 46px;
        margin: 7px auto 14px;
        padding: 10px 6px;
        border-radius: 9px;
        font-size: 13px;
        line-height: 26px;
    }

    .amz-kiosk-footer {
        min-height: 82px;
        padding: 10px 0;
    }

    .amz-kiosk-footer-inner > span {
        display: none;
    }

    .amz-kiosk-footer a {
        width: 100%;
        min-width: 0;
        min-height: 56px;
        font-size: 17px;
    }
}

/* =========================================================
   TELÉFONOS MUY PEQUEÑOS
   ========================================================= */

@media screen and (max-width: 390px) {
    .amz-kiosk-category-image {
        height: 130px;
    }

    .amz-kiosk-category-name {
        min-height: 58px;
        font-size: 14px;
    }

    .amz-kiosk-category-action {
        font-size: 12px;
    }
}
/* =========================================================
   PÁGINA DE PRODUCTOS DEL KIOSKO
   Compatible con WebView 61
   ========================================================= */

.amz-kiosk-products-page {
    min-height: 100vh;
    padding-bottom: 0;
    background: #f3f3f3;
}

/* =========================================================
   HEADER DE PRODUCTOS
   ========================================================= */

.amz-kiosk-products-header {
    padding: 20px 0;
    color: #ffffff;
    background: #151515;
    border-bottom: 7px solid #e10a03;
}

.amz-kiosk-products-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.amz-kiosk-back-button {
    display: flex;
    flex: 0 0 210px;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    margin-right: 24px;
    padding: 12px 20px;
    color: #ffffff;
    background: #e10a03;
    border: 0;
    border-radius: 12px;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.amz-kiosk-back-button span:first-child {
    margin-right: 10px;
    font-size: 30px;
    line-height: 1;
}

.amz-kiosk-back-button:hover,
.amz-kiosk-back-button:focus,
.amz-kiosk-back-button:active {
    color: #ffffff;
    background: #b80702;
    text-decoration: none;
    outline: none;
}

.amz-kiosk-products-heading {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
}

.amz-kiosk-products-heading p {
    margin: 0 0 4px;
    color: #ffcd19;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

.amz-kiosk-products-heading h1 {
    margin: 0;
    color: #ffffff;
    font-family: "ADLaM Display", Arial, Helvetica, sans-serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.15;
}

.amz-kiosk-products-logo {
    display: block;
    flex: 0 0 92px;
    width: 92px;
    height: 92px;
    margin-left: 24px;
    padding: 5px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.amz-kiosk-products-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* =========================================================
   DISTRIBUCIÓN GENERAL
   Productos a la izquierda y carrito a la derecha
   ========================================================= */

.amz-kiosk-products-layout {
    display: flex;
    width: 96%;
    max-width: 1700px;
    margin-right: auto;
    margin-left: auto;
    padding: 28px 0;
}

.amz-kiosk-products-area {
    flex: 1 1 auto;
    min-width: 0;
    padding-right: 28px;
}

.amz-kiosk-products-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: -11px;
}

/* =========================================================
   TARJETAS DE PRODUCTOS
   ========================================================= */

.amz-kiosk-product-card {
    display: flex;
    flex-direction: column;
    width: calc(33.333% - 22px);
    margin: 11px;
    overflow: hidden;
    background: #ffffff;
    border: 2px solid #e1e1e1;
    border-radius: 20px;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.09);
}

.amz-kiosk-product-image {
    position: relative;
    width: 100%;
    height: 245px;
    overflow: hidden;
    background: #ececec;
}

.amz-kiosk-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    object-position: center;
}

.amz-kiosk-product-details {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 235px;
    padding: 20px;
}

.amz-kiosk-product-details h2 {
    margin: 0 0 10px;
    color: #151515;
    font-family: "ADLaM Display", Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
}

.amz-kiosk-product-details > p {
    margin: 0 0 18px;
    color: #595959;
    font-size: 16px;
    line-height: 1.45;
}

.amz-kiosk-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.amz-kiosk-product-price {
    padding-right: 12px;
    color: #111111;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.25;
}

.amz-kiosk-product-price del {
    display: block;
    color: #888888;
    font-size: 15px;
    font-weight: 500;
}

.amz-kiosk-product-price ins {
    color: #e10a03;
    text-decoration: none;
}

/* Botón + grande */

.amz-kiosk-add-button {
    display: flex;
    flex: 0 0 68px;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    min-height: 68px;
    padding: 0;
    color: #ffffff;
    background: #e10a03;
    border: 0;
    border-radius: 14px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
}

.amz-kiosk-add-button:hover,
.amz-kiosk-add-button:focus,
.amz-kiosk-add-button:active {
    color: #ffffff;
    background: #b80702;
    outline: none;
}

.amz-kiosk-add-button.is-loading {
    color: transparent;
    background: #8e8e8e;
    cursor: wait;
}

.amz-kiosk-add-button.is-loading:after {
    display: block;
    width: 28px;
    height: 28px;
    content: "";
    border: 4px solid rgba(255, 255, 255, 0.45);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: amzKioskSpin 0.75s linear infinite;
}

.amz-kiosk-add-button.is-success {
    background: #27843c;
}

.amz-kiosk-add-button.is-success span {
    display: none;
}

.amz-kiosk-add-button.is-success:after {
    color: #ffffff;
    content: "✓";
    font-size: 34px;
    font-weight: 700;
}

.amz-kiosk-add-button.is-disabled {
    flex-basis: auto;
    width: auto;
    min-width: 125px;
    padding: 8px 12px;
    color: #777777;
    background: #dddddd;
    font-size: 14px;
    cursor: not-allowed;
}

/* =========================================================
   CARRITO LATERAL
   ========================================================= */

.amz-kiosk-cart-panel {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    flex: 0 0 390px;
    width: 390px;
    height: calc(100vh - 40px);
    min-height: 620px;
    overflow: hidden;
    background: #ffffff;
    border: 2px solid #dedede;
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.11);
}

.amz-kiosk-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 105px;
    padding: 20px 22px;
    color: #ffffff;
    background: #151515;
    border-bottom: 6px solid #e10a03;
}

.amz-kiosk-cart-header p {
    margin: 0 0 3px;
    color: #ffcd19;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

.amz-kiosk-cart-header h2 {
    margin: 0;
    color: #ffffff;
    font-family: "ADLaM Display", Arial, Helvetica, sans-serif;
    font-size: 33px;
    font-weight: 400;
    line-height: 1.1;
}

.amz-kiosk-cart-count {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: #ffffff;
    background: #e10a03;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
}

.amz-kiosk-cart-items {
    height: calc(100% - 335px);
    min-height: 275px;
    padding: 14px 18px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Producto del carrito */

.amz-kiosk-cart-item {
    display: flex;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid #e5e5e5;
}

.amz-kiosk-cart-item img {
    display: block;
    flex: 0 0 74px;
    width: 74px;
    height: 74px;
    margin-right: 14px;
    object-fit: cover;
    border-radius: 12px;
    background: #eeeeee;
}

.amz-kiosk-cart-item-copy {
    flex: 1 1 auto;
    min-width: 0;
}

.amz-kiosk-cart-item-copy h3 {
    margin: 0 0 5px;
    color: #171717;
    font-family: "ADLaM Display", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
}

.amz-kiosk-cart-item-copy p {
    margin: 0 0 3px;
    color: #666666;
    font-size: 14px;
}

.amz-kiosk-cart-item-copy strong {
    color: #111111;
    font-size: 15px;
}

/* Carrito vacío */

.amz-kiosk-empty-cart {
    padding: 65px 18px;
    text-align: center;
}

.amz-kiosk-empty-cart > span {
    display: block;
    margin-bottom: 16px;
    font-size: 58px;
    line-height: 1;
}

.amz-kiosk-empty-cart h3 {
    margin: 0 0 8px;
    color: #151515;
    font-family: "ADLaM Display", Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: 400;
}

.amz-kiosk-empty-cart p {
    margin: 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.45;
}

/* Total y botones */

.amz-kiosk-cart-summary {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 230px;
    padding: 18px;
    background: #ffffff;
    border-top: 2px solid #e7e7e7;
}

.amz-kiosk-cart-summary > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.amz-kiosk-cart-summary > div span {
    color: #333333;
    font-size: 18px;
    font-weight: 600;
}

.amz-kiosk-cart-summary > div strong {
    color: #111111;
    font-size: 23px;
    font-weight: 700;
}

.amz-kiosk-view-cart-button,
.amz-kiosk-continue-button,
.amz-kiosk-message-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.amz-kiosk-view-cart-button {
    margin-bottom: 10px;
    color: #ffffff;
    background: #e10a03;
}

.amz-kiosk-view-cart-button:hover,
.amz-kiosk-view-cart-button:focus,
.amz-kiosk-view-cart-button:active {
    color: #ffffff;
    background: #b80702;
    text-decoration: none;
    outline: none;
}

.amz-kiosk-continue-button,
.amz-kiosk-message-button {
    color: #171717;
    background: #eeeeee;
    border: 2px solid #d7d7d7;
}

.amz-kiosk-continue-button:hover,
.amz-kiosk-continue-button:focus,
.amz-kiosk-continue-button:active,
.amz-kiosk-message-button:hover,
.amz-kiosk-message-button:focus,
.amz-kiosk-message-button:active {
    color: #171717;
    background: #dddddd;
    text-decoration: none;
    outline: none;
}

.amz-kiosk-message-button {
    width: 300px;
    margin: 28px auto 0;
}

/* =========================================================
   MENSAJE FLOTANTE AL AGREGAR
   ========================================================= */

.amz-kiosk-toast {
    position: fixed;
    top: 25px;
    left: 50%;
    z-index: 999999;
    display: none;
    min-width: 300px;
    max-width: 85%;
    padding: 18px 28px;
    color: #ffffff;
    background: #27843c;
    border-radius: 12px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.25);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    transform: translateX(-50%);
}

.amz-kiosk-toast.is-visible {
    display: block;
}

/* =========================================================
   CARRITO INFERIOR PARA PANTALLAS PEQUEÑAS
   ========================================================= */

.amz-kiosk-mobile-cart {
    display: none;
}

/* =========================================================
   RESOLUCIONES INTERMEDIAS
   ========================================================= */

@media screen and (max-width: 1300px) {
    .amz-kiosk-product-card {
        width: calc(50% - 22px);
    }

    .amz-kiosk-cart-panel {
        flex-basis: 350px;
        width: 350px;
    }

    .amz-kiosk-product-image {
        height: 230px;
    }
}

@media screen and (max-width: 950px) {
    .amz-kiosk-products-page {
        padding-bottom: 100px;
    }

    .amz-kiosk-products-header-inner {
        width: 94%;
    }

    .amz-kiosk-back-button {
        flex-basis: 150px;
        min-height: 58px;
        margin-right: 16px;
        font-size: 16px;
    }

    .amz-kiosk-products-logo {
        flex-basis: 75px;
        width: 75px;
        height: 75px;
        margin-left: 16px;
    }

    .amz-kiosk-products-heading h1 {
        font-size: 32px;
    }

    .amz-kiosk-products-layout {
        display: block;
        width: 94%;
    }

    .amz-kiosk-products-area {
        padding-right: 0;
    }

    .amz-kiosk-cart-panel {
        display: none;
    }

    .amz-kiosk-mobile-cart {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 78px;
        padding: 15px 24px;
        color: #ffffff;
        background: #e10a03;
        border-top: 4px solid #151515;
        font-size: 19px;
        font-weight: 700;
        text-decoration: none;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .amz-kiosk-mobile-cart:hover,
    .amz-kiosk-mobile-cart:focus,
    .amz-kiosk-mobile-cart:active {
        color: #ffffff;
        background: #b80702;
        text-decoration: none;
        outline: none;
    }
}

/* =========================================================
   TELÉFONOS
   ========================================================= */

@media screen and (max-width: 650px) {
    .amz-kiosk-products-header {
        padding: 13px 0;
        border-bottom-width: 5px;
    }

    .amz-kiosk-back-button {
        flex-basis: 60px;
        width: 60px;
        min-width: 60px;
        min-height: 54px;
        margin-right: 10px;
        padding: 5px;
    }

    .amz-kiosk-back-button span:first-child {
        margin-right: 0;
        font-size: 29px;
    }

    .amz-kiosk-back-button span:last-child {
        display: none;
    }

    .amz-kiosk-products-logo {
        flex-basis: 58px;
        width: 58px;
        height: 58px;
        margin-left: 10px;
        padding: 3px;
    }

    .amz-kiosk-products-heading p {
        display: none;
    }

    .amz-kiosk-products-heading h1 {
        font-size: 23px;
    }

    .amz-kiosk-products-layout {
        width: 94%;
        padding: 17px 0 25px;
    }

    .amz-kiosk-products-grid {
        margin: -7px;
    }

    .amz-kiosk-product-card {
        width: calc(50% - 14px);
        margin: 7px;
        border-radius: 15px;
    }

    .amz-kiosk-product-image {
        height: 150px;
    }

    .amz-kiosk-product-details {
        min-height: 195px;
        padding: 14px;
    }

    .amz-kiosk-product-details h2 {
        margin-bottom: 7px;
        font-size: 17px;
    }

    .amz-kiosk-product-details > p {
        margin-bottom: 12px;
        font-size: 13px;
        line-height: 1.35;
    }

    .amz-kiosk-product-price {
        font-size: 17px;
    }

    .amz-kiosk-add-button {
        flex-basis: 52px;
        width: 52px;
        height: 52px;
        min-height: 52px;
        border-radius: 11px;
        font-size: 34px;
    }

    .amz-kiosk-mobile-cart {
        min-height: 72px;
        padding: 13px 18px;
        font-size: 17px;
    }
}

@media screen and (max-width: 390px) {
    .amz-kiosk-product-image {
        height: 130px;
    }

    .amz-kiosk-product-details {
        min-height: 180px;
        padding: 11px;
    }

    .amz-kiosk-product-details h2 {
        font-size: 15px;
    }

    .amz-kiosk-product-details > p {
        display: none;
    }

    .amz-kiosk-product-price {
        font-size: 15px;
    }

    .amz-kiosk-add-button {
        flex-basis: 47px;
        width: 47px;
        height: 47px;
        min-height: 47px;
        font-size: 31px;
    }
}

/* =========================================================
   ANIMACIÓN SIMPLE COMPATIBLE
   ========================================================= */

@keyframes amzKioskSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
