﻿:root {
    --primary: #336633;
    --primary-dark: #244b24;
    --accent: #ffb703;
    --bg: #f6f8f4;
    --card: #ffffff;
    --text: #1f2a1f;
    --muted: #6f7b6f;
    --danger: #d9534f;
    --radius: 22px;
}

body {
    margin: 0;
    background: var(--bg);
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--text);
}

a {
    text-decoration: none;
}

/* TOPBAR */

.topbar {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e4eadf;
    position: sticky;
    top: 0;
    z-index: 100;
}

.topbar-content {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}

.brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--primary);
    color: white;
    display: grid;
    place-items: center;
    font-size: 25px;
    box-shadow: 0 10px 22px rgba(51,102,51,.25);
}

.brand-title {
    font-size: 19px;
    font-weight: 800;
    line-height: 1;
}

.brand-subtitle {
    font-size: 13px;
    color: var(--muted);
}

.nav-links {
    display: flex;
    gap: 22px;
}

    .nav-links a {
        color: var(--muted);
        font-weight: 600;
    }

        .nav-links a:hover {
            color: var(--primary);
        }

.btn-login {
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--primary);
    color: white;
    font-weight: 700;
}

/* HERO */

.hero {
    padding: 70px 0 50px;
    background: radial-gradient(circle at top left, rgba(255,183,3,.25), transparent 35%), radial-gradient(circle at top right, rgba(51,102,51,.22), transparent 35%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 42px;
    align-items: center;
}

.badge-soft {
    display: inline-block;
    padding: 9px 15px;
    border-radius: 999px;
    background: #fff4d2;
    color: #8a6200;
    font-weight: 800;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: .98;
    margin-bottom: 22px;
}

.hero p {
    font-size: 18px;
    color: var(--muted);
    max-width: 620px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.btn-primary-custom,
.btn-outline-custom {
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 800;
}

.btn-primary-custom {
    background: var(--primary);
    color: white;
    box-shadow: 0 12px 28px rgba(51,102,51,.28);
}

.btn-outline-custom {
    border: 2px solid #d5dfcf;
    color: var(--primary);
    background: white;
}

.hero-stats {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

    .hero-stats div {
        background: white;
        padding: 14px 18px;
        border-radius: 18px;
        box-shadow: 0 10px 24px rgba(30,50,30,.06);
    }

    .hero-stats strong {
        display: block;
        font-size: 22px;
        color: var(--primary);
    }

    .hero-stats span {
        font-size: 13px;
        color: var(--muted);
    }

/* CUPON HERO */

.hero-card {
    display: flex;
    justify-content: center;
}

.coupon-card {
    background: white;
    border-radius: 30px;
    padding: 28px;
    width: 100%;
    max-width: 410px;
    box-shadow: 0 30px 70px rgba(30,50,30,.16);
    position: relative;
    overflow: hidden;
}

    .coupon-card::before {
        content: "";
        position: absolute;
        width: 170px;
        height: 170px;
        right: -50px;
        top: -50px;
        background: rgba(255,183,3,.35);
        border-radius: 50%;
    }

.coupon-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.store {
    color: var(--muted);
    font-weight: 700;
}

.discount {
    background: var(--accent);
    color: #3d2b00;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 900;
}

.coupon-card h3 {
    margin-top: 28px;
    font-size: 30px;
    font-weight: 900;
}

.coupon-card p {
    color: var(--muted);
}

.price-row {
    display: flex;
    align-items: end;
    gap: 14px;
    margin: 22px 0;
}

.old-price {
    color: #9aa39a;
    text-decoration: line-through;
    font-weight: 700;
}

.new-price {
    color: var(--primary);
    font-size: 28px;
    font-weight: 900;
}

.coupon-code {
    border: 2px dashed #cfd9c9;
    border-radius: 18px;
    padding: 14px;
    margin-bottom: 18px;
    background: #fafcf8;
}

    .coupon-code span {
        display: block;
        color: var(--muted);
        font-size: 13px;
    }

    .coupon-code strong {
        font-size: 24px;
        letter-spacing: 1px;
    }

.btn-coupon {
    width: 100%;
    border: none;
    border-radius: 18px;
    padding: 15px;
    background: var(--primary);
    color: white;
    font-weight: 900;
}

/* SECTIONS */

.section {
    padding: 54px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 26px;
}

    .section-head.center {
        justify-content: center;
        text-align: center;
    }

.section-kicker {
    color: var(--primary);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .8px;
}

.section h2 {
    font-size: 38px;
    font-weight: 900;
    margin: 4px 0 0;
}

.see-all {
    color: var(--primary);
    font-weight: 800;
}

/* OFFERS */

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.offer-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(30,50,30,.08);
    transition: .2s ease;
}

    .offer-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 45px rgba(30,50,30,.12);
    }

.offer-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}

    .offer-img.food {
        background: linear-gradient(135deg, #ffb703, #fb8500);
    }

    .offer-img.clothes {
        background: linear-gradient(135deg, #8ecae6, #219ebc);
    }

    .offer-img.market {
        background: linear-gradient(135deg, #95d5b2, #40916c);
    }

.offer-body {
    padding: 20px;
}

.offer-store {
    color: var(--primary);
    font-weight: 900;
    font-size: 14px;
}

.offer-body h3 {
    font-size: 22px;
    font-weight: 900;
    margin: 8px 0;
}

.offer-body p {
    color: var(--muted);
    min-height: 48px;
}

.offer-prices {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 14px 0;
}

.offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted);
    font-size: 14px;
}

.mini-btn {
    background: var(--primary);
    color: white;
    padding: 9px 15px;
    border-radius: 999px;
    font-weight: 800;
}

/* STEPS */

.how {
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.step-card {
    background: var(--bg);
    padding: 28px;
    border-radius: var(--radius);
    text-align: center;
}

.step-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: white;
    font-size: 22px;
    font-weight: 900;
}

.step-card h3 {
    font-weight: 900;
}

.step-card p {
    color: var(--muted);
}

/* FOOTER */

.footer {
    background: var(--primary-dark);
    color: white;
    padding: 24px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .offers-grid,
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 576px) {
    .topbar-content {
        min-height: 68px;
    }

    .brand-subtitle {
        display: none;
    }

    .btn-login {
        display: none;
    }

    .hero {
        padding: 42px 0 34px;
    }

        .hero h1 {
            letter-spacing: -1px;
        }

    .offers-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .section-head {
        align-items: start;
        flex-direction: column;
        gap: 8px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
.publicidad-banner {
    display: grid;
    grid-template-columns: 320px 1fr 170px;
    align-items: center;
    gap: 28px;
    background: white;
    border-radius: 22px;
    padding: 18px;
    margin: 25px 0;
    box-shadow: 0 10px 28px rgba(0,0,0,.10);
}

    .publicidad-banner img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-radius: 16px;
    }

    .publicidad-banner h3 {
        font-size: 30px;
        font-weight: 900;
        margin: 5px 0;
    }

.publicidad-tag {
    display: inline-block;
    background: #e8f5e9;
    color: #1b7f2a;
    font-weight: 900;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 13px;
}

.btn-publicidad {
    background: #fff;
    color: #08751d;
    border: 1px solid #d9e8d9;
    padding: 14px 25px;
    border-radius: 14px;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.rubros-box {
    margin: 28px 0;
}

    .rubros-box h2 {
        font-size: 26px;
        font-weight: 900;
        margin-bottom: 14px;
    }

.rubro-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 135px;
    background: white;
    color: #132015;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 800;
    margin: 6px 12px 6px 0;
    box-shadow: 0 7px 18px rgba(0,0,0,.08);
}

    .rubro-pill.active {
        background: linear-gradient(135deg, #159b28, #08751d);
        color: white;
    }

.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.offer-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

.offer-img {
    height: 200px;
    position: relative;
}

    .offer-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.offer-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #08751d;
    color: white;
    padding: 8px 13px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 13px;
}

.offer-days {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #08751d;
    color: white;
    padding: 8px 13px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 13px;
}

.offer-body {
    padding: 18px;
}

.offer-store {
    font-weight: 900;
    color: #101b12;
    margin-bottom: 4px;
}

.offer-category {
    color: #6d776f;
    font-size: 14px;
    margin-bottom: 15px;
}

.offer-body h3 {
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 8px;
}

.offer-body p {
    color: #66736a;
    min-height: 42px;
}

.price-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 20px 0;
    align-items: center;
}

    .price-box div:first-child {
        border-right: 1px solid #d9ded9;
    }

.price-label {
    display: block;
    color: #8a948d;
    font-weight: 700;
    font-size: 14px;
}

.old-price {
    color: #7f8982;
    text-decoration: line-through;
    font-weight: 900;
}

.new-price {
    color: #08751d;
    font-size: 27px;
    font-weight: 900;
}

.btn-cupon-card {
    display: block;
    width: 100%;
    background: #e9f8e9;
    color: #08751d;
    padding: 13px;
    text-align: center;
    border-radius: 13px;
    font-weight: 900;
}

@media(max-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .publicidad-banner {
        grid-template-columns: 1fr;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }
}

/* LOGIN / REGISTRO */

.login-page {
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(51, 102, 51, .20), transparent 35%), radial-gradient(circle at bottom right, rgba(255, 183, 3, .25), transparent 35%), #f4f8f3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

    .login-page form {
        width: 100%;
    }

.login-card {
    width: 100%;
    max-width: 430px;
    margin: auto;
    background: #fff;
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 24px 70px rgba(20, 50, 20, .18);
    border: 1px solid rgba(51, 102, 51, .10);
    text-align: center;
}

    .login-card::before {
        content: "🐾";
        width: 68px;
        height: 68px;
        display: grid;
        place-items: center;
        margin: 0 auto 18px;
        border-radius: 22px;
        background: linear-gradient(135deg, #336633, #0b7a22);
        color: white;
        font-size: 32px;
        box-shadow: 0 12px 28px rgba(51, 102, 51, .25);
    }

    .login-card h1 {
        font-size: 30px;
        font-weight: 900;
        color: #112016;
        margin-bottom: 8px;
    }

    .login-card p {
        color: #68766c;
        margin-bottom: 26px;
    }

.login-input {
    width: 100%;
    height: 52px;
    border: 1px solid #dfe8df;
    border-radius: 16px;
    padding: 0 16px;
    margin-bottom: 14px;
    font-size: 16px;
    outline: none;
    background: #f9fbf8;
    transition: .2s ease;
}

    .login-input:focus {
        border-color: #336633;
        background: white;
        box-shadow: 0 0 0 4px rgba(51, 102, 51, .12);
    }

.login-btn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #159b28, #08751d);
    color: white;
    font-weight: 900;
    font-size: 16px;
    margin-top: 8px;
    box-shadow: 0 12px 26px rgba(8, 117, 29, .25);
    cursor: pointer;
}

    .login-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 16px 32px rgba(8, 117, 29, .30);
    }

.login-error {
    display: block;
    margin-top: 14px;
    color: #d93025;
    font-weight: 700;
}

.login-card a {
    display: inline-block;
    margin-top: 18px;
    color: #08751d;
    font-weight: 800;
    text-decoration: none;
}

    .login-card a:hover {
        text-decoration: underline;
    }

@media(max-width: 480px) {
    .login-card {
        padding: 28px 22px;
        border-radius: 22px;
    }

        .login-card h1 {
            font-size: 26px;
        }
}

.user-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    border-radius: 999px;
    padding: 10px 18px 10px 10px;
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
    border: 1px solid #edf3ed;
}

.user-avatar {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #159b28, #08751d);
    display: grid;
    place-items: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(8,117,29,.25);
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-hola {
    font-weight: 900;
    color: #102217;
    font-size: 17px;
}

.user-links {
    display: flex;
    gap: 14px;
    margin-top: 3px;
}

.user-link {
    color: #08751d;
    font-weight: 800;
    text-decoration: none;
    font-size: 14px;
}

    .user-link:hover {
        text-decoration: underline;
    }

.logout-link {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

    .user-box span {
        font-weight: 800;
        color: #244b24;
    }

.btn-salir {
    background: #e9f8e9;
    color: #08751d;
    padding: 8px 13px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
}

    .btn-salir:hover {
        background: #08751d;
        color: white;
    }


/* =========================================
   OFERTA DETALLE 
========================================= */

.detalle-page {
    padding: 35px 0 60px;
}

.breadcrumb-cc {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: #7a867d;
    font-weight: 700;
}

    .breadcrumb-cc a {
        color: #08751d;
        text-decoration: none;
    }

.detalle-oferta-card {
    background: white;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 18px 50px rgba(20,40,20,.10);
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 34px;
    align-items: start;
}

.detalle-foto-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 420px;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.detalle-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detalle-foto-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: linear-gradient(135deg, #159b28, #08751d);
    color: white;
    padding: 11px 18px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 15px;
    box-shadow: 0 8px 18px rgba(8,117,29,.28);
}

.detalle-comercio {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #08751d;
    font-size: 24px;
    font-weight: 900;
}

.detalle-comercio-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: #e9f8e9;
    display: grid;
    place-items: center;
    font-size: 22px;
}

.detalle-info-box h1 {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
    margin: 18px 0 16px;
    color: #102217;
    font-weight: 900;
}

.detalle-descripcion {
    color: #66736a;
    font-size: 20px;
    margin-bottom: 26px;
}

.detalle-resumen {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}

.detalle-resumen-item {
    background: #f7faf7;
    border-radius: 20px;
    padding: 18px;
    display: flex;
    gap: 14px;
    align-items: center;
    border: 1px solid #edf3ed;
}

.resumen-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #159b28, #08751d);
    color: white;
    display: grid;
    place-items: center;
    font-size: 24px;
}

.detalle-resumen-item strong {
    display: block;
    color: #102217;
    font-size: 19px;
    font-weight: 900;
}

.detalle-resumen-item span {
    color: #748077;
    font-size: 14px;
}

.detalle-aplicacion {
    margin-top: 24px;
    padding: 18px;
    border-radius: 18px;
    background: #f7faf7;
    color: #203323;
    font-size: 17px;
    border: 1px solid #edf3ed;
}

.cupon-card-final {
    margin-top: 30px;
    background: white;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 18px 50px rgba(20,40,20,.10);
}

    .cupon-card-final h2 {
        font-size: 34px;
        color: #102217;
        font-weight: 900;
        margin-bottom: 10px;
    }

    .cupon-card-final p {
        color: #68766c;
        font-size: 18px;
    }

.btn-generar-cupon-final {
    margin-top: 25px;
    border: none;
    background: linear-gradient(135deg, #159b28, #08751d);
    color: white;
    border-radius: 18px;
    padding: 18px 30px;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(8,117,29,.25);
    cursor: pointer;
}

.cupon-ticket-final {
    margin-top: 30px;
    border: 2px dashed #0a8a26;
    border-radius: 28px;
    background: linear-gradient(135deg,#fbfffb,#f2fbf2);
    padding: 28px;
    display: grid;
    grid-template-columns: 80px 1fr 420px;
    gap: 28px;
    align-items: center;
}

.cupon-ticket-icon {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    background: linear-gradient(135deg, #159b28, #08751d);
    color: white;
    display: grid;
    place-items: center;
    font-size: 42px;
}

.cupon-ticket-code span {
    display: block;
    color: #102217;
    font-weight: 900;
    font-size: 20px;
}

.cupon-ticket-code strong {
    display: block;
    font-size: clamp(38px,4vw,64px);
    color: #08751d;
    font-weight: 900;
    line-height: 1;
    margin: 8px 0;
    letter-spacing: 1px;
}

.cupon-ticket-code small {
    color: #6d786f;
    font-size: 16px;
}

.cupon-ticket-barcode {
    text-align: center;
}

.barcode-final {
    width: 100%;
    max-width: 400px;
    height: 120px;
    object-fit: contain;
    background: white;
    border-radius: 14px;
    padding: 8px;
    border: 1px solid #dfe8df;
}

.barcode-text {
    margin-top: 8px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #102217;
}

.cupon-ticket-copy {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 10px;
}

.btn-copiar-final {
    border: none;
    background: #102217;
    color: white;
    border-radius: 14px;
    padding: 14px 26px;
    font-weight: 900;
    cursor: pointer;
}

.cupon-alerta {
    margin-top: 24px;
    background: #fff9e7;
    border: 1px solid #ffe7a3;
    color: #6a5600;
    padding: 16px 18px;
    border-radius: 18px;
    font-weight: 700;
}

.cupon-actions-final {
    display: flex;
    gap: 16px;
    margin-top: 26px;
}

.btn-volver-final,
.btn-mis-cupones-final {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
}

.btn-volver-final {
    border: 2px solid #08751d;
    color: #08751d;
}

    .btn-volver-final:hover {
        background: #08751d;
        color: white;
    }

.btn-mis-cupones-final {
    background: #102217;
    color: white;
}

.detalle-msg {
    display: block;
    margin-top: 16px;
    color: #c62828;
    font-weight: 800;
}

@media(max-width: 1100px) {

    .detalle-oferta-card {
        grid-template-columns: 1fr;
    }

    .detalle-foto-box {
        height: 320px;
    }

    .detalle-resumen {
        grid-template-columns: 1fr;
    }

    .cupon-ticket-final {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cupon-ticket-icon {
        margin: auto;
    }
}

@media(max-width: 700px) {

    .detalle-oferta-card,
    .cupon-card-final {
        padding: 18px;
        border-radius: 22px;
    }

    .detalle-foto-box {
        height: 240px;
    }

    .detalle-info-box h1 {
        font-size: 36px;
    }

    .cupon-ticket-code strong {
        font-size: 34px;
    }

    .cupon-actions-final {
        flex-direction: column;
    }
}


/* =========================================
   Mis Cupones
========================================= */
.mis-cupones-head {
    margin-bottom: 25px;
}

    .mis-cupones-head h1 {
        font-size: 42px;
        font-weight: 900;
        color: #102217;
    }

    .mis-cupones-head p {
        color: #68766c;
        font-size: 18px;
    }

.mis-cupones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.mis-cupon-card {
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 14px 35px rgba(20,40,20,.10);
    border: 1px solid #edf3ed;
}

.mis-cupon-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

    .mis-cupon-top span {
        color: #08751d;
        font-weight: 900;
    }

    .mis-cupon-top strong {
        background: #e9f8e9;
        color: #08751d;
        padding: 6px 10px;
        border-radius: 999px;
    }

.mis-cupon-card h3 {
    font-size: 23px;
    font-weight: 900;
    color: #102217;
}

.mis-cupon-card p {
    color: #68766c;
    min-height: 48px;
}

.mis-cupon-code {
    margin: 18px 0;
    border: 2px dashed #08751d;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    color: #08751d;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1px;
    background: #fbfffb;
}

.mis-cupon-info {
    color: #68766c;
    font-weight: 700;
    margin-bottom: 16px;
}

.btn-ver-cupon {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #159b28, #08751d);
    color: white;
    text-align: center;
    padding: 13px;
    border-radius: 14px;
    font-weight: 900;
    text-decoration: none;
}

    .btn-ver-cupon:hover {
        color: white;
    }

@media(max-width: 992px) {
    .mis-cupones-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 600px) {
    .mis-cupones-grid {
        grid-template-columns: 1fr;
    }
}