:root {
    --primary-color: #081A2E;
    --accent-color: #3A86FF;
    --light-bg: #F8F9FA;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    background-color: var(--light-bg);
    /* font-family: 'Montserrat', sans-serif; */
}

.main-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Montserrat', sans-serif;
}

.catalog-wrapper {
    display: flex;
    gap: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

/* Sidebar Styling */
.sidebar-filters {
    width: 320px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a2540 100%);
    padding: 30px 0;
    color: white;
    flex-shrink: 0;
}

.sidebar-header {
    padding: 0 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.sidebar-subtitle {
    font-size: 0.9rem;
    opacity: 0.7;
}

.filter-section {
    padding: 0 25px;
    margin-bottom: 25px;
}

.filter-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.filter-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 12px;
    color: white;
    font-size: 0.9rem;
    transition: var(--transition);
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
}

.filter-select option {
    background: var(--primary-color);
    color: white;
}

/* .search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 12px;
    color: white;
    font-size: 0.9rem;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
} */

.btn-search {
    width: 100%;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 500;
    transition: var(--transition);
    margin-top: 10px;
    cursor: pointer;
}

.btn-search:hover {
    background: #2a75f0;
    transform: translateY(-2px);
}

.btn-clear {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 8px;
    padding: 10px;
    font-weight: 500;
    transition: var(--transition);
    margin-top: 8px;
    cursor: pointer;
}

.btn-clear:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Content Area Styling */
.content-area {
    flex: 1;
    padding: 40px;
}

.page-header {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.page-subtitle {
    color: #6c757d;
    font-size: 1rem;
}

.results-count {
    background:#c8cfd7;
    color:#000000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* View Controls */
.view-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    margin-top:-66px;
}

.view-btn {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    color: #6c757d;
}

.view-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.view-btn:hover {
    background: #f8f9fa;
}

.view-btn.active:hover {
    background: var(--primary-color);
}

/* 🔧 Corrige o bug de visualização duplicada */
.cards-grid,
.cards-list {
    display: none; /* ambos ocultos inicialmente */
}

.cards-grid.active {
    display: grid !important; /* apenas grid visível quando ativo */
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.cards-list.active {
    display: flex !important; /* apenas list visível quando ativo */
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.card-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.cards-list .card-item {
    flex-direction: row;
    height: 150px;
}

.cards-list .card-image-container {
    width: 120px;
    height: 150px;
    flex-shrink: 0;
}

.cards-list .card-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cards-list .card-actions {
    width: 200px;
    flex-shrink: 0;
    border-top: none;
    border-left: 1px solid #eaeaea;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.cards-list .card-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.cards-list .card-description {
    margin-bottom: 0;
}

.card-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    text-decoration: none;
    color: inherit;
}

.cards-list .card-item:hover {
    transform: translateY(-3px);
}

.card-image-container {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-image {
    max-height: 90%;
    max-width: 90%;
    object-fit: contain;
    transition: var(--transition);
}

.card-item:hover .card-image {
    transform: scale(1.05);
}

/* Card Badge Styles */
.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.60rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-mvp {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
}

.badge-foil {
    background: linear-gradient(135deg, #ff0000 0%, #700807 100%);
    color: #ffffff;
}

.badge-normal {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.badge-rare {
    background: linear-gradient(135deg, #9C27B0 0%, #673AB7 100%);
}

.badge-special {
    background: linear-gradient(135deg, #2196F3 0%, #03A9F4 100%);
}

.badge-default {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

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

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    /* overflow: hidden; */
}

.card-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0px;
    flex-grow: 1;
}

.card-actions {
    display: none; /* IMPORTANTE */
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #eaeaea;
}

.btn-view {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-view:hover {
    background: #0a2540;
    color: white;
}

.btn-wishlist {
    background: transparent;
    border: 1px solid #e74c3c;
    color: #e74c3c;
    padding: 7px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.btn-wishlist:hover {
    background: #e74c3c;
    color: white;
}

.btn-wishlist.added {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.btn-icon {
    margin-right: 6px;
    font-size: 1rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
    grid-column: 1 / -1;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #dee2e6;
}

.empty-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #6c757d;
}

.empty-text {
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.btn-explore {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-explore:hover {
    background: #0a2540;
    color: white;
}

/* Items Per Page */
.items-per-page {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.items-label {
    font-weight: 500;
    color: #6c757d;
    white-space: nowrap;
}

.items-select {
    border: 1px solid #e0e0e0;
    padding: 8px 12px;
    border-radius: 6px;
    background: white;
    color: #495057;
    cursor: pointer;
    transition: var(--transition);
    min-width: 100px;
}

.items-select:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
}

.page-item:first-child .page-link {
    border-radius: 100px;
}

.page-item:last-child .page-link {
    border-radius: 100px;
}

.page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    color: #081A2E;
    font-weight: 500;
    background-color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.page-item .page-link:hover {
    background-color: #f3f3f3;
    color: #081A2E;
    border-color: #cfcfcf;
}

.page-item.active .page-link {
    background-color: #081A2E !important;
    border-color: #081A2E !important;
    color: #fff !important;
    font-weight: 600;
}

.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-link:focus {
    box-shadow: none;
    outline: none;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .catalog-wrapper {
        flex-direction: column;
    }
    
    .sidebar-filters {
        width: 100%;
        padding: 20px;
    }
    
    .filter-section {
        padding: 0 15px;
    }

    .cards-list .card-item {
        flex-direction: column;
        height: auto;
    }

    .cards-list .card-image-container {
        width: 100%;
        height: 200px;
    }

    .cards-list .card-actions {
        width: 100%;
        border-left: none;
        border-top: 1px solid #eaeaea;
        flex-direction: row;
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .results-count {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .content-area {
        padding: 25px;
    }
    
    .cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .card-actions {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .btn-view, .btn-wishlist {
        justify-content: center;
    }

    .view-controls {
        justify-content: center;
        margin-top:0;
    }

    .items-per-page {
        justify-content: center;
    }
}

/* =========================================================
   PROMO PAGE PREMIUM OVERRIDES
   Escopado em .promo-page para não afetar outras páginas
========================================================= */
.promo-page {
    --promo-bg: #ffffff;
    --promo-surface: #ffffff;
    --promo-surface-2: #f7f9fc;
    --promo-surface-3: #eef3f8;
    --promo-sidebar: #071827;
    --promo-sidebar-2: #0b2237;
    --promo-text: #061728;
    --promo-muted: #687385;
    --promo-border: #e5ebf2;
    --promo-border-strong: #d8e1ec;
    --promo-accent: #061728;
    --promo-blue: #3A86FF;
    --promo-danger: #dc3545;
    --promo-success: #11884d;
    --promo-shadow: 0 24px 70px rgba(8, 26, 46, .10);
    --promo-card-shadow: 0 12px 34px rgba(8, 26, 46, .075);
    --promo-card-shadow-hover: 0 22px 58px rgba(8, 26, 46, .15);

    max-width: 1520px;
    margin: 34px auto 72px;
    padding: 0 22px;
    font-family: 'Montserrat', sans-serif;
}

.promo-page .catalog-wrapper {
    display: flex;
    gap: 0 !important;
    align-items: stretch;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid var(--promo-border);
    box-shadow: var(--promo-shadow);
    background: var(--promo-bg);
}

/* ===== FILTRO DESKTOP ===== */
.promo-page .sidebar-filters {
    width: 300px !important;
    flex: 0 0 300px;
    padding: 0 !important;
    background: linear-gradient(180deg, var(--promo-sidebar), var(--promo-sidebar-2));
    color: #fff;
    border-right: 1px solid rgba(255,255,255,.08);
    position: relative;
}

.promo-page .sidebar-header {
    position: relative;
    padding: 30px 24px 22px;
    margin: 0 0 22px;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.promo-page .sidebar-title {
    margin: 0 0 8px;
    color: #fff;
    font-size: 1.32rem;
    line-height: 1.1;
    font-weight: 850;
    letter-spacing: -.025em;
}

.promo-page .sidebar-subtitle {
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: .86rem;
    line-height: 1.35;
}

.promo-page .filter-section {
    padding: 0 24px !important;
    margin-bottom: 24px;
}

.promo-page .filter-label {
    display: block;
    margin-bottom: 9px;
    color: rgba(255,255,255,.86);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .015em;
}

.promo-page .filter-input,
.promo-page .search-input,
.promo-page .price-mask,
.promo-page select.filter-select {
    width: 100%;
    min-height: 43px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.08) !important;
    color: #fff !important;
    padding: 10px 13px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.promo-page .filter-input::placeholder,
.promo-page .search-input::placeholder,
.promo-page .price-mask::placeholder {
    color: rgba(255,255,255,.52);
}

.promo-page .filter-input:focus,
.promo-page .search-input:focus,
.promo-page .price-mask:focus,
.promo-page select.filter-select:focus {
    outline: none;
    border-color: rgba(58,134,255,.78);
    background: rgba(255,255,255,.12) !important;
    box-shadow: 0 0 0 4px rgba(58,134,255,.16);
}

.promo-page select.filter-select option {
    background: #0b2237;
    color: #fff;
}

.promo-page .price-range {
    border-radius: 16px;
    padding: 14px 12px 12px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
}

.promo-page .slider-container {
    padding: 9px 4px 6px;
}

.promo-page .ui-slider {
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.20);
}

.promo-page .ui-slider .ui-slider-range {
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, #3A86FF, #7CB7FF);
}

.promo-page .ui-slider .ui-slider-handle {
    width: 18px;
    height: 18px;
    top: -7px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: #3A86FF;
    box-shadow: 0 8px 16px rgba(0,0,0,.26);
    cursor: pointer;
}

.promo-page .price-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.promo-page .btn-search {
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(135deg, #3A86FF, #2d6fd8);
    color: #fff;
    font-weight: 850;
    letter-spacing: .01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    box-shadow: 0 14px 30px rgba(58,134,255,.28);
}

.promo-page .btn-search:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 18px 38px rgba(58,134,255,.35);
}

.promo-page .filter-overlay,
.promo-page .mobile-filter-toggle,
.promo-page .close-filter-mobile {
    display: none !important;
}

/* ===== TOPO / CONTROLES ===== */
.promo-page .content-area {
    flex: 1;
    min-width: 0;
    padding: 34px;
}

.promo-page .page-header {
    margin-bottom: 22px;
    gap: 18px;
}

.promo-page .page-title {
    color: var(--promo-text);
    letter-spacing: -0.045em;
    font-size: clamp(1.85rem, 2.4vw, 2.75rem);
    line-height: 1.05;
    font-weight: 900;
}

.promo-page .page-subtitle {
    margin: 8px 0 0;
    color: var(--promo-muted);
}

.promo-page .results-count {
    border-radius: 999px;
    padding: 9px 16px;
    font-weight: 800;
    border: 1px solid var(--promo-border);
    background: var(--promo-surface-2);
    color: var(--promo-text);
    white-space: nowrap;
}

.promo-page .controls-container {
    display: flex;
    justify-content: flex-end;
    margin-top: -12px;
    margin-bottom: 22px;
}

.promo-page .view-controls {
    margin: 0;
    gap: 8px;
    padding: 5px;
    border: 1px solid var(--promo-border);
    border-radius: 999px;
    background: var(--promo-surface-2);
}

.promo-page .view-btn {
    border-radius: 999px;
    border: 0;
    padding: 9px 14px;
    font-size: .86rem;
    font-weight: 800;
    box-shadow: none;
    color: var(--promo-muted);
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.promo-page .view-btn.active {
    background: var(--promo-accent);
    color: #fff;
}

/* ===== GRID/LIST ===== */
.promo-page #grid-view,
.promo-page #list-view {
    display: none !important;
}

body.grid-mode .promo-page #grid-view {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
    margin-bottom: 42px;
}

body.list-mode .promo-page #list-view {
    display: flex !important;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 42px;
}

.promo-page .card-item {
    isolation: isolate;
    min-width: 0;
    height: 100%;
    border-radius: 22px;
    border: 1px solid var(--promo-border);
    background: var(--promo-surface);
    box-shadow: var(--promo-card-shadow);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transform: translateY(0);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.promo-page .card-item:hover {
    transform: translateY(-6px);
    border-color: rgba(58,134,255,.42);
    box-shadow: var(--promo-card-shadow-hover);
}

.promo-page .card-image-container {
    height: 214px;
    background: linear-gradient(180deg, rgba(248,250,252,.94), rgba(236,241,247,.76));
    border-bottom: 1px solid var(--promo-border);
}

.promo-page .card-image {
    max-width: 86%;
    max-height: 88%;
    object-fit: contain;
    filter: drop-shadow(0 14px 22px rgba(8, 26, 46, .16));
}

.promo-page .card-badge {
    top: 12px;
    right: 12px;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: .62rem;
    letter-spacing: .08em;
    font-weight: 850;
    box-shadow: 0 8px 20px rgba(0,0,0,.14);
}

.promo-page .card-content {
    padding: 18px;
    min-height: 194px;
    display: flex;
    flex-direction: column;
}

.promo-page .card-title {
    color: var(--promo-text);
    font-size: 1rem;
    font-weight: 850;
    letter-spacing: -0.025em;
    line-height: 1.25;
    min-height: 50px;
    height: auto;
    margin: 0 0 12px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.promo-page .card-description {
    margin: 0 0 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    color: var(--promo-muted);
    font-size: .78rem;
    line-height: 1.2;
    flex-grow: 0;
}

.promo-page .promo-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    padding: 6px 9px;
    border-radius: 999px;
    border: 1px solid var(--promo-border);
    background: var(--promo-surface-2);
    color: var(--promo-muted);
    font-weight: 800;
    white-space: nowrap;
}

.promo-page .promo-element-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 999px;
    display: inline-block;
    box-shadow: 0 0 0 2px rgba(255,255,255,.55), 0 3px 8px rgba(8,26,46,.16);
}

.promo-page .price-container {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--promo-border);
    min-height: auto;
}

.promo-price-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.promo-price-box .price-old-row,
.promo-price-box .price-new-row,
.promo-price-box .price-single-row {
    display: flex;
    align-items: baseline;
    gap: 7px;
    min-width: 0;
}

.promo-price-box .price-old-row {
    justify-content: space-between;
    align-items: center;
}

.promo-price-box .price-new-row,
.promo-price-box .price-single-row {
    justify-content: flex-start;
}

.promo-price-box .price-label {
    flex: 0 0 auto;
    font-size: .68rem;
    line-height: 1;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 850;
    color: var(--promo-muted);
}

.promo-page .original-price {
    margin: 0;
    color: var(--promo-muted);
    font-size: .82rem;
    font-weight: 750;
    text-decoration: line-through;
    opacity: .86;
}

.promo-page .current-price,
.promo-page .price-with-discount {
    margin: 0;
    color: var(--promo-text);
    font-size: clamp(1.24rem, 1.5vw, 1.58rem);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.045em;
    white-space: nowrap;
}

.promo-page .price-with-discount {
    color: var(--promo-success);
}

.promo-page .discount-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 5px 8px;
    min-width: 42px;
    background: var(--promo-danger);
    color: #fff;
    font-size: .68rem;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .03em;
    box-shadow: 0 8px 18px rgba(220, 53, 69, .20);
}

/* Lista */
.promo-page .cards-list .card-item {
    min-height: 142px;
    height: auto;
    flex-direction: row;
    align-items: stretch;
    padding: 0;
    gap: 0;
    margin-bottom: 0;
}

.promo-page .cards-list .card-image-container {
    width: 128px;
    height: auto;
    min-height: 142px;
    border-bottom: 0;
    border-right: 1px solid var(--promo-border);
}

.promo-page .cards-list .card-content {
    min-height: auto;
    padding: 18px 20px;
    justify-content: center;
}

.promo-page .cards-list .card-title {
    min-height: auto;
    margin-bottom: 10px;
    font-size: 1.04rem;
}

.promo-page .cards-list .card-price-side {
    min-width: 190px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-left: 1px solid var(--promo-border);
    background: var(--promo-surface-2);
}

.promo-page .cards-list .promo-price-box {
    align-items: flex-end;
    text-align: right;
}

.promo-page .cards-list .price-old-row,
.promo-page .cards-list .price-new-row,
.promo-page .cards-list .price-single-row {
    justify-content: flex-end;
}

/* Banner */
.promo-page .promo-banner {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    padding: 28px;
    border-radius: 24px;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    gap: 26px;
    background: #081A2E;
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 20px 54px rgba(8,26,46,.16);
}

.promo-page .promo-banner img {
    position: relative;
    z-index: 1;
    width: 290px;
    max-width: 34%;
    height: 150px;
    max-height: 150px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 16px 34px rgba(0,0,0,.24);
}

.promo-page .promo-banner h1 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.promo-page .promo-banner p,
.promo-page .promo-banner .discount-info {
    position: relative;
    z-index: 1;
}

.promo-page .promo-banner p {
    margin: 0 0 14px;
    color: rgba(255,255,255,.78);
}

.promo-page .discount-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 9px 14px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.16);
    font-size: .88rem;
    font-weight: 950;
    letter-spacing: .02em;
}

.promo-page .promo-inactive-warning {
    border-radius: 16px;
    border: 1px solid rgba(255, 193, 7, .35);
    background: rgba(255, 193, 7, .16);
    color: var(--promo-text);
    padding: 10px;
    margin: 10px;
    text-align: center;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1280px) {
    body.grid-mode .promo-page #grid-view {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .promo-page .content-area {
        padding: 28px;
    }
}

@media (max-width: 991px) {
    .promo-page {
        padding: 0 14px 92px;
        margin-top: 22px;
    }

    .promo-page .catalog-wrapper {
        display: block;
        border-radius: 22px;
        overflow: visible;
    }

    .promo-page .sidebar-filters {
        position: fixed !important;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(88vw, 360px) !important;
        max-width: 360px;
        height: 100vh;
        overflow-y: auto;
        z-index: 1065;
        transform: translateX(-105%);
        transition: transform .28s ease;
        box-shadow: 18px 0 48px rgba(0,0,0,.28);
        border-radius: 0 24px 24px 0;
        border-right: 1px solid rgba(255,255,255,.10);
        padding-bottom: 32px !important;
    }

    .promo-page .sidebar-filters.open {
        transform: translateX(0);
    }

    .promo-page .filter-overlay {
        display: none !important;
        position: fixed;
        inset: 0;
        background: rgba(6,23,40,.58);
        backdrop-filter: blur(4px);
        z-index: 1060;
    }

    .promo-page .filter-overlay.active {
        display: block !important;
    }

    .promo-page .mobile-filter-toggle {
        display: inline-flex !important;
        position: fixed;
        right: 18px;
        bottom: 20px;
        z-index: 1055;
        min-height: 50px;
        align-items: center;
        justify-content: center;
        gap: 9px;
        border: 0;
        border-radius: 999px;
        padding: 0 18px;
        background: #061728;
        color: #fff;
        font-weight: 850;
        box-shadow: 0 18px 40px rgba(6,23,40,.30);
    }

    .promo-page .close-filter-mobile {
        display: inline-flex !important;
        position: absolute;
        top: 22px;
        right: 18px;
        width: 36px;
        height: 36px;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 999px;
        background: rgba(255,255,255,.08);
        color: #fff;
        align-items: center;
        justify-content: center;
    }

    .promo-page .content-area {
        width: 100%;
        padding: 22px;
    }

    .promo-page .controls-container {
        justify-content: flex-start;
        margin-top: 0;
    }

    body.grid-mode .promo-page #grid-view {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .promo-page .promo-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .promo-page .promo-banner img {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 680px) {
    .promo-page .content-area {
        padding: 18px;
    }

    .promo-page .page-header {
        align-items: flex-start;
    }

    .promo-page .results-count {
        white-space: normal;
    }

    body.grid-mode .promo-page #grid-view {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .promo-page .card-image-container {
        height: 164px;
    }

    .promo-page .card-content {
        padding: 14px;
        min-height: 178px;
    }

    .promo-page .card-title {
        font-size: .9rem;
        min-height: 45px;
    }

    .promo-page .promo-meta {
        padding: 5px 7px;
        font-size: .68rem;
    }

    .promo-page .current-price,
    .promo-page .price-with-discount {
        font-size: 1.14rem;
    }

    .promo-page .discount-badge {
        min-width: 38px;
        padding: 5px 7px;
        font-size: .62rem;
    }

    .promo-page .cards-list .card-item {
        flex-direction: column;
    }

    .promo-page .cards-list .card-image-container {
        width: 100%;
        min-height: 180px;
        border-right: 0;
        border-bottom: 1px solid var(--promo-border);
    }

    .promo-page .cards-list .card-price-side {
        min-width: 0;
        align-items: flex-start;
        border-left: 0;
        border-top: 1px solid var(--promo-border);
    }

    .promo-page .cards-list .promo-price-box {
        align-items: flex-start;
        text-align: left;
    }

    .promo-page .cards-list .price-old-row,
    .promo-page .cards-list .price-new-row,
    .promo-page .cards-list .price-single-row {
        justify-content: flex-start;
    }
}

/* ===== Correções finas solicitadas - Promo ===== */
.promo-page .promo-list-description {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--promo-muted);
    font-size: .82rem;
    line-height: 1.35;
    font-weight: 700;
}

.promo-page .promo-list-id,
.promo-page .promo-list-element {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
}

.promo-page .promo-list-separator {
    color: var(--promo-muted);
    opacity: .55;
}

.promo-page .promo-meta-element:empty,
.promo-page .promo-list-element:empty {
    display: none !important;
}

.promo-page .promo-element-dot {
    box-shadow: none !important;
}

.promo-page .btn-search,
.promo-page .btn-search:hover,
.promo-page .view-btn,
.promo-page .view-btn:hover,
.promo-page .view-btn.active,
.promo-page .mobile-filter-toggle,
.promo-page .close-filter-mobile,
.promo-page .btn-view,
.promo-page .btn-view:hover,
.promo-page .btn-wishlist,
.promo-page .btn-wishlist:hover,
.promo-page .btn-explore,
.promo-page .btn-explore:hover,
.promo-page .pagination .page-link,
.promo-page .pagination .page-link:hover,
.promo-page .card-badge,
.promo-page .discount-badge {
    box-shadow: none !important;
}

.promo-page .card-badge,
.promo-page .discount-badge {
    filter: none !important;
}
