/* Prime Points - frontend */
.pp-account-block .pp-block-title {
    display: block;
    font-weight: 600;
    margin-top: 6px;
}
.pp-account-block .pp-block-balance {
    display: block;
    font-size: 1.6em;
    font-weight: 700;
    color: #e51a1a;
    margin: 6px 0;
}
.pp-account-block .pp-block-balance small { font-size: 0.6em; color: #666; }
.pp-account-block .pp-block-subtitle {
    display: block;
    font-size: 0.85em;
    color: #666;
}

.pp-history-wrapper { padding: 10px 0; }

.pp-summary-card {
    background: linear-gradient(135deg, #e51a1a 0%, #c41515 100%);
    color: #fff;
    border-radius: 6px;
    padding: 20px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.pp-summary-card .pp-label {
    display: block;
    font-size: 0.85em;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pp-summary-card .pp-value {
    display: block;
    font-size: 2em;
    font-weight: 700;
    margin-top: 4px;
}
.pp-summary-card .pp-value small { font-size: 0.55em; opacity: 0.85; }

.pp-history-table { width: 100%; margin: 10px 0; }
.pp-history-table th, .pp-history-table td { padding: 8px; border-bottom: 1px solid #eee; }
.pp-history-table th { background: #f7f7f7; text-align: left; }
.pp-history-table .pp-right { text-align: right; }
.pp-history-table .pp-pos { color: #1e7e34; font-weight: 600; }
.pp-history-table .pp-neg { color: #c0392b; font-weight: 600; }

.pp-pagination { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; }
.pp-pagination-links a { margin-left: 8px; }

.pp-empty { padding: 30px; text-align: center; color: #888; }

@media (max-width: 600px) {
    .pp-summary-card { gap: 16px; padding: 14px; }
    .pp-summary-card .pp-value { font-size: 1.5em; }
    .pp-history-table { font-size: 0.85em; }
}

/* ===== Catalog v2 (pagina principal del menu) ===== */
.pp-catalog-v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 16px 60px;
}
.pp-cat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.pp-cat-title-block { flex: 1 1 auto; }
.pp-cat-title {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin: 0;
    letter-spacing: 0.5px;
}
.pp-cat-subtitle {
    color: #777;
    margin: 4px 0 0;
    font-size: 13px;
}
.pp-cat-balance {
    background: #e51a1a;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    text-align: center;
    min-width: 140px;
}
.pp-cat-balance-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    font-weight: 600;
}
.pp-cat-balance-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 4px;
}
.pp-cat-balance-value small { font-size: 12px; opacity: 0.85; font-weight: 600; }
.pp-cat-balance-cta { background: #fff !important; padding: 0; box-shadow: none; }

.pp-cat-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 16px 0 24px;
    font-size: 0.95em;
}
.pp-cat-link {
    color: #555;
    text-decoration: none;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}
.pp-cat-link:hover { color: #e51a1a; border-bottom-color: #e51a1a; text-decoration: none; }
.pp-cat-link-icon { margin-right: 4px; font-size: 16px !important; vertical-align: middle; }

.pp-cat-active {
    background: #e8f5e9;
    border-left: 4px solid #2e7d32;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    color: #1b5e20;
}
.pp-cat-note {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    color: #795548;
    font-size: 0.95em;
}
.pp-cat-note strong { color: #c41515; }

/* Grid productos */
.pp-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.pp-cat-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s;
}
.pp-cat-card:hover {
    border-color: #e51a1a;
    transform: translateY(-2px);
}
.pp-cat-card-disabled { opacity: 0.6; }
.pp-cat-card-img-link { display: block; background: #fff; }
.pp-cat-card-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    padding: 12px;
    background: #fff;
}
.pp-cat-card-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}
.pp-cat-card-brand {
    font-size: 11px;
    text-transform: uppercase;
    color: #e51a1a;
    letter-spacing: 1px;
    font-weight: 700;
}
.pp-cat-card-name {
    font-size: 14px;
    margin: 0;
    line-height: 1.3;
    min-height: 2.6em;
    font-weight: 600;
}
.pp-cat-card-name a { color: #222; text-decoration: none; }
.pp-cat-card-name a:hover { color: #e51a1a; text-decoration: none; }
.pp-cat-card-pts-block {
    background: #fafafa;
    border-radius: 4px;
    padding: 10px;
    text-align: center;
    margin: 6px 0;
}
.pp-cat-card-pts {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    line-height: 1;
}
.pp-cat-card-pts-label {
    font-size: 11px;
    color: #888;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 2px;
    text-transform: uppercase;
}
.pp-btn-full { width: 100%; text-align: center; }

/* Estado vacio */
.pp-cat-empty {
    text-align: center;
    padding: 60px 20px;
    background: #fafafa;
    border-radius: 6px;
    margin-top: 20px;
}
.pp-cat-empty-icon { font-size: 60px !important; margin-bottom: 16px; color: #ccc; display: block; }
.pp-cat-empty h3 { color: #c41515; margin: 10px 0; }
.pp-cat-empty p { color: #666; max-width: 500px; margin: 10px auto 24px; line-height: 1.5; }

@media (max-width: 600px) {
    .pp-cat-header { flex-direction: column; align-items: flex-start; }
    .pp-cat-balance { width: 100%; box-sizing: border-box; }
    .pp-cat-title { font-size: 1.6em; }
    .pp-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ===== Item page (canje individual) ===== */
.pp-item {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 16px 60px;
}
.pp-item-back { margin-bottom: 14px; }
.pp-item-back-link {
    color: #777;
    font-size: 13px;
    text-decoration: none;
}
.pp-item-back-link:hover { color: #e51a1a; text-decoration: none; }

.pp-item-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

.pp-item-image-wrap {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 30px;
    text-align: center;
}
.pp-item-image {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.pp-item-info { padding-top: 6px; }
.pp-item-brand {
    font-size: 11px;
    text-transform: uppercase;
    color: #e51a1a;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.pp-item-name {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin: 0 0 12px;
    line-height: 1.2;
}
.pp-item-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 18px;
}

.pp-item-variants { margin: 16px 0; }
.pp-item-variant-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pp-item-variant-select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    background: #fff;
    cursor: pointer;
}
.pp-item-variant-select:focus { border-color: #e51a1a; outline: none; }
.pp-item-variant-select option:disabled { color: #ccc; }

.pp-item-pts-block {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 16px;
    text-align: center;
    margin: 16px 0;
}
.pp-item-pts-number {
    font-size: 38px;
    font-weight: 700;
    color: #222;
    line-height: 1;
}
.pp-item-pts-label {
    font-size: 11px;
    color: #888;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 6px;
}

.pp-item-balance {
    font-size: 13px;
    color: #555;
    margin: 12px 0;
}
.pp-item-balance strong { color: #222; font-weight: 700; }

.pp-item-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #eee;
    font-size: 12px;
}
.pp-item-link { color: #777; text-decoration: none; }
.pp-item-link:hover { color: #e51a1a; text-decoration: none; }

/* Bottom con tabs (estilo combos) */
.pp-item-bottom {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}
.pp-item-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
    overflow-x: auto;
}
.pp-item-tab {
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #888;
    background: none;
    border: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
}
.pp-item-tab:hover { color: #333; }
.pp-item-tab.pp-item-tab-active {
    color: #e51a1a;
    border-bottom-color: #e51a1a;
}
.pp-item-tab-content { display: none; }
.pp-item-tab-content.pp-item-tab-content-active { display: block; }
.pp-item-desc-html {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}
.pp-item-desc-html h2,
.pp-item-desc-html h3,
.pp-item-desc-html h4 { color: #222; margin-top: 16px; }
.pp-item-desc-html ul { padding-left: 20px; }
.pp-item-desc-html li { margin-bottom: 4px; }
.pp-item-desc-html img { max-width: 100%; height: auto; }
.pp-item-desc-empty {
    color: #888;
    font-style: italic;
    padding: 20px;
    text-align: center;
}

.pp-item-rules-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.pp-item-rule {
    background: #fafafa;
    border-radius: 6px;
    padding: 14px;
}
.pp-item-rule strong {
    display: block;
    color: #222;
    font-size: 13px;
    margin-bottom: 4px;
}
.pp-item-rule p {
    margin: 0;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .pp-item-rules-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .pp-item-grid { grid-template-columns: 1fr; gap: 20px; }
    .pp-item-image-wrap { padding: 20px; }
    .pp-item-name { font-size: 20px; }
    .pp-item-pts-number { font-size: 32px; }
}

/* ===== Catalog v1 (deprecated, queda por compatibilidad) ===== */
.pp-catalog-wrapper { padding: 20px 0; }
.pp-catalog-header { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.pp-catalog-balance { font-size: 1em; color: #444; }
.pp-catalog-balance strong { color: #e51a1a; font-size: 1.2em; }
.pp-link-secondary { margin-left: 10px; font-size: 0.9em; }
.pp-active-redemption { background: #fff8e1; border: 1px solid #ffe082; padding: 10px 14px; border-radius: 4px; margin-bottom: 16px; }
.pp-catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.pp-catalog-card { border: 1px solid #e0e0e0; border-radius: 6px; padding: 12px; background: #fff; transition: box-shadow 0.2s; }
.pp-catalog-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.pp-card-disabled { opacity: 0.6; }
.pp-card-img { width: 100%; height: auto; aspect-ratio: 1/1; object-fit: contain; margin-bottom: 8px; }
.pp-card-brand { font-size: 0.75em; text-transform: uppercase; color: #888; letter-spacing: 0.5px; }
.pp-card-title { font-size: 0.95em; margin: 6px 0; min-height: 2.5em; line-height: 1.3; }
.pp-card-pvp { font-size: 0.85em; color: #666; margin-bottom: 4px; }
.pp-card-points { font-size: 1.4em; font-weight: 700; color: #e51a1a; margin: 8px 0; }
.pp-card-points small { font-size: 0.55em; color: #666; }
.pp-btn-primary {
    display: inline-block;
    padding: 12px 18px;
    background: #e51a1a;
    color: #fff;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}
.pp-btn-primary:hover { background: #c41515; color: #fff; text-decoration: none; }
.pp-btn-primary[disabled] { background: #ccc; cursor: not-allowed; }
.pp-btn-secondary {
    display: inline-block;
    padding: 10px 16px;
    background: #fff;
    color: #555;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}

/* Cart footer */
.pp-cart-footer { margin: 14px 0; padding: 14px; border-radius: 4px; border: 1px solid #e0e0e0; background: #fafafa; }
.pp-cart-redeem-offer, .pp-cart-redeem-active { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.pp-cart-balance strong { color: #e51a1a; }
.pp-cart-redeem-active { background: #e8f5e9; border-radius: 4px; padding: 6px 10px; }

/* Order confirmation */
.pp-order-confirmation { background: linear-gradient(135deg, #fef0f0 0%, #fce4e4 100%); border-left: 4px solid #e51a1a; padding: 16px 20px; border-radius: 4px; margin: 16px 0; }
.pp-order-confirmation h3 { color: #c41515; margin-top: 0; }
.pp-conf-earned, .pp-conf-redeemed, .pp-conf-balance { margin: 6px 0; }

/* ===== Bloque producto: "Gana hasta X pts" / "X pts para canjear" ===== */
.pp-product-pts-block {
    margin: 12px 0 14px;
    padding: 0;
}
.pp-product-pts-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(229, 26, 26, 0.07);
    border: 1px solid rgba(229, 26, 26, 0.15);
    border-left: 3px solid #e51a1a;
    border-radius: 4px;
    color: #c41515;
    text-decoration: none;
    transition: background 0.2s;
}
.pp-product-pts-link:hover {
    background: rgba(229, 26, 26, 0.12);
    text-decoration: none;
    color: #c41515;
}
.pp-product-pts-icon {
    width: 20px !important;
    height: 20px !important;
    line-height: 1;
    color: #e51a1a;
    vertical-align: middle;
    flex-shrink: 0;
}
.pp-product-pts-text { flex: 1; font-size: 13px; line-height: 1.4; }
.pp-product-pts-text strong { color: #c41515; font-weight: 700; }
.pp-product-pts-bonus {
    display: block;
    font-size: 11px;
    color: #888;
    margin-top: 2px;
    font-weight: 500;
}

/* ===== Header nav widget (saldo) ===== */
.pp-nav-balance { display: inline-flex; align-items: center; margin: 0 8px; }
.pp-nav-balance-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #e51a1a 0%, #c41515 100%);
    color: #fff !important;
    border-radius: 16px;
    text-decoration: none !important;
    font-size: 0.85em;
    font-weight: 600;
    transition: all 0.2s ease;
}
.pp-nav-balance-link:hover { transform: translateY(-1px); box-shadow: 0 2px 6px rgba(0,0,0,0.2); color: #fff !important; }
.pp-nav-icon { font-size: 16px !important; line-height: 1; }
.pp-nav-pts { font-weight: 700; }
.pp-nav-label { opacity: 0.85; font-size: 0.85em; }

/* ===== Landing v2 (estilo combos) ===== */
.pp-landing-v2 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 16px 60px;
    font-family: inherit;
}

/* Header con titulo + icono central */
.pp-v2-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 8px;
    flex-wrap: nowrap;
}
.pp-v2-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin: 0;
    letter-spacing: 1px;
    line-height: 1;
}
.pp-v2-title-left { text-align: right; flex: 1; }
.pp-v2-title-right { text-align: left; flex: 1; }
.pp-v2-icon {
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
}
.pp-v2-icon svg { width: 100%; height: 100%; display: block; }

/* Banner cinta con saldo */
.pp-v2-ribbon-wrap {
    text-align: center;
    margin: 24px 0 16px;
}
.pp-v2-ribbon {
    display: inline-flex;
    align-items: stretch;
    max-width: 600px;
    width: 95%;
}
.pp-v2-ribbon-arrow {
    width: 40px;
    background: #e51a1a;
    position: relative;
    flex-shrink: 0;
}
.pp-v2-ribbon-arrow-left {
    clip-path: polygon(0 50%, 50% 0, 100% 0, 100% 100%, 50% 100%);
}
.pp-v2-ribbon-arrow-right {
    clip-path: polygon(0 0, 100% 0, 50% 50%, 100% 100%, 0 100%);
}
.pp-v2-ribbon-inner {
    flex: 1;
    background: #e51a1a;
    color: #fff;
    padding: 22px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pp-v2-ribbon-number {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
}
.pp-v2-ribbon-number-small {
    font-size: 22px;
    font-weight: 700;
}
.pp-v2-learn-link {
    display: table;
    margin: 16px auto 0;
    color: #e51a1a;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s;
}
.pp-v2-learn-link:hover { border-color: #e51a1a; color: #e51a1a; text-decoration: none; }

/* Mensaje vencimiento */
.pp-v2-expiry {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 12px 18px;
    text-align: center;
    color: #555;
    margin: 16px 0 24px;
    font-size: 13px;
}
.pp-v2-expiry strong { color: #222; }
.pp-v2-expiry a { color: #e51a1a; font-weight: 700; }

/* CTA SPEND POINTS */
.pp-v2-cta {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    margin: 24px 0;
}
.pp-v2-cta-text h2 {
    color: #222;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: 0.5px;
}
.pp-v2-cta-btn {
    display: inline-block;
    background: #e51a1a;
    color: #fff !important;
    padding: 14px 22px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    font-size: 13px;
    text-transform: uppercase;
    transition: background 0.2s;
}
.pp-v2-cta-btn:hover { background: #c41515; color: #fff !important; }
.pp-v2-cta-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.pp-v2-cta-prod {
    background: #fafafa;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    transition: transform 0.2s;
}
.pp-v2-cta-prod:hover { transform: translateY(-2px); }
.pp-v2-cta-prod img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 6px;
}
.pp-v2-cta-prod-pts {
    font-size: 1em;
    font-weight: 700;
    color: #e51a1a;
}
.pp-v2-cta-prod-pts small { font-size: 0.7em; color: #666; font-weight: 500; }
.pp-v2-cta-empty {
    background: #f9f9f9;
    border-radius: 6px;
    padding: 30px 20px;
    text-align: center;
    color: #888;
    border: 1px dashed #ddd;
}

/* Visual de conversion "$1 = 10 puntos" estilo M&S */
.pp-v2-conversion-section {
    margin-top: 60px;
    padding: 40px 20px;
    border-top: 1px solid #eee;
    text-align: center;
}
.pp-v2-conversion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap;
    margin: 20px 0;
}
.pp-v2-conv-side { text-align: center; flex: 0 0 auto; }
.pp-v2-conv-dollar-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #2e7d32;
    color: #fff;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
}
.pp-v2-dollar-sign { font-size: 22px; font-weight: 700; margin-right: 4px; opacity: 0.85; }
.pp-v2-dollar-num { font-size: 56px; font-weight: 700; line-height: 1; }
.pp-v2-conv-equals {
    font-size: 36px;
    font-weight: 700;
    color: #888;
    line-height: 1;
}
.pp-v2-conv-coins { width: 160px; height: 100px; margin: 0 auto; }
.pp-v2-conv-coins svg { width: 100%; height: 100%; display: block; }
.pp-v2-conv-pts-number {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-top: 6px;
    letter-spacing: 1px;
}
.pp-v2-conv-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
    margin-top: 6px;
    font-weight: 600;
}
.pp-v2-conversion-desc {
    font-size: 14px;
    color: #555;
    margin-top: 16px;
    line-height: 1.5;
}
.pp-v2-conversion-desc strong { color: #222; }

/* Formas de Ganar (4 cards con icono circular) */
.pp-v2-earn-section {
    margin-top: 30px;
    padding: 40px 20px 20px;
}
.pp-v2-earn-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.pp-v2-earn-item {
    text-align: center;
    padding: 20px 16px;
}
.pp-v2-earn-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e51a1a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.pp-v2-earn-circle-alt {
    background: #c41515;
}
.pp-v2-earn-circle span { font-size: 36px; line-height: 1; }
.pp-v2-earn-circle .material-icons { font-size: 36px; color: #fff; line-height: 1; }
.pp-v2-earn-item h3 {
    color: #222;
    font-size: 15px;
    margin: 8px 0 6px;
    font-weight: 700;
}
.pp-v2-earn-item p {
    color: #555;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}
.pp-v2-earn-item p strong { color: #222; }

/* Aprende mas (collapsible) */
.pp-v2-info {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}
.pp-v2-info-title {
    text-align: center;
    color: #222;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}
.pp-v2-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.pp-v2-info-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
}
.pp-v2-info-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #e51a1a;
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.3em;
    margin-bottom: 12px;
}
.pp-v2-info-card h3 { color: #c41515; margin: 8px 0; font-size: 1.1em; }
.pp-v2-info-card p { color: #555; font-size: 0.9em; line-height: 1.5; margin: 0; }
.pp-v2-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.pp-v2-action-btn {
    display: inline-block;
    background: #e51a1a;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none !important;
    font-weight: 700;
}
.pp-v2-action-btn:hover { background: #c41515; }
.pp-v2-action-btn-secondary {
    background: #fff !important;
    color: #e51a1a !important;
    border: 2px solid #e51a1a;
}
.pp-v2-action-btn-secondary:hover { background: #e51a1a !important; color: #fff !important; }

/* Responsive */
@media (max-width: 900px) {
    .pp-v2-earn-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
    .pp-v2-header { gap: 12px; }
    .pp-v2-title { font-size: 1.8em; letter-spacing: 0.5px; }
    .pp-v2-icon { width: 80px; height: 80px; }
    .pp-v2-ribbon-inner { padding: 20px; }
    .pp-v2-ribbon-number { font-size: 3em; }
    .pp-v2-cta { grid-template-columns: 1fr; padding: 20px; gap: 20px; }
    .pp-v2-cta-text h2 { font-size: 1.5em; text-align: center; }
    .pp-v2-cta-text { text-align: center; }
    .pp-v2-info-grid { grid-template-columns: 1fr; }
    .pp-v2-conversion { gap: 16px; }
    .pp-v2-conv-dollar-circle { width: 100px; height: 100px; }
    .pp-v2-dollar-num { font-size: 3em; }
    .pp-v2-conv-equals { font-size: 2.5em; }
    .pp-v2-conv-coins { width: 130px; height: 80px; }
    .pp-v2-conv-pts-number { font-size: 1.2em; }
}
@media (max-width: 500px) {
    .pp-v2-earn-grid { grid-template-columns: 1fr; }
}

/* ===== Landing v1 (deprecated; queda por compatibilidad) ===== */
.pp-landing { padding: 0; }
.pp-hero {
    background: linear-gradient(135deg, #e51a1a 0%, #c41515 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}
.pp-hero-inner { max-width: 800px; margin: 0 auto; }
.pp-hero h1 {
    font-size: 3.2em;
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px 0;
    letter-spacing: 2px;
}
.pp-hero-sub { font-size: 1.25em; opacity: 0.95; margin-bottom: 28px; }
.pp-hero-balance {
    background: rgba(0,0,0,0.18);
    border-radius: 6px;
    padding: 20px 30px;
    display: inline-block;
    margin-bottom: 24px;
}
.pp-hero-balance-label { display: block; font-size: 0.85em; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; margin-bottom: 4px; }
.pp-hero-balance-value { display: block; font-size: 3em; font-weight: 800; }
.pp-hero-balance-value small { font-size: 0.4em; opacity: 0.85; }
.pp-hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.pp-btn-lg { padding: 14px 28px; font-size: 1.05em; }

.pp-section { padding: 50px 20px; max-width: 1100px; margin: 0 auto; }
.pp-section-alt { background: #fafafa; max-width: none; }
.pp-section-cta { text-align: center; background: linear-gradient(135deg, #fef0f0 0%, #fce4e4 100%); max-width: none; padding: 60px 20px; }
.pp-section-cta h2 { font-size: 2em; margin-bottom: 16px; }
.pp-section-cta p { font-size: 1.15em; margin-bottom: 24px; }
.pp-section-title { text-align: center; font-size: 2.2em; font-weight: 700; color: #c41515; margin-bottom: 40px; }

.pp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 900px; margin: 0 auto; }
.pp-step { text-align: center; padding: 20px; }
.pp-step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #e51a1a; color: #fff;
    font-size: 1.8em; font-weight: 800;
    margin: 0 auto 16px auto;
}
.pp-step h3 { font-size: 1.3em; margin: 10px 0; color: #c41515; }

.pp-earn-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.pp-earn-card {
    background: #fff;
    border-radius: 6px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}
.pp-earn-card:hover { transform: translateY(-4px); box-shadow: 0 6px 16px rgba(0,0,0,0.1); }
.pp-earn-bonus { border: 2px dashed #e51a1a; background: linear-gradient(135deg, #fef8f8 0%, #fef0f0 100%); }
.pp-earn-icon { font-size: 2.5em; line-height: 1; margin-bottom: 8px; }
.pp-earn-pts { font-size: 1.8em; font-weight: 800; color: #e51a1a; margin: 8px 0; }
.pp-earn-pts small { font-size: 0.55em; color: #666; font-weight: 500; }
.pp-earn-label { font-weight: 700; margin-bottom: 8px; color: #333; }
.pp-earn-desc { font-size: 0.9em; color: #666; line-height: 1.4; }

.pp-redeem-info { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 900px; margin: 0 auto; }
.pp-redeem-steps { list-style: none; counter-reset: pp-counter; padding: 0; }
.pp-redeem-steps li { counter-increment: pp-counter; padding: 12px 0 12px 50px; position: relative; }
.pp-redeem-steps li::before {
    content: counter(pp-counter);
    position: absolute; left: 0; top: 8px;
    width: 36px; height: 36px;
    background: #e51a1a; color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
}
.pp-redeem-rules { background: #fff; padding: 20px; border-radius: 6px; box-shadow: 0 2px 6px rgba(0,0,0,0.06); }
.pp-redeem-rules h4 { color: #c41515; margin-top: 0; }
.pp-redeem-rules ul { padding-left: 20px; }
.pp-redeem-rules li { margin: 8px 0; line-height: 1.4; }

@media (max-width: 900px) {
    .pp-earn-grid { grid-template-columns: repeat(2, 1fr); }
    .pp-redeem-info { grid-template-columns: 1fr; }
    .pp-steps { grid-template-columns: 1fr; }
    .pp-hero h1 { font-size: 2.4em; }
    .pp-hero-balance-value { font-size: 2.2em; }
    .pp-section-title { font-size: 1.7em; }
}
@media (max-width: 500px) {
    .pp-earn-grid { grid-template-columns: 1fr; }
    .pp-hero { padding: 40px 16px; }
    .pp-hero h1 { font-size: 2em; letter-spacing: 1px; }
    .pp-nav-label { display: none; }
}

.pp-empty { padding: 30px; text-align: center; color: #888; }
