:root {
    --shimaya-red: #e30613;
    --shimaya-red-dark: #b9040e;
    --shimaya-black: #111111;
    --shimaya-dark: #171717;
    --shimaya-white: #ffffff;
    --shimaya-gray: #f6f6f6;
    --shimaya-border: #dddddd;
    --shimaya-gold: #f5b400;
    --shimaya-soft-red: #ffe3e5;
    --shimaya-card-shadow: 0 10px 26px rgba(0,0,0,.10);
}

* {
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #1f1f1f;
    background-color: #f7f7f7;
    background-image: linear-gradient(rgba(255,255,255,.88), rgba(255,255,255,.88)), url('../fondo-shimaya.png');
    background-repeat: repeat;
    background-size: 850px;
    background-attachment: fixed;
}

a {
    transition: .2s;
}

/* HEADER */
.shimaya-header {
    background: var(--shimaya-black);
    border-top: 5px solid var(--shimaya-red);
    color: #fff;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 0 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

    .brand img {
        width: 62px;
        height: 62px;
        object-fit: contain;
        background: #fff;
        padding: 0;
    }

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    flex: 1;
}

    .main-nav a,
    .header-actions a {
        color: #fff;
        text-decoration: none;
        font-weight: 800;
    }

        .main-nav a:hover,
        .header-actions a:hover {
            opacity: .85;
        }

.search-link {
    font-size: 19px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.order-link {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.order-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    color: var(--shimaya-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-login {
    border: 1px solid #fff;
    border-radius: 30px;
    padding: 11px 28px;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 800;
}

.cart-link {
    position: relative;
    font-size: 20px;
}

    .cart-link span {
        position: absolute;
        top: -16px;
        right: -14px;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--shimaya-red);
        color: #fff;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* LOGIN */
.login-page {
    min-height: calc(100vh - 76px);
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 45px 20px 70px;
}

.login-box {
    width: 100%;
    max-width: 560px;
    background: rgba(255,255,255,.96);
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(0,0,0,.14);
    overflow: hidden;
    text-align: center;
}

.login-main-logo {
    width: 155px;
    height: 155px;
    object-fit: contain;
    margin: 24px auto 12px;
    display: block;
}

.login-header {
    background: var(--shimaya-red);
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    padding: 16px;
}

.login-body {
    padding: 30px 70px 34px;
}

.form-group-shimaya {
    text-align: left;
    margin-bottom: 20px;
}

    .form-group-shimaya label {
        display: block;
        font-weight: 800;
        color: #222;
        margin-bottom: 8px;
    }

        .form-group-shimaya label span {
            color: var(--shimaya-red);
        }

.input-shimaya {
    width: 100%;
    height: 46px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 15px;
    outline: none;
    background: #fff;
}

    .input-shimaya:focus {
        border-color: var(--shimaya-red);
        box-shadow: 0 0 0 3px rgba(227,6,19,.12);
    }

.btn-login-shimaya {
    width: 220px;
    height: 46px;
    border: none;
    border-radius: 8px;
    background: var(--shimaya-red);
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
    margin-top: 6px;
}

    .btn-login-shimaya:hover {
        background: var(--shimaya-red-dark);
    }

.login-links {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .login-links a {
        color: var(--shimaya-red);
        font-weight: 800;
        text-decoration: none;
    }

        .login-links a:hover {
            text-decoration: underline;
        }

.login-error {
    background: #ffe5e8;
    color: #b9000c;
    border: 1px solid #ffb6bd;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 16px;
    font-weight: 800;
}

/* GENERAL */
.page-section {
    padding: 56px 0 70px;
}

.login-wrap {
    max-width: 760px;
    margin: auto;
    text-align: center;
}

.back-link {
    display: block;
    text-align: left;
    color: #8a8a8a;
    font-size: 28px;
    margin-bottom: 8px;
    text-decoration: none;
}

.page-title {
    font-weight: 900;
    font-size: 42px;
    margin-bottom: 45px;
}

.rewards-title {
    color: var(--shimaya-red);
    font-weight: 900;
    letter-spacing: 12px;
    font-size: 32px;
    margin-bottom: 24px;
}

.login-subtitle {
    font-size: 25px;
    line-height: 1.35;
    font-weight: 800;
    color: #4a4a4a;
    margin-bottom: 52px;
}

.form-area {
    text-align: left;
}

.form-label {
    font-weight: 800;
    color: #556062;
    margin-bottom: 10px;
}

.form-control.shimaya-input {
    height: 70px;
    border-radius: 10px;
    border: 1px solid #ccd2d2;
    font-size: 20px;
}

.btn-shimaya {
    width: 100%;
    border: none;
    background: var(--shimaya-red);
    color: #fff;
    border-radius: 40px;
    padding: 20px 30px;
    font-size: 20px;
    font-weight: 900;
    transition: .2s;
}

    .btn-shimaya:hover {
        background: var(--shimaya-red-dark);
    }

.forgot-link {
    display: block;
    text-align: center;
    margin-top: 24px;
    color: #111;
    font-weight: 700;
}

.alert-shimaya {
    border-radius: 12px;
    margin-top: 18px;
}

/* REWARDS */
.hero-title {
    text-align: center;
    font-weight: 900;
    font-size: 32px;
    margin: 28px 0;
}

.points-panel {
    max-width: 860px;
    margin: 0 auto 58px;
    background: rgba(243,243,243,.95);
    border-radius: 14px;
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}

.points-card {
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    padding: 22px;
}

.points-number {
    font-size: 28px;
    font-weight: 900;
    color: #111;
}

.star {
    color: var(--shimaya-gold);
}

.progress-line {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 25px;
    color: #777;
    font-size: 13px;
}

    .progress-line::before {
        content: '';
        height: 7px;
        width: 7px;
        background: var(--shimaya-gold);
        border-radius: 50%;
    }

.points-summary {
    text-align: center;
    border-left: 1px solid #ccc;
    padding-left: 28px;
}

    .points-summary h3 {
        font-size: 22px;
        font-weight: 900;
    }

.btn-small-red {
    display: inline-block;
    margin-top: 18px;
    background: var(--shimaya-red);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    padding: 12px 28px;
    border-radius: 26px;
}

.section-heading {
    text-align: center;
    font-weight: 900;
    font-size: 32px;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 28px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    max-width: 1040px;
    margin: auto;
}

.benefit-card {
    border: 1px solid #d1d1d1;
    background: rgba(248,249,249,.96);
    border-radius: 12px;
    padding: 20px;
    min-height: 190px;
}

.benefit-icon {
    font-size: 38px;
    color: var(--shimaya-red);
    margin-bottom: 42px;
}

.benefit-card h4 {
    font-size: 18px;
    font-weight: 900;
}

/* MENU MODERNO */
.menu-modern-page,
.menu-page,
.menu-hero {
    background: transparent;
}

.menu-modern-page {
    padding: 42px 0 80px;
}

.menu-modern-container,
.menu-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.menu-modern-title h1,
.menu-main-title,
.menu-title {
    font-size: 38px;
    font-weight: 900;
    margin: 0 0 8px;
    color: #111;
}

.menu-modern-title p,
.menu-intro {
    margin: 0 0 28px;
    color: #555;
    font-size: 16px;
}

.menu-filter-card {
    background: rgba(255,255,255,.96);
    border: 1px solid #ddd;
    border-radius: 18px;
    padding: 22px;
    display: grid;
    grid-template-columns: 280px 1fr 150px;
    gap: 18px;
    align-items: end;
    box-shadow: 0 8px 22px rgba(0,0,0,.06);
    margin-bottom: 34px;
}

.filter-group label {
    display: block;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 8px;
    color: #111;
}

.filter-control {
    width: 100%;
    height: 46px;
    border: 1px solid #d6d6d6;
    border-radius: 12px;
    padding: 0 14px;
    font-size: 15px;
    outline: none;
    background: #fff;
}

    .filter-control:focus {
        border-color: var(--shimaya-red);
        box-shadow: 0 0 0 3px rgba(227,6,19,.12);
    }

.btn-menu-search {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 12px;
    background: var(--shimaya-red);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

    .btn-menu-search:hover {
        background: var(--shimaya-red-dark);
    }

.menu-results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    border-bottom: 1px solid #999;
    padding-bottom: 18px;
    margin-bottom: 22px;
}

    .menu-results-header span {
        color: var(--shimaya-red);
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .menu-results-header h2 {
        font-size: 28px;
        font-weight: 900;
        margin: 4px 0 0;
    }

.result-count {
    background: transparent;
    color: #111;
    padding: 0;
    border-radius: 0;
    font-weight: 900;
    white-space: nowrap;
}

.menu-products-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.menu-product-row {
    background: rgba(255,255,255,.96);
    border: 1px solid #d8d8d8;
    border-radius: 18px;
    padding: 20px;
    display: flex;
    gap: 18px;
    min-height: 160px;
    transition: .2s;
}

    .menu-product-row:hover {
        transform: translateY(-3px);
        box-shadow: var(--shimaya-card-shadow);
        border-color: var(--shimaya-red);
    }

.menu-product-icon {
    min-width: 76px;
    width: 76px;
    height: 76px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.menu-product-info h3 {
    font-size: 18px;
    font-weight: 900;
    margin: 0 0 6px;
    color: #111;
}

.product-category {
    display: inline-block;
    background: var(--shimaya-soft-red);
    color: var(--shimaya-red);
    font-size: 12px;
    font-weight: 900;
    border-radius: 999px;
    padding: 5px 10px;
    margin-bottom: 10px;
}

.menu-product-info p {
    margin: 0;
    color: #555;
    line-height: 1.45;
    font-size: 14px;
}

.empty-results {
    background: rgba(255,255,255,.96);
    border: 1px dashed var(--shimaya-red);
    border-radius: 16px;
    color: var(--shimaya-red);
    font-weight: 900;
    text-align: center;
    padding: 28px;
    margin-bottom: 20px;
}

.pager-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.pager-btn {
    border: none;
    background: #111;
    color: #fff;
    border-radius: 999px;
    padding: 11px 22px;
    font-weight: 900;
    cursor: pointer;
}

    .pager-btn:hover {
        background: var(--shimaya-red);
    }

    .pager-btn:disabled {
        background: #d2d2d2;
        cursor: not-allowed;
    }

.pager-label {
    font-weight: 900;
    color: #111;
}

/* CLASES ANTIGUAS DE MENU */
.menu-hero {
    border-bottom: 1px solid #ddd;
    padding: 42px 0 22px;
}

.tabs-row,
.category-row,
.menu-categorias {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

    .tabs-row a,
    .category-row a,
    .categoria-link {
        color: #111;
        text-decoration: none;
        font-weight: 800;
    }

.categoria-link {
    padding: 12px 22px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #ddd;
}

    .categoria-link:hover,
    .categoria-link.active,
    .category-row a.active,
    .tabs-row a.active {
        background: var(--shimaya-red);
        color: #fff;
        border-color: var(--shimaya-red);
    }

.product-section {
    padding: 28px 0 70px;
}

.product-heading,
.menu-section-title {
    font-size: 31px;
    font-weight: 900;
    border-bottom: 1px solid #777;
    padding-bottom: 22px;
    margin-bottom: 32px;
}

.product-grid,
.productos-grid,
.productos-grid-info,
.categorias-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.product-card,
.producto-card-info,
.categoria-card {
    background: rgba(255,255,255,.96);
    border: 1px solid #d4d4d4;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    min-height: 280px;
    transition: .2s;
}

    .product-card:hover,
    .producto-card-info:hover,
    .categoria-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shimaya-card-shadow);
        border-color: var(--shimaya-red);
    }

.product-img-wrap,
.producto-icono,
.categoria-icono {
    width: 92px;
    height: 92px;
    margin: 0 auto 20px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.product-card h4,
.producto-card-info h3,
.categoria-card span {
    font-size: 18px;
    font-weight: 900;
}

.price-badge,
.producto-precio {
    display: inline-block;
    margin-top: 16px;
    background: #f5f5f5;
    color: var(--shimaya-red);
    padding: 7px 12px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 900;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .header-inner {
        height: auto;
        padding: 14px 20px;
        flex-wrap: wrap;
    }

    .main-nav,
    .header-actions {
        gap: 18px;
        flex-wrap: wrap;
    }

    .points-panel {
        grid-template-columns: 1fr;
    }

    .points-summary {
        border-left: 0;
        padding-left: 0;
    }

    .benefit-grid,
    .product-grid,
    .productos-grid,
    .productos-grid-info,
    .categorias-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width: 900px) {
    .menu-filter-card {
        grid-template-columns: 1fr;
    }

    .menu-products-list {
        grid-template-columns: 1fr;
    }

    .menu-results-header {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media(max-width: 650px) {
    .login-body {
        padding: 24px;
    }

    .login-box {
        margin: 0 16px;
    }

    .login-main-logo {
        width: 130px;
        height: 130px;
    }

    .btn-login-shimaya {
        width: 100%;
    }

    .product-grid,
    .productos-grid,
    .productos-grid-info,
    .categorias-grid {
        grid-template-columns: 1fr;
    }

    .menu-modern-container,
    .menu-container {
        padding: 0 18px;
    }

    .menu-product-row {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* =========================
   REGISTRO / MI CUENTA
========================= */

.account-page,
.static-page {
    background: transparent;
    padding: 46px 20px 80px;
}

.account-container,
.static-container {
    max-width: 980px;
    margin: 0 auto;
}

.account-card,
.static-container {
    background: rgba(255,255,255,.94);
    border: 1px solid #dedede;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,.08);
    padding: 34px;
}

.account-card-header {
    display: flex;
    align-items: center;
    gap: 22px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 24px;
    margin-bottom: 26px;
}

    .account-card-header img {
        width: 96px;
        height: 96px;
        object-fit: contain;
    }

    .account-card-header h1,
    .static-container h1 {
        font-size: 34px;
        font-weight: 900;
        color: #111;
        margin: 0 0 6px;
    }

    .account-card-header p,
    .static-container p {
        color: #555;
        margin: 0;
        font-size: 16px;
    }

.account-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 18px;
}

.account-field-full {
    grid-column: span 2;
}

.account-field label {
    display: block;
    font-weight: 900;
    margin-bottom: 8px;
    color: #111;
}

    .account-field label span {
        color: var(--shimaya-red);
    }

.account-input {
    width: 100%;
    height: 46px;
    border: 1px solid #d6d6d6;
    border-radius: 12px;
    padding: 0 14px;
    outline: none;
    background: #fff;
}

    .account-input:focus {
        border-color: var(--shimaya-red);
        box-shadow: 0 0 0 3px rgba(227,6,19,.12);
    }

.account-terms {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    font-weight: 700;
    color: #333;
}

.account-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-top: 26px;
}

.btn-account-primary {
    border: none;
    background: var(--shimaya-red);
    color: #fff;
    border-radius: 12px;
    padding: 13px 34px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
}

    .btn-account-primary:hover {
        background: var(--shimaya-red-dark);
    }

.btn-account-secondary {
    color: var(--shimaya-red);
    font-weight: 900;
    text-decoration: none;
}

    .btn-account-secondary:hover {
        text-decoration: underline;
    }

.account-message {
    padding: 13px 16px;
    border-radius: 12px;
    font-weight: 800;
    margin-bottom: 20px;
}

.account-message-error {
    background: #ffe5e8;
    border: 1px solid #ffb6bd;
    color: #b9000c;
}

.account-message-ok {
    background: #e9fff0;
    border: 1px solid #b7efc5;
    color: #086b2d;
}

.btn-account {
    min-width: 140px;
    text-align: center;
}

@media(max-width: 700px) {
    .account-form-grid {
        grid-template-columns: 1fr;
    }

    .account-field-full {
        grid-column: span 1;
    }

    .account-card-header {
        flex-direction: column;
        text-align: center;
    }

    .account-actions {
        flex-direction: column;
    }

    .btn-account-primary {
        width: 100%;
    }
}

/* =========================
   AJUSTES MI CUENTA / LOGOUT
========================= */

.btn-logout {
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 30px;
    padding: 11px 22px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    background: transparent;
}

    .btn-logout:hover {
        background: var(--shimaya-red);
        border-color: var(--shimaya-red);
        color: #fff;
    }

.account-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 26px;
}

    .account-summary div {
        background: #111;
        color: #fff;
        border-radius: 16px;
        padding: 18px;
        text-align: center;
    }

    .account-summary span {
        display: block;
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 900;
        color: #f2f2f2;
        margin-bottom: 6px;
    }

    .account-summary strong {
        font-size: 28px;
        color: #fff;
    }

.account-input-disabled {
    background: #f0f0f0 !important;
    color: #777 !important;
    cursor: not-allowed;
}

@media(max-width: 700px) {
    .account-summary {
        grid-template-columns: 1fr;
    }

    .user-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-logout,
    .btn-account {
        text-align: center;
    }
}

/* =========================
   LOCALES
========================= */

.locales-page {
    background: transparent;
    padding: 42px 0 80px;
}

.locales-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.locales-title h1 {
    font-size: 38px;
    font-weight: 900;
    margin: 0 0 8px;
    color: #111;
}

.locales-title p {
    margin: 0 0 28px;
    color: #555;
    font-size: 16px;
}

.locales-results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    border-bottom: 1px solid #999;
    padding-bottom: 18px;
    margin-bottom: 24px;
}

    .locales-results-header span {
        color: var(--shimaya-red);
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .locales-results-header h2 {
        font-size: 28px;
        font-weight: 900;
        margin: 4px 0 0;
    }

.locales-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.local-card {
    background: rgba(255,255,255,.95);
    border: 1px solid #d8d8d8;
    border-radius: 18px;
    overflow: hidden;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
    transition: .2s;
}

    .local-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(0,0,0,.12);
        border-color: var(--shimaya-red);
    }

.local-image {
    height: 140px;
    background: radial-gradient(circle at right, rgba(227,6,19,.25), transparent 30%), linear-gradient(135deg, #111 0%, #2a2a2a 58%, #e30613 100%);
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .local-image i {
        font-size: 58px;
        opacity: .92;
    }

.local-image-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #fff;
    color: var(--shimaya-red);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 900;
}

.local-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .local-content h3 {
        font-size: 19px;
        line-height: 1.22;
        font-weight: 900;
        color: #111;
        margin: 0 0 14px;
    }

.local-address {
    color: #555;
    font-size: 14px;
    line-height: 1.45;
    margin: 0 0 18px;
    flex: 1;
}

    .local-address i {
        color: var(--shimaya-red);
        margin-right: 7px;
    }

.local-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.local-whatsapp,
.local-maps {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 900;
    text-decoration: none;
    border-radius: 12px;
    padding: 11px 13px;
    justify-content: center;
}

.local-whatsapp {
    color: #12a538;
    border: 1px solid rgba(18,165,56,.28);
    background: rgba(18,165,56,.07);
}

    .local-whatsapp:hover {
        color: #fff;
        background: #12a538;
    }

.local-maps {
    color: #111;
    border: 1px solid #ddd;
    background: #f7f7f7;
}

    .local-maps:hover {
        color: #fff;
        background: #111;
    }

@media(max-width: 1100px) {
    .locales-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 850px) {
    .locales-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .locales-results-header {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media(max-width: 560px) {
    .locales-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   QUIENES SOMOS
========================= */

.about-page {
    background: transparent;
    padding: 48px 0 90px;
}

.about-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 42px;
    align-items: center;
    background: #f5f5f5;
    border: 1px solid #dedede;
    border-radius: 24px;
    padding: 46px;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

.about-kicker {
    display: inline-block;
    color: var(--shimaya-red);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px;
    margin-bottom: 12px;
}

.about-copy h1 {
    font-size: 48px;
    font-weight: 900;
    color: #111;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.about-copy h2 {
    font-size: 34px;
    font-weight: 900;
    color: var(--shimaya-red);
    margin: 0 0 20px;
}

.about-copy p {
    font-size: 17px;
    line-height: 1.65;
    color: #444;
    margin: 0 0 16px;
    max-width: 760px;
}

.about-cta {
    display: inline-block;
    margin-top: 12px;
    background: var(--shimaya-red);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    border-radius: 999px;
    padding: 13px 28px;
}

    .about-cta:hover {
        color: #fff;
        background: var(--shimaya-red-dark);
    }

.about-logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-logo-spin {
    width: 210px;
    height: 210px;
    object-fit: contain;
    filter: drop-shadow(0 14px 22px rgba(0,0,0,.22));
}


.about-gallery-card {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 26px;
    align-items: stretch;
    background: rgba(255,255,255,.92);
    border: 1px solid #dedede;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

.about-gallery-text {
    background: #111;
    color: #fff;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .about-gallery-text span {
        color: var(--shimaya-red);
        font-weight: 900;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: .08em;
        margin-bottom: 10px;
    }

    .about-gallery-text h3 {
        font-size: 30px;
        font-weight: 900;
        margin: 0 0 14px;
    }

    .about-gallery-text p {
        color: #e9e9e9;
        line-height: 1.55;
        margin: 0;
    }

.about-carousel {
    border-radius: 20px;
    overflow: hidden;
    min-height: 360px;
    background: #111;
}

    .about-carousel .carousel-inner,
    .about-carousel .carousel-item {
        height: 360px;
    }

    .about-carousel img {
        height: 360px;
        object-fit: cover;
    }

    .about-carousel .carousel-control-prev-icon,
    .about-carousel .carousel-control-next-icon {
        background-color: rgba(0,0,0,.45);
        border-radius: 50%;
        padding: 20px;
        background-size: 50%;
    }

    .about-carousel .carousel-indicators {
        margin-bottom: 12px;
    }

        .about-carousel .carousel-indicators button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

@media(max-width: 900px) {
    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px;
    }

    .about-copy p {
        max-width: 100%;
    }

    .about-gallery-card {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 600px) {
    .about-copy h1 {
        font-size: 34px;
    }

    .about-copy h2 {
        font-size: 25px;
    }

    
    .about-carousel,
    .about-carousel .carousel-inner,
    .about-carousel .carousel-item,
    .about-carousel img {
        height: 260px;
        min-height: 260px;
    }
}
/* =========================
   REWARDS LOGICA / HISTORIAL
========================= */

.rewards-page,
.history-page {
    background: transparent;
    padding: 42px 0 80px;
}

.rewards-container,
.history-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.rewards-welcome {
    background: rgba(255,255,255,.94);
    border: 1px solid #dedede;
    border-radius: 22px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    box-shadow: 0 10px 26px rgba(0,0,0,.07);
    margin-bottom: 26px;
}

    .rewards-welcome span,
    .rewards-section-header span,
    .history-title span {
        color: var(--shimaya-red);
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .06em;
    }

    .rewards-welcome h1,
    .history-title h1 {
        font-size: 36px;
        font-weight: 900;
        margin: 6px 0 6px;
        color: #111;
    }

    .rewards-welcome p,
    .history-title p {
        color: #555;
        margin: 0;
    }

.btn-rewards-outline {
    border: 1px solid #111;
    border-radius: 999px;
    padding: 12px 22px;
    color: #111;
    text-decoration: none;
    font-weight: 900;
    white-space: nowrap;
}

    .btn-rewards-outline:hover {
        background: var(--shimaya-red);
        border-color: var(--shimaya-red);
        color: #fff;
    }

.rewards-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.rewards-summary-card {
    background: rgba(255,255,255,.95);
    border: 1px solid #dedede;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

    .rewards-summary-card.primary {
        background: linear-gradient(135deg, #c1121f, #9b2226);
        color: #fff;
    }

    .rewards-summary-card span {
        display: block;
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        color: var(--shimaya-red);
        margin-bottom: 8px;
    }

    .rewards-summary-card.primary span {
        color: #fff;
    }

    .rewards-summary-card strong {
        display: block;
        font-size: 34px;
        font-weight: 900;
        line-height: 1;
        margin-bottom: 10px;
    }

    .rewards-summary-card small {
        color: #666;
        font-weight: 700;
    }

    .rewards-summary-card.primary small {
        color: #e8e8e8;
    }

.rewards-detail-card {
    background: rgba(255,255,255,.94);
    border: 1px solid #dedede;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 10px 26px rgba(0,0,0,.07);
}

.rewards-section-header {
    border-bottom: 1px solid #ddd;
    padding-bottom: 18px;
    margin-bottom: 20px;
}

    .rewards-section-header h2 {
        margin: 4px 0 0;
        font-weight: 900;
        color: #111;
    }

.rewards-day-list,
.history-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rewards-day-row,
.history-row {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 18px;
    display: grid;
    align-items: center;
    gap: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,.04);
}

.rewards-day-row {
    grid-template-columns: 1.2fr 1fr 120px;
}

.history-row {
    grid-template-columns: 1.4fr 1fr 1fr 1fr 110px;
}

    .rewards-day-row span,
    .history-row span {
        display: block;
        color: #666;
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        margin-bottom: 4px;
    }

    .rewards-day-row strong,
    .history-row strong {
        color: #111;
        font-weight: 900;
    }

.points-earned strong {
    color: var(--shimaya-red);
    font-size: 22px;
}

.history-title {
    margin-bottom: 26px;
}

@media(max-width: 950px) {
    .rewards-welcome {
        flex-direction: column;
        align-items: flex-start;
    }

    .rewards-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rewards-day-row,
    .history-row {
        grid-template-columns: 1fr;
    }
}

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

    .btn-rewards-outline {
        width: 100%;
        text-align: center;
    }
}

/* =========================
   REWARDS DASHBOARD V2
========================= */

.rewards-page-v2 {
    background: transparent;
    padding: 42px 0 80px;
}

.rewards-container-v2 {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.rewards-hero-v2 {
    background: rgba(255,255,255,.94);
    border: 1px solid #dedede;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    margin-bottom: 26px;
}

.rewards-hero-text span,
.rewards-level-card span,
.rewards-section-header-v2 span,
.rewards-kpi span,
.dashboard-card span,
.points-card-header span {
    color: var(--shimaya-red);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.rewards-hero-text h1 {
    font-size: 38px;
    font-weight: 900;
    color: #111;
    margin: 8px 0 8px;
}

.rewards-hero-text p {
    color: #555;
    margin: 0;
}

.rewards-level-card {
    min-width: 230px;
    background: linear-gradient(135deg, #111, #2a2a2a);
    color: #fff;
    border-radius: 20px;
    padding: 24px;
}

    .rewards-level-card span {
        color: #fff;
    }

    .rewards-level-card strong {
        display: block;
        font-size: 34px;
        font-weight: 900;
        margin: 6px 0;
    }

    .rewards-level-card p {
        color: #eaeaea;
        margin: 0;
        font-size: 14px;
    }

.rewards-main-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 20px;
    margin-bottom: 22px;
}

.rewards-points-card {
    background: linear-gradient(135deg, #d62839, #b71c2b);
    color: #fff;
    border-radius: 24px;
    padding: 26px;
    min-height: 260px;
    box-shadow: 0 14px 30px rgba(214,40,57,.25);
}

.points-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .points-card-header span {
        color: #fff;
    }

    .points-card-header i {
        font-size: 24px;
    }

.rewards-points-card > strong {
    display: block;
    font-size: 58px;
    line-height: 1;
    font-weight: 900;
    margin: 18px 0 8px;
}

.rewards-points-card p {
    margin: 0 0 24px;
    font-weight: 800;
    color: #fff;
}

.level-progress-wrap small {
    display: block;
    margin-top: 9px;
    color: #fff;
    font-weight: 700;
}

.level-progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 900;
    font-size: 13px;
}

.level-progress {
    height: 12px;
    background: rgba(255,255,255,.28);
    border-radius: 999px;
    overflow: hidden;
}

.level-progress-bar {
    height: 100%;
    width: 0;
    background: #fff;
    border-radius: 999px;
    transition: width .4s ease;
}

.rewards-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.rewards-kpi,
.dashboard-card,
.rewards-detail-card-v2 {
    background: rgba(255,255,255,.94);
    border: 1px solid #dedede;
    border-radius: 20px;
    box-shadow: 0 8px 22px rgba(0,0,0,.06);
}

.rewards-kpi {
    padding: 24px;
}

    .rewards-kpi strong {
        display: block;
        color: #111;
        font-size: 32px;
        font-weight: 900;
        margin-top: 8px;
    }

.rewards-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.dashboard-card {
    padding: 22px;
    min-height: 170px;
}

    .dashboard-card i {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #111;
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 14px;
    }

    .dashboard-card strong {
        display: block;
        color: #111;
        font-weight: 900;
        font-size: 20px;
        margin: 8px 0 6px;
        line-height: 1.2;
    }

    .dashboard-card p {
        color: #666;
        font-weight: 700;
        margin: 0;
        font-size: 13px;
    }

.rewards-detail-card-v2 {
    padding: 28px;
}

.rewards-section-header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 18px;
    margin-bottom: 20px;
}

    .rewards-section-header-v2 h2 {
        margin: 5px 0 0;
        font-size: 26px;
        font-weight: 900;
    }

.btn-rewards-outline-v2 {
    border: 1px solid #111;
    border-radius: 999px;
    padding: 11px 22px;
    color: #111;
    text-decoration: none;
    font-weight: 900;
    white-space: nowrap;
}

    .btn-rewards-outline-v2:hover {
        background: var(--shimaya-red);
        border-color: var(--shimaya-red);
        color: #fff;
    }

.rewards-day-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rewards-day-row-v2 {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 18px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 120px;
    align-items: center;
    gap: 16px;
}

    .rewards-day-row-v2 span {
        display: block;
        color: #666;
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        margin-bottom: 4px;
    }

    .rewards-day-row-v2 strong {
        color: #111;
        font-weight: 900;
    }

.points-earned-v2 strong {
    color: var(--shimaya-red);
    font-size: 24px;
}

@media(max-width: 1000px) {
    .rewards-main-grid {
        grid-template-columns: 1fr;
    }

    .rewards-dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 800px) {
    .rewards-hero-v2,
    .rewards-section-header-v2 {
        flex-direction: column;
        align-items: flex-start;
    }

    .rewards-level-card {
        width: 100%;
    }

    .rewards-day-row-v2 {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 600px) {
    .rewards-kpi-grid,
    .rewards-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .btn-rewards-outline-v2 {
        width: 100%;
        text-align: center;
    }
}

/* =========================
   DASHBOARD CACHE PASO 2
========================= */

.rewards-dashboard-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin: 22px 0 16px;
}

    .rewards-dashboard-toolbar span {
        color: var(--shimaya-red);
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .06em;
    }

.btn-dashboard-sync {
    border: none;
    background: #111;
    color: #fff;
    border-radius: 999px;
    padding: 11px 22px;
    font-weight: 900;
    cursor: pointer;
}

    .btn-dashboard-sync:hover {
        background: var(--shimaya-red);
    }

@media(max-width: 700px) {
    .rewards-dashboard-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-dashboard-sync {
        width: 100%;
    }
}

/* =========================
   CANJES REWARDS
========================= */

.canjes-page {
    background: transparent;
    padding: 42px 0 80px;
}

.canjes-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.canjes-hero {
    background: rgba(255,255,255,.94);
    border: 1px solid #dedede;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    margin-bottom: 26px;
}

    .canjes-hero span,
    .canjes-section-title span {
        color: var(--shimaya-red);
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .06em;
    }

    .canjes-hero h1,
    .canjes-section-title h2 {
        color: #111;
        font-weight: 900;
        margin: 8px 0;
    }

    .canjes-hero h1 {
        font-size: 38px;
    }

    .canjes-hero p {
        margin: 0;
        color: #555;
    }

.canjes-section-title {
    margin: 30px 0 18px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.benefit-card {
    background: rgba(255,255,255,.94);
    border: 1px solid #dedede;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 8px 22px rgba(0,0,0,.06);
    transition: .2s;
}

    .benefit-card:hover {
        transform: translateY(-4px);
        border-color: var(--shimaya-red);
        box-shadow: 0 14px 30px rgba(0,0,0,.12);
    }

    .benefit-card.disabled {
        opacity: .58;
    }

.benefit-icon {
    width: 54px;
    height: 54px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 22px;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 900;
    color: #111;
    margin: 0 0 10px;
}

.benefit-card p {
    color: #555;
    min-height: 52px;
    margin-bottom: 18px;
}

.benefit-points {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 18px;
}

    .benefit-points strong {
        color: var(--shimaya-red);
        font-size: 34px;
        font-weight: 900;
    }

    .benefit-points span {
        color: #555;
        font-weight: 900;
    }

.btn-benefit-redeem {
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 12px 18px;
    background: var(--shimaya-red);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

    .btn-benefit-redeem:hover {
        background: #111;
    }

    .btn-benefit-redeem:disabled {
        background: #ddd;
        color: #777;
        cursor: not-allowed;
    }

.mt-canjes {
    margin-top: 38px;
}

.redemption-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.redemption-row {
    background: rgba(255,255,255,.94);
    border: 1px solid #dedede;
    border-radius: 18px;
    padding: 18px;
    display: grid;
    grid-template-columns: 1.5fr 1.2fr .6fr .7fr;
    gap: 18px;
    align-items: center;
}

    .redemption-row span {
        display: block;
        color: #666;
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        margin-bottom: 4px;
    }

    .redemption-row strong {
        color: #111;
        font-weight: 900;
    }

.redemption-status strong {
    color: var(--shimaya-red);
}

@media(max-width: 900px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .redemption-row {
        grid-template-columns: 1fr;
    }

    .canjes-hero {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

/* =========================
   VOUCHER PDF CANJE
========================= */

.redemption-row-pdf {
    grid-template-columns: 1.4fr 1.2fr .55fr .65fr .75fr;
}

.btn-voucher-pdf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 16px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    white-space: nowrap;
}

    .btn-voucher-pdf:hover {
        background: var(--shimaya-red);
        color: #fff;
    }

@media(max-width: 900px) {
    .redemption-row-pdf {
        grid-template-columns: 1fr;
    }

    .btn-voucher-pdf {
        width: 100%;
    }
}

/* =========================
   ADMIN REWARDS
========================= */

.admin-login-body {
    background: #111;
}

.admin-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.admin-login-card {
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

    .admin-login-card img {
        width: 120px;
        height: 120px;
        object-fit: contain;
        display: block;
        margin: 0 auto 18px;
    }

    .admin-login-card span,
    .admin-hero span,
    .admin-result-header span,
    .admin-result-grid span,
    .admin-kpi span {
        color: var(--shimaya-red);
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .06em;
    }

    .admin-login-card h1 {
        text-align: center;
        font-weight: 900;
        margin: 8px 0;
    }

    .admin-login-card p {
        text-align: center;
        color: #555;
        margin-bottom: 22px;
    }

.admin-field {
    margin-bottom: 16px;
}

    .admin-field label {
        display: block;
        font-weight: 900;
        margin-bottom: 8px;
    }

.admin-header {
    background: #111;
    border-top: 5px solid var(--shimaya-red);
}

.admin-header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

    .admin-brand img {
        width: 58px;
        height: 58px;
        object-fit: contain;
    }

.admin-header nav {
    display: flex;
    gap: 18px;
    align-items: center;
}

    .admin-header nav a,
    .admin-header nav input,
    .admin-header nav span {
        color: #fff;
        text-decoration: none;
        font-weight: 900;
    }

.admin-page {
    background: transparent;
    padding: 42px 0 80px;
}

.admin-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.admin-hero,
.admin-search-card,
.admin-result-card,
.admin-kpi {
    background: rgba(255,255,255,.94);
    border: 1px solid #dedede;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.admin-hero {
    padding: 32px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: center;
}

    .admin-hero h1 {
        font-weight: 900;
        margin: 8px 0;
    }

    .admin-hero p {
        color: #555;
        margin: 0;
    }

.admin-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.admin-kpi {
    padding: 24px;
}

    .admin-kpi strong {
        display: block;
        font-size: 36px;
        font-weight: 900;
        margin-top: 8px;
    }

.admin-search-card {
    padding: 26px;
    margin-bottom: 24px;
}

.admin-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-admin-validate {
    border: none;
    background: var(--shimaya-red);
    color: #fff;
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: 900;
}

.admin-result-card {
    padding: 28px;
}

.admin-result-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 18px;
    margin-bottom: 20px;
}

    .admin-result-header h2 {
        font-weight: 900;
        margin: 8px 0 0;
    }

.admin-status {
    color: var(--shimaya-red);
    font-size: 22px;
}

.admin-result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

    .admin-result-grid strong {
        display: block;
        font-weight: 900;
        color: #111;
        margin-top: 5px;
    }

@media(max-width: 900px) {
    .admin-header-inner,
    .admin-hero,
    .admin-result-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-kpi-grid,
    .admin-result-grid {
        grid-template-columns: 1fr;
    }

    .admin-header nav {
        flex-wrap: wrap;
    }
}

/* =========================================================
   ADMIN PROMOCIONES - LIMPIO
   Mantiene el diseño administrativo actual y agrega tarjetas
========================================================= */

.admin-header nav a,
.admin-header nav .aspNetDisabled,
.admin-header nav input,
.admin-header nav span {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 900 !important;
}

    .admin-header nav a:hover {
        color: var(--shimaya-red) !important;
    }

.admin-shortcuts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

    .admin-shortcuts a {
        background: rgba(255,255,255,.94);
        border: 1px solid #dedede;
        border-radius: 22px;
        padding: 26px;
        text-decoration: none;
        color: #111;
        box-shadow: 0 12px 30px rgba(0,0,0,.06);
        transition: .2s ease;
    }

        .admin-shortcuts a:hover {
            transform: translateY(-3px);
            border-color: var(--shimaya-red);
        }

    .admin-shortcuts span {
        display: block;
        color: var(--shimaya-red);
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .06em;
    }

    .admin-shortcuts strong {
        display: block;
        font-size: 24px;
        font-weight: 900;
        margin: 8px 0;
    }

    .admin-shortcuts small {
        color: #555;
    }

.admin-promo-form,
.admin-list-card {
    background: rgba(255,255,255,.95);
    border: 1px solid #dedede;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    padding: 28px;
    margin-bottom: 28px;
}

.admin-form-title span {
    display: block;
    color: var(--shimaya-red);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.admin-form-title h2 {
    font-size: 30px;
    font-weight: 900;
    margin: 6px 0 22px;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

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

.admin-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-weight: 900;
    color: #111;
}

.btn-admin-secondary {
    border: 1px solid #111;
    background: #fff;
    color: #111;
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: 900;
}

.admin-promo-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.admin-promo-card {
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 22px;
    padding: 22px;
    display: grid;
    grid-template-columns: 1.35fr 1.5fr auto;
    gap: 22px;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
    transition: .2s ease;
}

    .admin-promo-card:hover {
        border-color: var(--shimaya-red);
        transform: translateY(-2px);
    }

.promo-card-main {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: flex-start;
}

.promo-card-icon {
    width: 54px;
    height: 54px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-card-kicker {
    display: inline-block;
    background: var(--shimaya-soft-red);
    color: var(--shimaya-red);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 8px;
}

.promo-card-main h3 {
    font-size: 20px;
    font-weight: 900;
    color: #111;
    margin: 0 0 6px;
}

.promo-card-main p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.45;
}

.promo-card-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

    .promo-card-meta span {
        display: block;
        color: #777;
        font-size: 11px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .04em;
    }

    .promo-card-meta strong {
        display: block;
        color: #111;
        font-size: 14px;
        font-weight: 900;
    }

.status-ok {
    color: #0a9f2f !important;
}

.status-warn {
    color: var(--shimaya-red) !important;
}

.promo-card-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-mini-admin {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    background: #111;
    color: #fff !important;
    text-decoration: none !important;
    padding: 9px 15px;
    font-size: 12px;
    font-weight: 900;
}

    .btn-mini-admin:hover,
    .btn-mini-admin.danger {
        background: var(--shimaya-red);
    }

@media(max-width: 1100px) {
    .admin-promo-card {
        grid-template-columns: 1fr;
    }

    .promo-card-actions {
        justify-content: flex-start;
    }
}

@media(max-width: 900px) {
    .admin-shortcuts,
    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-field-full {
        grid-column: auto;
    }
}

/* =========================================================
   PROMOCIONES USUARIO - DISEÑO SHIMAYA
   Similar a Menu y Locales
========================================================= */

.promociones-page {
    background: transparent;
    padding: 42px 0 80px;
}

.promociones-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.promociones-title {
    margin-bottom: 24px;
}

    .promociones-title h1 {
        color: #111;
        font-size: 38px;
        font-weight: 900;
        margin: 0 0 8px;
        letter-spacing: -0.02em;
    }

    .promociones-title p {
        color: #555;
        font-size: 16px;
        margin: 0 0 28px;
    }

.promociones-results-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid #999;
    padding-bottom: 18px;
    margin-bottom: 24px;
}

    .promociones-results-header span {
        color: var(--shimaya-red);
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .03em;
    }

    .promociones-results-header h2 {
        color: #111;
        font-size: 28px;
        font-weight: 900;
        margin: 4px 0 0;
    }

.promo-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid #111;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-weight: 900;
    white-space: nowrap;
    transition: .2s ease;
}

    .promo-back-link:hover {
        background: #111;
        color: #fff;
    }

.promociones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.promo-public-card {
    background: rgba(255,255,255,.95);
    border: 1px solid #d8d8d8;
    border-radius: 18px;
    overflow: hidden;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
    transition: .2s ease;
}

    .promo-public-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(0,0,0,.12);
        border-color: var(--shimaya-red);
    }

.promo-public-image {
    height: 150px;
    background: radial-gradient(circle at right, rgba(227,6,19,.25), transparent 30%), linear-gradient(135deg, #111 0%, #2a2a2a 58%, #e30613 100%);
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .promo-public-image i,
    .promo-public-image svg {
        font-size: 58px;
        opacity: .92;
    }

.promo-public-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #fff;
    color: var(--shimaya-red);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 900;
}

.promo-public-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.promo-public-status {
    display: inline-flex;
    width: max-content;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 14px;
}

    .promo-public-status.active {
        background: #eafbea;
        color: #0a9f2f;
        border: 1px solid #bceabc;
    }

    .promo-public-status.soon {
        background: #fff5dc;
        color: #c48100;
        border: 1px solid #f0d89a;
    }

    .promo-public-status.ended {
        background: var(--shimaya-soft-red);
        color: var(--shimaya-red);
        border: 1px solid #ffbdc4;
    }

.promo-public-content h3 {
    font-size: 21px;
    line-height: 1.22;
    font-weight: 900;
    color: #111;
    margin: 0 0 12px;
}

.promo-public-description {
    color: #555;
    font-size: 14px;
    line-height: 1.45;
    margin: 0 0 16px;
    min-height: 60px;
}

.promo-public-condition {
    background: #fafafa;
    border: 1px solid #ededed;
    border-radius: 14px;
    padding: 13px;
    margin-bottom: 14px;
}

    .promo-public-condition span,
    .promo-public-dates span {
        display: block;
        color: var(--shimaya-red);
        font-size: 11px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .04em;
        margin-bottom: 4px;
    }

    .promo-public-condition strong,
    .promo-public-dates strong {
        display: block;
        color: #111;
        font-size: 13px;
        font-weight: 900;
        line-height: 1.35;
    }

.promo-public-dates {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
    margin-bottom: 16px;
}

    .promo-public-dates div {
        background: #fff;
        border: 1px solid #ededed;
        border-radius: 14px;
        padding: 12px;
    }

.promo-public-benefit {
    margin-top: auto;
    background: var(--shimaya-red);
    color: #fff;
    border-radius: 12px;
    padding: 13px 14px;
    font-size: 17px;
    font-weight: 900;
    text-align: center;
}

@media(max-width: 1100px) {
    .promociones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 700px) {
    .promociones-container {
        padding: 0 18px;
    }

    .promociones-grid {
        grid-template-columns: 1fr;
    }

    .promociones-results-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .promo-back-link {
        width: 100%;
    }

    .promociones-title h1 {
        font-size: 34px;
    }
}


/* =========================================================
   PROMOCIONES USUARIO - MISMO DISEÑO DE MENU
   Pegar al FINAL de shimaya.css
========================================================= */

.promociones-menu-style {
    padding-top: 42px !important;
    padding-bottom: 80px !important;
}

    .promociones-menu-style .menu-modern-container {
        max-width: 1180px !important;
        margin: 0 auto !important;
        padding: 0 28px !important;
    }

    .promociones-menu-style .menu-modern-title {
        margin-bottom: 28px !important;
    }

        .promociones-menu-style .menu-modern-title h1 {
            font-size: 38px !important;
            font-weight: 900 !important;
            margin: 0 0 8px !important;
            color: #111 !important;
        }

        .promociones-menu-style .menu-modern-title p {
            margin: 0 !important;
            color: #555 !important;
            font-size: 16px !important;
        }

    .promociones-menu-style .menu-results-header {
        margin-top: 0 !important;
        margin-bottom: 24px !important;
    }

.promociones-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

.promo-product-row {
    min-height: 230px !important;
    align-items: flex-start !important;
    background: rgba(255,255,255,.96) !important;
}

.promo-big-icon {
    min-width: 104px !important;
    width: 104px !important;
    height: 104px !important;
    font-size: 48px !important;
    background: radial-gradient(circle at bottom right, rgba(227,6,19,.45), transparent 44%), #111 !important;
}

.promo-product-info {
    width: 100% !important;
}

.promo-top-line {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
}

.promo-product-info h3 {
    font-size: 22px !important;
    line-height: 1.22 !important;
    margin: 0 0 8px !important;
    color: #111 !important;
    font-weight: 900 !important;
}

.promo-description-text {
    color: #555 !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    margin: 0 0 14px !important;
}

.promo-status-pill {
    display: inline-block !important;
    border-radius: 999px !important;
    padding: 5px 10px !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

.promo-status-active {
    background: #e9fff0 !important;
    color: #086b2d !important;
    border: 1px solid #b7efc5 !important;
}

.promo-status-soon {
    background: #fff4d8 !important;
    color: #af7600 !important;
    border: 1px solid #efd38b !important;
}

.promo-status-ended {
    background: #ffe5e8 !important;
    color: #b9000c !important;
    border: 1px solid #ffb6bd !important;
}

.promo-info-grid {
    display: grid !important;
    grid-template-columns: 1.4fr 1fr .8fr !important;
    gap: 10px !important;
    margin-top: 12px !important;
}

.promo-info-box {
    background: #fafafa !important;
    border: 1px solid #ededed !important;
    border-radius: 14px !important;
    padding: 12px !important;
}

    .promo-info-box span {
        display: block !important;
        color: var(--shimaya-red) !important;
        font-size: 11px !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
        margin-bottom: 4px !important;
    }

    .promo-info-box strong {
        display: block !important;
        color: #111 !important;
        font-size: 13px !important;
        line-height: 1.35 !important;
        font-weight: 900 !important;
    }

.promo-benefit-box {
    background: var(--shimaya-soft-red) !important;
    border-color: #ffc2c7 !important;
}

    .promo-benefit-box strong {
        color: var(--shimaya-red) !important;
        font-size: 16px !important;
    }

.promo-back-area {
    display: flex !important;
    justify-content: center !important;
    margin-top: 28px !important;
}

@media(max-width: 1000px) {
    .promociones-list {
        grid-template-columns: 1fr !important;
    }

    .promo-info-grid {
        grid-template-columns: 1fr !important;
    }
}

@media(max-width: 650px) {
    .promociones-menu-style .menu-modern-container {
        padding: 0 18px !important;
    }

    .promo-product-row {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .promo-top-line {
        justify-content: center !important;
    }

    .promo-big-icon {
        margin-bottom: 8px !important;
    }
}

/* =========================================================
   ADMIN PROMOCIONES - DISEÑO TIPO MENU
   Pegar al FINAL de shimaya.css
========================================================= */

.admin-promociones-container {
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 0 28px !important;
}

.admin-promo-hero {
    margin-bottom: 32px !important;
}

.admin-promo-section-header {
    display: flex !important;
    align-items: end !important;
    justify-content: space-between !important;
    border-bottom: 1px solid rgba(0,0,0,.25) !important;
    padding-bottom: 18px !important;
    margin-bottom: 24px !important;
}

    .admin-promo-section-header span {
        display: block !important;
        color: var(--shimaya-red) !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
        letter-spacing: .06em !important;
    }

    .admin-promo-section-header h2 {
        color: #111 !important;
        font-size: 30px !important;
        font-weight: 900 !important;
        margin: 6px 0 0 !important;
    }

.admin-promo-grid-v2 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

.admin-promo-card-v2 {
    background: rgba(255,255,255,.96) !important;
    border: 1px solid #dedede !important;
    border-radius: 20px !important;
    padding: 22px !important;
    display: grid !important;
    grid-template-columns: 104px 1fr !important;
    gap: 18px !important;
    min-height: 255px !important;
    box-shadow: 0 8px 22px rgba(0,0,0,.05) !important;
    transition: .2s ease !important;
}

    .admin-promo-card-v2:hover {
        border-color: var(--shimaya-red) !important;
        transform: translateY(-3px) !important;
        box-shadow: 0 14px 30px rgba(0,0,0,.10) !important;
    }

.admin-promo-icon-v2 {
    width: 104px !important;
    height: 104px !important;
    min-width: 104px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle at bottom right, rgba(227,6,19,.45), transparent 44%), #111 !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

    .admin-promo-icon-v2 i,
    .admin-promo-icon-v2 svg {
        font-size: 44px !important;
    }

.admin-promo-info-v2 {
    width: 100% !important;
}

.admin-promo-top-v2 {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
}

.admin-promo-info-v2 h3 {
    color: #111 !important;
    font-size: 22px !important;
    line-height: 1.22 !important;
    font-weight: 900 !important;
    margin: 0 0 8px !important;
}

.admin-promo-info-v2 p {
    color: #555 !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    margin: 0 0 14px !important;
}

.admin-status-pill {
    display: inline-block !important;
    border-radius: 999px !important;
    padding: 5px 10px !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

    .admin-status-pill.status-active {
        background: #e9fff0 !important;
        color: #086b2d !important;
        border: 1px solid #b7efc5 !important;
    }

    .admin-status-pill.status-soon {
        background: #fff4d8 !important;
        color: #af7600 !important;
        border: 1px solid #efd38b !important;
    }

.admin-promo-info-grid-v2 {
    display: grid !important;
    grid-template-columns: 1fr 1.5fr !important;
    gap: 10px !important;
    margin-top: 12px !important;
}

.admin-promo-info-box-v2 {
    background: #fafafa !important;
    border: 1px solid #ededed !important;
    border-radius: 14px !important;
    padding: 12px !important;
}

    .admin-promo-info-box-v2 span {
        display: block !important;
        color: var(--shimaya-red) !important;
        font-size: 11px !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
        margin-bottom: 4px !important;
    }

    .admin-promo-info-box-v2 strong {
        display: block !important;
        color: #111 !important;
        font-size: 13px !important;
        line-height: 1.35 !important;
        font-weight: 900 !important;
    }

.admin-promo-actions-v2 {
    display: flex !important;
    gap: 8px !important;
    margin-top: 16px !important;
    flex-wrap: wrap !important;
}

    .admin-promo-actions-v2 .btn-mini-admin {
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        border-radius: 999px !important;
        background: #111 !important;
        color: #fff !important;
        text-decoration: none !important;
        padding: 9px 18px !important;
        font-size: 12px !important;
        font-weight: 900 !important;
    }

        .admin-promo-actions-v2 .btn-mini-admin:hover {
            background: var(--shimaya-red) !important;
        }

        .admin-promo-actions-v2 .btn-mini-admin.danger {
            background: var(--shimaya-red) !important;
        }

.admin-promo-form {
    background: rgba(255,255,255,.96) !important;
    border: 1px solid #dedede !important;
    border-radius: 24px !important;
    box-shadow: 0 12px 30px rgba(0,0,0,.08) !important;
    padding: 28px !important;
    margin-bottom: 32px !important;
}

.admin-form-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

.admin-field-full {
    grid-column: 1 / -1 !important;
}

.admin-checks {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 18px !important;
    font-weight: 900 !important;
    color: #111 !important;
}

.btn-admin-secondary {
    border: 1px solid #111 !important;
    background: #fff !important;
    color: #111 !important;
    border-radius: 999px !important;
    padding: 12px 28px !important;
    font-weight: 900 !important;
}

@media(max-width: 1000px) {
    .admin-promo-grid-v2 {
        grid-template-columns: 1fr !important;
    }

    .admin-promo-info-grid-v2 {
        grid-template-columns: 1fr !important;
    }
}

@media(max-width: 650px) {
    .admin-promociones-container {
        padding: 0 18px !important;
    }

    .admin-promo-card-v2 {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    .admin-promo-icon-v2 {
        margin: 0 auto !important;
    }

    .admin-promo-top-v2,
    .admin-promo-actions-v2 {
        justify-content: center !important;
    }

    .admin-form-grid {
        grid-template-columns: 1fr !important;
    }

    .admin-field-full {
        grid-column: auto !important;
    }
}
.historial-actions-top {
    display: flex !important;
    justify-content: flex-end !important;
    margin: 18px 0 24px !important
}

.btn-historial-back {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 46px !important;
    padding: 0 24px !important;
    border-radius: 999px !important;
    border: 1px solid #111 !important;
    background: #fff !important;
    color: #111 !important;
    text-decoration: none !important;
    font-weight: 900 !important;
    transition: .2s ease !important
}

    .btn-historial-back:hover {
        background: #111 !important;
        color: #fff !important
    }

.historial-section-card {
    background: rgba(255,255,255,.96) !important;
    border: 1px solid #dedede !important;
    border-radius: 22px !important;
    box-shadow: 0 10px 26px rgba(0,0,0,.06) !important;
    padding: 26px !important;
    margin-top: 28px !important
}

.historial-section-header {
    display: flex !important;
    align-items: end !important;
    justify-content: space-between !important;
    border-bottom: 1px solid rgba(0,0,0,.18) !important;
    padding-bottom: 16px !important;
    margin-bottom: 18px !important
}

    .historial-section-header span {
        display: block !important;
        color: var(--shimaya-red) !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
        letter-spacing: .06em !important
    }

    .historial-section-header h2 {
        color: #111 !important;
        font-size: 28px !important;
        font-weight: 900 !important;
        margin: 6px 0 0 !important
    }

.promo-history-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important
}

.promo-history-row {
    display: grid !important;
    grid-template-columns: 76px 1fr 120px !important;
    gap: 18px !important;
    align-items: center !important;
    background: #fff !important;
    border: 1px solid #dedede !important;
    border-radius: 18px !important;
    padding: 18px !important
}

.promo-history-icon {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle at bottom right,rgba(227,6,19,.45),transparent 44%),#111 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 34px !important
}

.promo-history-info strong {
    display: block !important;
    color: #111 !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    margin-bottom: 4px !important
}

.promo-history-info span {
    display: block !important;
    color: #444 !important;
    font-size: 14px !important;
    margin-bottom: 4px !important
}

.promo-history-info small {
    color: #777 !important;
    font-weight: 800 !important
}

.promo-history-points {
    color: var(--shimaya-red) !important;
    font-size: 28px !important;
    font-weight: 900 !important;
    text-align: right !important
}

@media(max-width:700px) {
    .historial-actions-top {
        justify-content: stretch !important
    }

    .btn-historial-back {
        width: 100% !important
    }

    .promo-history-row {
        grid-template-columns: 1fr !important;
        text-align: center !important
    }

    .promo-history-icon {
        margin: 0 auto !important
    }

    .promo-history-points {
        text-align: center !important
    }
}
.historial-actions {
    margin: 24px 0 32px 0;
    display: flex;
    justify-content: flex-start;
}

.btn-back-rewards {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: all .25s ease;
    border: 2px solid #111;
}

    .btn-back-rewards:hover {
        background: #e10600;
        border-color: #e10600;
        color: #fff;
        transform: translateY(-2px);
    }

    .btn-back-rewards i {
        font-size: 14px;
    }

.rewards-alerts-section {
    margin: 28px 0 34px !important
}

.rewards-alerts-title {
    margin-bottom: 16px !important
}

    .rewards-alerts-title span {
        display: block !important;
        color: var(--shimaya-red) !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
        letter-spacing: .06em !important
    }

    .rewards-alerts-title h2 {
        color: #111 !important;
        font-size: 28px !important;
        font-weight: 900 !important;
        margin: 6px 0 0 !important
    }

.rewards-alerts-grid {
    display: grid !important;
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    gap: 16px !important
}

.reward-alert-card {
    display: grid !important;
    grid-template-columns: 70px 1fr !important;
    gap: 16px !important;
    align-items: center !important;
    background: rgba(255,255,255,.96) !important;
    border: 1px solid #dedede !important;
    border-radius: 20px !important;
    padding: 20px !important;
    box-shadow: 0 10px 26px rgba(0,0,0,.06) !important;
    transition: .2s ease !important
}

    .reward-alert-card:hover {
        transform: translateY(-3px) !important;
        border-color: var(--shimaya-red) !important
    }

.reward-alert-icon {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle at bottom right,rgba(227,6,19,.45),transparent 44%),#111 !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 32px !important
}

.reward-alert-content h3 {
    color: #111 !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    margin: 0 0 6px !important
}

.reward-alert-content p {
    color: #444 !important;
    font-size: 14px !important;
    margin: 0 0 10px !important;
    line-height: 1.4 !important
}

.reward-alert-content a {
    display: inline-flex !important;
    color: var(--shimaya-red) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-decoration: none !important
}

    .reward-alert-content a:hover {
        text-decoration: underline !important
    }

.reward-alert-gold {
    border-color: #f3c64b !important
}

.reward-alert-promo {
    border-color: #ffbdc4 !important
}

.reward-alert-last {
    border-color: #ffcf8a !important
}

.reward-alert-redeem {
    border-color: #b7efc5 !important
}

@media(max-width:900px) {
    .rewards-alerts-grid {
        grid-template-columns: 1fr !important
    }
}

@media(max-width:600px) {
    .reward-alert-card {
        grid-template-columns: 1fr !important;
        text-align: center !important
    }

    .reward-alert-icon {
        margin: 0 auto !important
    }

    .reward-alert-content a {
        justify-content: center !important
    }
}

.expiration-card {
    border-color: #ffd28a !important;
    background: rgba(255,250,240,.96) !important
}

    .expiration-card span {
        color: #c47900 !important
    }

    .expiration-card strong {
        color: #111 !important
    }

    .expiration-card small {
        color: #8a5a00 !important;
        font-weight: 800 !important
    }

.reward-alert-expiration {
    border-color: #ffd28a !important
}
.coupon-code-short {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 14px 24px !important;
    border-radius: 18px !important;
    background: #111 !important;
    color: #fff !important;
    font-size: 30px !important;
    font-weight: 900 !important;
    letter-spacing: .08em !important
}

.coupon-qr-box {
    width: 180px !important;
    height: 180px !important;
    border-radius: 20px !important;
    background: #fff !important;
    border: 1px solid #dedede !important;
    padding: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important
}

    .coupon-qr-box img {
        width: 100% !important;
        height: auto !important
    }

.coupon-helper-text {
    color: #666 !important;
    font-size: 13px !important;
    font-weight: 700 !important
}
.coupon-status-generated {
    border-color: #9be7b0 !important;
    box-shadow: 0 10px 28px rgba(0,160,70,.10) !important
}

.coupon-status-used {
    border-color: #cfcfcf !important;
    opacity: .92 !important
}

.coupon-status-expired {
    border-color: #ff9a9a !important;
    box-shadow: 0 10px 28px rgba(227,6,19,.10) !important
}

.admin-filter-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr auto !important;
    gap: 16px !important;
    align-items: end !important
}

    .admin-filter-grid label {
        display: block !important;
        font-weight: 900 !important;
        margin-bottom: 8px !important;
        color: #111 !important
    }

.admin-filter-action {
    display: flex !important;
    align-items: end !important
}

.admin-canje-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    margin-top: 24px !important
}

.admin-canje-row {
    display: grid !important;
    grid-template-columns: 145px 1.3fr 1.2fr 120px 100px 120px 140px !important;
    gap: 14px !important;
    align-items: center !important;
    background: rgba(255,255,255,.96) !important;
    border: 1px solid #dedede !important;
    border-radius: 18px !important;
    padding: 18px !important;
    box-shadow: 0 10px 26px rgba(0,0,0,.05) !important
}

    .admin-canje-row span {
        display: block !important;
        color: #e30613 !important;
        font-size: 11px !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
        margin-bottom: 5px !important
    }

    .admin-canje-row strong {
        display: block !important;
        color: #111 !important;
        font-size: 14px !important;
        font-weight: 900 !important
    }

    .admin-canje-row small {
        display: block !important;
        color: #666 !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        margin-top: 3px !important
    }

@media(max-width:1000px) {
    .admin-filter-grid, .admin-canje-row {
        grid-template-columns: 1fr !important
    }
}
.admin-ranking-kpi-grid {
    display: grid !important;
    grid-template-columns: repeat(4,minmax(0,1fr)) !important;
    gap: 16px !important;
    margin: 24px 0 32px !important
}

.admin-ranking-kpi {
    background: rgba(255,255,255,.96) !important;
    border: 1px solid #dedede !important;
    border-radius: 20px !important;
    padding: 22px !important;
    box-shadow: 0 10px 26px rgba(0,0,0,.06) !important
}

    .admin-ranking-kpi span {
        display: block !important;
        color: #e30613 !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
        letter-spacing: .04em !important;
        margin-bottom: 8px !important
    }

    .admin-ranking-kpi strong {
        color: #111 !important;
        font-size: 32px !important;
        font-weight: 900 !important
    }

.ranking-section-header {
    margin-top: 10px !important
}

.ranking-client-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important
}

.ranking-client-row {
    display: grid !important;
    grid-template-columns: 70px 1.7fr 110px 120px 120px 120px 120px !important;
    gap: 14px !important;
    align-items: center !important;
    background: rgba(255,255,255,.96) !important;
    border: 1px solid #dedede !important;
    border-radius: 20px !important;
    padding: 18px !important;
    box-shadow: 0 10px 26px rgba(0,0,0,.05) !important
}

.ranking-position {
    width: 54px !important;
    height: 54px !important;
    border-radius: 50% !important;
    background: #111 !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    font-weight: 900 !important
}

.ranking-client-main strong {
    display: block !important;
    color: #111 !important;
    font-size: 17px !important;
    font-weight: 900 !important
}

.ranking-client-main span {
    display: block !important;
    color: #666 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    margin-top: 3px !important
}

.ranking-client-row div span {
    display: block !important;
    color: #e30613 !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    margin-bottom: 4px !important
}

.ranking-client-row div strong {
    display: block !important;
    color: #111 !important;
    font-size: 14px !important;
    font-weight: 900 !important
}

@media(max-width:1100px) {
    .admin-ranking-kpi-grid {
        grid-template-columns: repeat(2,minmax(0,1fr)) !important
    }

    .ranking-client-row {
        grid-template-columns: 1fr !important
    }

    .ranking-position {
        margin-bottom: 4px !important
    }
}

@media(max-width:650px) {
    .admin-ranking-kpi-grid {
        grid-template-columns: 1fr !important
    }
}
.account-card-register {
    max-width: 980px !important;
}

.account-field-full {
    grid-column: 1 / -1 !important;
}

.account-checks {
    margin-top: 22px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.account-check {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    font-weight: 800 !important;
    color: #111 !important;
    line-height: 1.35 !important;
}

    .account-check input {
        margin-top: 3px !important;
        transform: scale(1.15) !important;
    }

    .account-check span strong {
        color: #e30613 !important;
    }

.account-message {
    display: block !important;
    margin: 18px 0 !important;
    padding: 14px 16px !important;
    border-radius: 12px !important;
    font-weight: 800 !important;
}

.account-message-ok {
    background: #e7ffe9 !important;
    border: 1px solid #98e6a7 !important;
    color: #007a24 !important;
}

.account-message-error {
    background: #fff0f0 !important;
    border: 1px solid #ffb3b3 !important;
    color: #c00000 !important;
}
.password-reset-card {
    max-width: 720px !important
}

.reset-step {
    margin-top: 22px !important
}

.reset-code-title h2 {
    font-size: 24px !important;
    font-weight: 900 !important;
    color: #111 !important;
    margin-bottom: 8px !important
}

.reset-code-title p {
    color: #555 !important;
    font-weight: 600 !important;
    margin-bottom: 18px !important
}

.reset-code-input {
    text-align: center !important;
    font-size: 26px !important;
    letter-spacing: 8px !important;
    font-weight: 900 !important
}

.reset-helper {
    background: #fff6dc !important;
    border: 1px solid #ffd36b !important;
    color: #7a5500 !important;
    border-radius: 12px !important;
    padding: 12px 14px !important;
    font-weight: 800 !important;
    margin: 14px 0 18px !important
}

.account-message {
    display: block !important;
    margin: 18px 0 !important;
    padding: 14px 16px !important;
    border-radius: 12px !important;
    font-weight: 800 !important
}

.account-message-ok {
    background: #e7ffe9 !important;
    border: 1px solid #98e6a7 !important;
    color: #007a24 !important
}

.account-message-error {
    background: #fff0f0 !important;
    border: 1px solid #ffb3b3 !important;
    color: #c00000 !important
}
.admin-filter-card-v2 {
    background: rgba(255,255,255,.96) !important;
    border: 1px solid #dedede !important;
    border-radius: 22px !important;
    padding: 24px !important;
    margin: 24px 0 28px !important;
    box-shadow: 0 12px 28px rgba(0,0,0,.05) !important
}

.admin-filter-title-v2 {
    margin-bottom: 18px !important;
    border-bottom: 1px solid #d8d8d8 !important;
    padding-bottom: 14px !important
}

    .admin-filter-title-v2 span {
        display: block !important;
        color: #e30613 !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
        letter-spacing: .04em !important;
        margin-bottom: 4px !important
    }

    .admin-filter-title-v2 h2 {
        color: #111 !important;
        font-size: 26px !important;
        font-weight: 900 !important;
        margin: 0 !important
    }

.admin-filter-grid-canjes {
    display: grid !important;
    grid-template-columns: 1fr 1.1fr 1.4fr 1fr 1fr auto !important;
    gap: 14px !important;
    align-items: end !important
}

.admin-filter-field label {
    display: block !important;
    color: #111 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    margin-bottom: 7px !important
}

.admin-input-v2 {
    width: 100% !important;
    height: 46px !important;
    border: 1px solid #cfcfcf !important;
    border-radius: 12px !important;
    padding: 0 14px !important;
    color: #111 !important;
    background: #fff !important;
    font-weight: 700 !important;
    outline: none !important
}

    .admin-input-v2:focus {
        border-color: #e30613 !important;
        box-shadow: 0 0 0 3px rgba(227,6,19,.10) !important
    }

.admin-filter-buttons {
    display: flex !important;
    gap: 10px !important;
    align-items: end !important;
    justify-content: flex-end !important
}

.btn-admin-search-v2, .btn-admin-clear-v2 {
    min-width: 105px !important;
    height: 46px !important;
    border-radius: 999px !important;
    font-weight: 900 !important;
    padding: 0 18px !important
}

.btn-admin-search-v2 {
    background: #e30613 !important;
    border: 1px solid #e30613 !important;
    color: #fff !important
}

.btn-admin-clear-v2 {
    background: #111 !important;
    border: 1px solid #111 !important;
    color: #fff !important
}

.btn-admin-search-v2:hover {
    background: #c80010 !important;
    border-color: #c80010 !important
}

.btn-admin-clear-v2:hover {
    background: #333 !important;
    border-color: #333 !important
}

@media(max-width:1180px) {
    .admin-filter-grid-canjes {
        grid-template-columns: repeat(2,minmax(0,1fr)) !important
    }

    .admin-filter-buttons {
        justify-content: flex-start !important
    }
}

@media(max-width:680px) {
    .admin-filter-grid-canjes {
        grid-template-columns: 1fr !important
    }

    .admin-filter-buttons {
        flex-direction: column !important;
        align-items: stretch !important
    }

    .btn-admin-search-v2, .btn-admin-clear-v2 {
        width: 100% !important
    }
}
.admin-level-form-card {
    background: rgba(255,255,255,.96) !important;
    border: 1px solid #dedede !important;
    border-radius: 22px !important;
    padding: 24px !important;
    margin: 24px 0 30px !important;
    box-shadow: 0 12px 28px rgba(0,0,0,.05) !important
}

.admin-level-form-title {
    border-bottom: 1px solid #d8d8d8 !important;
    padding-bottom: 14px !important;
    margin-bottom: 18px !important
}

    .admin-level-form-title span, .admin-promo-section-header span {
        display: block !important;
        color: #e30613 !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
        letter-spacing: .04em !important;
        margin-bottom: 4px !important
    }

    .admin-level-form-title h2 {
        color: #111 !important;
        font-size: 26px !important;
        font-weight: 900 !important;
        margin: 0 !important
    }

.admin-level-form-grid {
    display: grid !important;
    grid-template-columns: repeat(4,minmax(0,1fr)) !important;
    gap: 16px !important
}

.admin-level-full {
    grid-column: 1/-1 !important
}

.admin-textarea-v2 {
    min-height: 90px !important;
    padding-top: 12px !important;
    resize: vertical !important
}

.admin-level-actions {
    display: flex !important;
    gap: 12px !important;
    margin-top: 22px !important
}

.admin-level-list {
    display: grid !important;
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    gap: 18px !important;
    margin-top: 18px !important
}

.admin-level-card {
    display: grid !important;
    grid-template-columns: 84px 1fr auto !important;
    gap: 18px !important;
    align-items: flex-start !important;
    background: rgba(255,255,255,.96) !important;
    border: 1px solid #dedede !important;
    border-radius: 22px !important;
    padding: 20px !important;
    box-shadow: 0 12px 28px rgba(0,0,0,.05) !important
}

.admin-level-icon {
    width: 76px !important;
    height: 76px !important;
    border-radius: 50% !important;
    background: #111 !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 28px !important
}

.admin-level-badges {
    display: flex !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    margin-bottom: 8px !important
}

    .admin-level-badges span {
        display: inline-flex !important;
        background: #ffe1e5 !important;
        color: #e30613 !important;
        border-radius: 999px !important;
        padding: 6px 10px !important;
        font-size: 11px !important;
        font-weight: 900 !important;
        text-transform: uppercase !important
    }

.admin-level-info h3 {
    color: #111 !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    margin: 0 0 6px !important
}

.admin-level-info p {
    color: #444 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-bottom: 14px !important
}

.admin-level-meta {
    display: grid !important;
    grid-template-columns: repeat(3,minmax(0,1fr)) !important;
    gap: 10px !important
}

    .admin-level-meta div {
        background: #fafafa !important;
        border: 1px solid #e5e5e5 !important;
        border-radius: 14px !important;
        padding: 10px !important
    }

    .admin-level-meta span {
        display: block !important;
        color: #e30613 !important;
        font-size: 10px !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
        margin-bottom: 4px !important
    }

    .admin-level-meta strong {
        color: #111 !important;
        font-size: 13px !important;
        font-weight: 900 !important
    }

.admin-level-card-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important
}

.btn-level-edit, .btn-level-state {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 100px !important;
    height: 40px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-decoration: none !important
}

.btn-level-edit {
    background: #111 !important;
    color: #fff !important
}

.btn-level-state {
    background: #e30613 !important;
    color: #fff !important
}

@media(max-width:1180px) {
    .admin-level-form-grid, .admin-level-list {
        grid-template-columns: repeat(2,minmax(0,1fr)) !important
    }

    .admin-level-card {
        grid-template-columns: 1fr !important
    }

    .admin-level-card-actions {
        flex-direction: row !important
    }
}

@media(max-width:680px) {
    .admin-level-form-grid, .admin-level-list, .admin-level-meta {
        grid-template-columns: 1fr !important
    }

    .admin-level-actions, .admin-level-card-actions {
        flex-direction: column !important
    }
}
/* FIX ADMIN NIVELES - ALINEACIÓN DE TARJETAS */

.admin-level-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    width: 100% !important;
}

.admin-level-card {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 90px 1fr 140px !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 22px !important;
    min-height: auto !important;
    overflow: hidden !important;
}

.admin-level-info {
    width: 100% !important;
    min-width: 0 !important;
}

    .admin-level-info h3,
    .admin-level-info p {
        text-align: left !important;
    }

.admin-level-meta {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
    width: 100% !important;
}

.admin-level-card-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    justify-content: center !important;
    align-items: stretch !important;
}

.btn-level-edit,
.btn-level-state {
    width: 100% !important;
}

@media(max-width: 900px) {
    .admin-level-card {
        grid-template-columns: 1fr !important;
    }

    .admin-level-card-actions {
        flex-direction: row !important;
    }
}
.niveles-admin-list-fix {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    width: 100% !important;
}

.nivel-admin-card-fix {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 78px 1fr 130px !important;
    gap: 18px !important;
    align-items: center !important;
    background: rgba(255,255,255,.96) !important;
    border: 1px solid #dedede !important;
    border-radius: 22px !important;
    padding: 20px !important;
    box-shadow: 0 12px 28px rgba(0,0,0,.05) !important;
    overflow: hidden !important;
}

.nivel-admin-icon-fix {
    width: 62px !important;
    height: 62px !important;
    border-radius: 50% !important;
    background: #111 !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
}

.nivel-admin-content-fix h3 {
    margin: 6px 0 !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    color: #111 !important;
}

.nivel-admin-content-fix p {
    margin: 0 0 12px !important;
    color: #444 !important;
    font-weight: 600 !important;
}

.nivel-admin-badges-fix {
    display: flex !important;
    gap: 8px !important;
}

    .nivel-admin-badges-fix span {
        background: #ffe1e5 !important;
        color: #e30613 !important;
        border-radius: 999px !important;
        padding: 5px 10px !important;
        font-size: 11px !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
    }

.nivel-admin-meta-fix {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
}

    .nivel-admin-meta-fix div {
        background: #fafafa !important;
        border: 1px solid #e5e5e5 !important;
        border-radius: 14px !important;
        padding: 10px !important;
    }

    .nivel-admin-meta-fix span {
        display: block !important;
        color: #e30613 !important;
        font-size: 10px !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
    }

    .nivel-admin-meta-fix strong {
        color: #111 !important;
        font-size: 13px !important;
        font-weight: 900 !important;
    }

.nivel-admin-actions-fix {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.nivel-btn-edit-fix,
.nivel-btn-state-fix {
    height: 38px !important;
    border-radius: 999px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 900 !important;
    font-size: 13px !important;
    text-decoration: none !important;
}

.nivel-btn-edit-fix {
    background: #111 !important;
    color: #fff !important;
}

.nivel-btn-state-fix {
    background: #e30613 !important;
    color: #fff !important;
}

@media(max-width: 900px) {
    .nivel-admin-card-fix {
        grid-template-columns: 1fr !important;
    }

    .nivel-admin-actions-fix {
        flex-direction: row !important;
    }
}
/* FASE 10.2 - Tarjeta nivel cliente */
.nivel-cliente-card {
    color: #fff;
    border-radius: 18px;
    padding: 24px;
    min-height: 170px;
    box-shadow: 0 14px 28px rgba(0,0,0,.16);
}

.nivel-cliente-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}

.nivel-mini-title {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .8px;
}

.nivel-cliente-card h2 {
    margin: 8px 0 6px;
    font-size: 34px;
    line-height: 1;
}

.nivel-cliente-card p {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
}

.nivel-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.nivel-progress-labels,
.nivel-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 900;
    margin-top: 18px;
}

.nivel-progress-track {
    width: 100%;
    height: 10px;
    background: rgba(255,255,255,.28);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 8px;
}

.nivel-progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 999px;
    transition: width .35s ease;
}

.nivel-vigencia {
    margin-top: 12px;
    font-size: 12px;
    opacity: .95;
    font-weight: 700;
}
.local-real-photo {
    cursor: zoom-in;
    transition: transform 0.25s ease;
}

    .local-real-photo:hover {
        transform: scale(1.03);
    }

.local-photo-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.86);
}

    .local-photo-modal.is-open {
        display: flex;
    }

.local-photo-modal-content {
    max-width: 1000px;
    max-height: 90vh;
    text-align: center;
}

    .local-photo-modal-content img {
        display: block;
        max-width: 100%;
        max-height: 82vh;
        margin: 0 auto;
        object-fit: contain;
        border-radius: 14px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    }

.local-photo-modal-title {
    margin-top: 14px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.local-photo-modal-close {
    position: absolute;
    top: 18px;
    right: 26px;
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 768px) {
    .local-photo-modal {
        padding: 16px;
    }

    .local-photo-modal-content img {
        max-height: 75vh;
    }

    .local-photo-modal-title {
        font-size: 17px;
    }
}
.local-real-photo {
    cursor: zoom-in;
}

.local-photo-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.88);
}

.local-photo-modal-content {
    max-width: 1100px;
    max-height: 90vh;
    text-align: center;
}

    .local-photo-modal-content img {
        display: block;
        max-width: 100%;
        max-height: 82vh;
        margin: 0 auto;
        object-fit: contain;
        border-radius: 12px;
    }

.local-photo-modal-title {
    margin-top: 12px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.local-photo-modal-close {
    position: absolute;
    top: 15px;
    right: 24px;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 44px;
    cursor: pointer;
}
.local-whatsapp-disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(1);
}
/* =========================================================
   INICIO
========================================================= */

.home-page {
    background: transparent;
    padding: 42px 0 90px;
}

.home-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(320px, .8fr);
    gap: 26px;
    align-items: stretch;
    padding: 26px;
    background: rgba(255,255,255,.94);
    border: 1px solid #dedede;
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

.home-carousel {
    min-width: 0;
    height: 430px;
    overflow: hidden;
    border-radius: 20px;
    background: #111;
}

    .home-carousel .carousel-inner,
    .home-carousel .carousel-item {
        height: 430px;
    }

    .home-carousel img {
        width: 100%;
        height: 430px;
        object-fit: cover;
    }

    .home-carousel .carousel-control-prev-icon,
    .home-carousel .carousel-control-next-icon {
        padding: 20px;
        border-radius: 50%;
        background-color: rgba(0,0,0,.48);
        background-size: 50%;
    }

    .home-carousel .carousel-indicators button {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

.home-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 22px;
}

.home-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--shimaya-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-intro h1 {
    margin: 0 0 18px;
    color: #111;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 900;
}

.home-intro p {
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.65;
}

.home-main-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.home-primary-button,
.home-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
}

.home-primary-button {
    border: 1px solid var(--shimaya-red);
    background: var(--shimaya-red);
    color: #fff;
}

    .home-primary-button:hover {
        background: var(--shimaya-red-dark);
        border-color: var(--shimaya-red-dark);
        color: #fff;
    }

.home-secondary-button {
    border: 1px solid #111;
    background: #fff;
    color: #111;
}

    .home-secondary-button:hover {
        background: #111;
        color: #fff;
    }

.home-access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 30px;
}

.home-access-card {
    padding: 28px;
    background: rgba(255,255,255,.95);
    border: 1px solid #dedede;
    border-radius: 20px;
    box-shadow: 0 8px 22px rgba(0,0,0,.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .home-access-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(0,0,0,.11);
    }

.home-access-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.home-access-card h2 {
    margin: 0 0 10px;
    color: #111;
    font-size: 22px;
    font-weight: 900;
}

.home-access-card p {
    min-height: 72px;
    margin: 0 0 18px;
    color: #606060;
    line-height: 1.55;
}

.home-access-card a {
    color: var(--shimaya-red);
    font-weight: 900;
    text-decoration: none;
}

    .home-access-card a i {
        margin-left: 7px;
    }


/* =========================================================
   QUIENES SOMOS - VALORES
========================================================= */

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 30px;
}

.about-value-card {
    padding: 28px;
    background: rgba(255,255,255,.95);
    border: 1px solid #dedede;
    border-radius: 20px;
    box-shadow: 0 8px 22px rgba(0,0,0,.06);
}

    .about-value-card > i {
        width: 52px;
        height: 52px;
        margin-bottom: 16px;
        border-radius: 50%;
        background: var(--shimaya-red);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 21px;
    }

    .about-value-card h3 {
        margin: 0 0 10px;
        color: #111;
        font-size: 21px;
        font-weight: 900;
    }

    .about-value-card p {
        margin: 0;
        color: #606060;
        line-height: 1.55;
    }


/* =========================================================
   CONTACTO
========================================================= */

.contact-page {
    background: transparent;
    padding: 46px 0 90px;
}

.contact-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.contact-heading {
    margin-bottom: 28px;
}

    .contact-heading > span {
        display: block;
        color: var(--shimaya-red);
        font-size: 13px;
        font-weight: 900;
        letter-spacing: .07em;
        text-transform: uppercase;
    }

    .contact-heading h1 {
        margin: 5px 0 9px;
        color: #111;
        font-size: 40px;
        font-weight: 900;
    }

    .contact-heading p {
        max-width: 760px;
        margin: 0;
        color: #555;
        font-size: 16px;
        line-height: 1.6;
    }

.contact-main-card {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 36px;
    align-items: center;
    padding: 42px;
    background: rgba(255,255,255,.95);
    border: 1px solid #dedede;
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

.contact-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--shimaya-red);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-main-copy h2 {
    margin: 0 0 15px;
    color: #111;
    font-size: 32px;
    font-weight: 900;
}

.contact-main-copy p {
    max-width: 710px;
    margin: 0;
    color: #555;
    line-height: 1.65;
}

.contact-primary-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
    padding: 13px 25px;
    border-radius: 999px;
    background: #12a538;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

    .contact-primary-button:hover {
        background: #0c8c2d;
        color: #fff;
    }

.contact-logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .contact-logo-area img {
        width: 210px;
        height: 210px;
        object-fit: contain;
        filter: drop-shadow(0 14px 22px rgba(0,0,0,.2));
    }

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 30px;
}

.contact-option-card {
    padding: 28px;
    background: rgba(255,255,255,.95);
    border: 1px solid #dedede;
    border-radius: 20px;
    box-shadow: 0 8px 22px rgba(0,0,0,.06);
}

    .contact-option-card > i {
        width: 52px;
        height: 52px;
        margin-bottom: 17px;
        border-radius: 50%;
        background: #111;
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 21px;
    }

    .contact-option-card h3 {
        margin: 0 0 10px;
        color: #111;
        font-size: 21px;
        font-weight: 900;
    }

    .contact-option-card p {
        min-height: 72px;
        margin: 0 0 18px;
        color: #606060;
        line-height: 1.55;
    }

    .contact-option-card a {
        color: var(--shimaya-red);
        font-weight: 900;
        text-decoration: none;
    }


/* =========================================================
   RESPONSIVE INICIO / CONTACTO
========================================================= */

@media (max-width: 950px) {

    .home-hero,
    .contact-main-card {
        grid-template-columns: 1fr;
    }

    .home-intro {
        padding: 20px 8px 8px;
    }

    .contact-logo-area {
        order: -1;
    }

    .home-access-grid,
    .about-values-grid,
    .contact-options-grid {
        grid-template-columns: 1fr;
    }

    .home-access-card p,
    .contact-option-card p {
        min-height: auto;
    }
}

@media (max-width: 650px) {

    .home-page,
    .contact-page {
        padding-top: 28px;
    }

    .home-container,
    .contact-container {
        padding: 0 18px;
    }

    .home-hero {
        padding: 16px;
    }

    .home-carousel,
    .home-carousel .carousel-inner,
    .home-carousel .carousel-item,
    .home-carousel img {
        height: 270px;
    }

    .home-intro h1 {
        font-size: 32px;
    }

    .home-main-actions {
        flex-direction: column;
    }

    .home-primary-button,
    .home-secondary-button {
        width: 100%;
    }

    .contact-main-card {
        padding: 26px;
    }

    .contact-main-copy h2 {
        font-size: 27px;
    }

    .contact-logo-area img {
        width: 160px;
        height: 160px;
    }
}

/* =========================================================
   FONDO GENERAL FINAL
========================================================= */

html,
body {
    min-height: 100%;
}

body {
    background-color: #ffffff !important;
    background-image: linear-gradient(rgba(255,255,255,0.35), rgba(255,255,255,0.35)), url('../fondo-shimaya.png') !important;
    background-repeat: repeat !important;
    background-size: 900px auto !important;
    background-attachment: fixed !important;
    background-position: center top !important;
}

.login-page,
.menu-modern-page,
.menu-page,
.page-section,
.locales-page,
.about-page,
.rewards-page,
.rewards-page-v2,
.canjes-page,
.history-page,
.promociones-page,
.admin-page {
    background: transparent !important;
}
