/* =============================================
   PCG CHECKLIST STYLES - All prefixed with pcg_cl_
   ============================================= */

.pcg_cl_container {
    min-height: 100vh;
    background: linear-gradient(to bottom right, #f9fafb, #ffffff, #f3f4f6);
    padding: 10px;
    padding-bottom: 30px;
}

.pcg_cl_content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5px;
}

@media (min-width: 640px) {
    .pcg_cl_container {
        padding: 25px;
        padding-bottom: 50px;
    }
    
    .pcg_cl_content {
        padding: 0 15px;
    }
}

.pcg_cl_header {
    text-align: center;
    margin-bottom: 20px;
}

.pcg_cl_title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.pcg_cl_subtitle {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Hero Banner - Light version (title bar) */
.pcg_cl_hero_banner {
    background: #e9eff3;
    border-radius: 12px 12px 0 0;
    padding: 12px 16px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(63, 111, 138, 0.12);
    border-bottom: none;
}

@media (min-width: 640px) {
    .pcg_cl_hero_banner {
        padding: 14px 24px;
    }
}

.pcg_cl_hero_left {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (min-width: 640px) {
    .pcg_cl_hero_left {
        gap: 12px;
    }
}

.pcg_cl_hero_icon {
    font-size: 20px;
    filter: drop-shadow(0 0 6px rgba(224, 168, 0, 0.5));
    animation: pcg_cl_trophy_pulse 2s ease-in-out infinite;
}

@media (min-width: 640px) {
    .pcg_cl_hero_icon {
        font-size: 24px;
    }
}

@keyframes pcg_cl_trophy_pulse {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(224, 168, 0, 0.4)); }
    50% { filter: drop-shadow(0 0 10px rgba(224, 168, 0, 0.7)); }
}

.pcg_cl_hero_title {
    color: #3f6f8a;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 640px) {
    .pcg_cl_hero_title {
        font-size: 20px;
    }
}

.pcg_cl_hero_right {
    color: #6b7280;
    font-size: 11px;
    display: none;
}

@media (min-width: 480px) {
    .pcg_cl_hero_right {
        display: block;
        font-size: 13px;
    }
}

/* Hero Banner Title — 20260227 */
.pcg_cl_hero_banner_title_20260227 {
    color: #3f6f8a;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
    width: 100%;
    text-align: left;
}
.pcg_cl_hero_dash_20260227 {
    color: #9cb8c9;
    font-weight: 400;
    margin: 0 2px;
}
@media (min-width: 640px) {
    .pcg_cl_hero_banner_title_20260227 {
        font-size: 18px;
        text-align: left;
    }
}

/* Stats Card - Dark PCG Blue Theme (the hero section) */
.pcg_cl_stats_card {
    background: linear-gradient(135deg, #3f6f8a 0%, #2d5a73 100%);
    border: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 15px rgba(63, 111, 138, 0.3);
    padding: 20px 15px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .pcg_cl_stats_card {
        flex-direction: row;
        justify-content: center;
        padding: 25px 30px;
        gap: 40px;
    }
}

/* Gold accent line between banner and stats */
.pcg_cl_stats_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4a853, #f0c674, #d4a853);
}

/* Progress Section */
.pcg_cl_progress_wrapper {
    display: flex;
    justify-content: center;
}

.pcg_cl_progress_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

@media (min-width: 640px) {
    .pcg_cl_progress_card {
        flex-direction: row;
        gap: 30px;
        text-align: left;
    }
}

.pcg_cl_progress_ring {
    position: relative;
    width: 100px;
    height: 100px;
}

@media (min-width: 640px) {
    .pcg_cl_progress_ring {
        width: 110px;
        height: 110px;
    }
}

.pcg_cl_progress_ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.pcg_cl_progress_ring_bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 10;
}

.pcg_cl_progress_ring_fill {
    fill: none;
    stroke: url(#pcg_cl_gradient);
    stroke-width: 10;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.7s ease-out;
}

.pcg_cl_progress_text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pcg_cl_progress_percent {
    font-size: 1.75rem;
    font-weight: 700;
    color: #E0A800; /* Gold - the ONE accent */
}

.pcg_cl_progress_count {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.pcg_cl_progress_info {
    text-align: center;
}

@media (min-width: 640px) {
    .pcg_cl_progress_info {
        text-align: left;
    }
}

.pcg_cl_progress_number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

@media (min-width: 640px) {
    .pcg_cl_progress_number {
        font-size: 2.5rem;
    }
}

.pcg_cl_progress_number span {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.pcg_cl_progress_label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
}

.pcg_cl_wishlist_badge {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #ffffff;
    background: rgba(239, 68, 68, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
}

.pcg_cl_progress_motivation {
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    max-width: 200px;
    line-height: 1.4;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 3px solid #E0A800; /* Gold accent */
}

.pcg_cl_gold {
    color: #E0A800;
    font-weight: 600;
    font-style: normal;
}

/* Quick Stats Row */
.pcg_cl_quick_stats {
    display: flex;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    justify-content: center;
}

@media (min-width: 640px) {
    .pcg_cl_quick_stats {
        gap: 20px;
        margin-top: 15px;
        width: auto;
    }
}

.pcg_cl_quick_stat {
    text-align: center;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    flex: 1;
    max-width: 100px;
}

@media (min-width: 640px) {
    .pcg_cl_quick_stat {
        padding: 8px 15px;
        flex: none;
        max-width: none;
    }
}

.pcg_cl_quick_stat_value {
    font-size: 1rem;
    font-weight: 700;
}

@media (min-width: 640px) {
    .pcg_cl_quick_stat_value {
        font-size: 1.25rem;
    }
}

.pcg_cl_quick_stat_value.owned { color: #4ade80; }
.pcg_cl_quick_stat_value.missing { color: #ffffff; }
.pcg_cl_quick_stat_value.wishlist { color: #fca5a5; }

.pcg_cl_quick_stat_label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Reassurance line - hidden */
.pcg_cl_reassurance {
    display: none;
}

/* Filter Pills - Match catalog tabs */
/* Filter Pills - Match catalog tabs */
.pcg_cl_filters {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
}

@media (min-width: 640px) {
    .pcg_cl_filters {
        justify-content: center;
        margin-bottom: 0;
    }
}

.pcg_cl_filters::-webkit-scrollbar {
    display: none;
}

.pcg_cl_filter_btn {
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #4b5563;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    min-height: 48px;
    justify-content: center;
}

@media (min-width: 640px) {
    .pcg_cl_filter_btn {
        padding: 10px 20px;
        border-radius: 25px;
        font-size: 14px;
    }
}

.pcg_cl_filter_btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.pcg_cl_filter_btn.active {
    background: #3f6f8a;
    color: white;
    border-color: #3f6f8a;
    box-shadow: 0 4px 12px rgba(63, 111, 138, 0.35);
}

.pcg_cl_filter_subtext {
    font-size: 10px;
    margin-top: 2px;
    opacity: 0.7;
}
/* Filter + Search Combined Layout */
.pcg_cl_filter_search_wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 20px;
}

@media (min-width: 640px) {
    .pcg_cl_filter_search_wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
}
/* FOMO Banner */
.pcg_cl_fomo_banner {
    background: linear-gradient(to right, #fef2f2, #fff7ed);
    border: 1px solid #fecaca;
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: pcg_cl_pulse 2s infinite;
}

@keyframes pcg_cl_pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.pcg_cl_fomo_icon {
    font-size: 1.5rem;
}

.pcg_cl_fomo_title {
    font-weight: 600;
    color: #1f2937;
}

.pcg_cl_fomo_text {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Card Grid - 2 columns mobile, 4 desktop */
.pcg_cl_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
}

@media (min-width: 640px) {
    .pcg_cl_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (min-width: 900px) {
    .pcg_cl_grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* Card - force equal size */
.pcg_cl_card {
    perspective: 1000px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 100%;
    min-width: 0; /* prevents grid blowout */
}

.pcg_cl_card_inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.pcg_cl_card_inner.flipped {
    transform: rotateY(180deg);
    z-index: 20;
}

/* Layer 1 & 2: Elevation + Gold Focus Ring */
.pcg_cl_card_inner.flipped .pcg_cl_card_back {
    box-shadow:
        0 0 0 2px rgba(242, 183, 5, 0.25),
        0 18px 40px rgba(0, 0, 0, 0.18),
        0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Layer 3: Background Dimming - tunnel vision */
.pcg_cl_grid.has-flipped .pcg_cl_card:not(.is-flipped) {
    opacity: 0.85;
    filter: saturate(0.9);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.pcg_cl_card.is-flipped {
    z-index: 20;
}

/* Layer 4 Bonus: Card "Breath" - alive feeling */
@keyframes pcg_cl_breath {
    0%, 100% { box-shadow: 0 0 0 2px rgba(242, 183, 5, 0.25), 0 18px 40px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.12); }
    50% { box-shadow: 0 0 0 3px rgba(242, 183, 5, 0.30), 0 20px 45px rgba(0, 0, 0, 0.20), 0 4px 12px rgba(0, 0, 0, 0.12); }
}

.pcg_cl_card.is-flipped .pcg_cl_card_back {
    animation: pcg_cl_breath 6s ease-in-out infinite;
}

.pcg_cl_card_inner.owned .pcg_cl_card_front {
    border-color: #3f6f8a;
    box-shadow: 0 0 0 2px rgba(63, 111, 138, 0.3);
}

/* Card Front - Match catalog exactly */
.pcg_cl_card_front {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    backface-visibility: hidden;
    background: #fbfbf9;
    border: 1px solid #d9d9d9;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.pcg_cl_card_front:hover {
    border-color: #b24131;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Card Header - Colored bar matching category */
.pcg_cl_card_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: #384e8a; /* Default, overridden by inline style */
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    min-height: 38px;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .pcg_cl_card_header {
        padding: 10px 12px;
        min-height: 44px;
    }
}

.pcg_cl_card_header_name {
    color: #ffffff;
    font-weight: 600;
    font-size: 11px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 6px;
    min-width: 0;
}

@media (min-width: 640px) {
    .pcg_cl_card_header_name {
        font-size: 12px;
        margin-right: 8px;
    }
}

.pcg_cl_card_header_mattel {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .pcg_cl_card_header_mattel {
        padding: 3px 8px;
        border-radius: 10px;
        font-size: 10px;
    }
}

/* Card Image - Fixed square */
.pcg_cl_card_image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: #f5f5f3;
    background-image: url('/assets/images/main_frame.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 260px auto;
    overflow: hidden;
}

.pcg_cl_card_image.missing {
    filter: grayscale(100%);
}


.pcg_cl_card_image_inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.pcg_cl_card_image_inner img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
}

.pcg_cl_card_image_placeholder {
    font-size: 3rem;
    color: #ccc;
}

/* Badges on image */
.pcg_cl_owned_badge {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 2;
}

.pcg_cl_owned_badge span {
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.pcg_cl_missing_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.pcg_cl_missing_overlay span {
    font-size: 3rem;
    opacity: 0.3;
    color: #666;
}

.pcg_cl_hot_badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    background: #ef4444;
    color: white;
    font-size: 9px;
    font-weight: 700;
    border-radius: 10px;
    z-index: 2;
}

.pcg_cl_wishlist_btn {
    position: absolute;
    bottom: 95px;
    right: 8px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: all 0.2s;
}

.pcg_cl_wishlist_btn.active {
    background: #ef4444;
}

.pcg_cl_wishlist_btn span {
    font-size: 18px;
}

.pcg_cl_wishlist_btn.active span {
    filter: brightness(10);
}

/* Card Info - Match catalog */
.pcg_cl_card_info {
    padding: 8px 10px;
    background: #fbfbf9;
    background-image: url('/assets/images/cards_background.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 300px auto;
    border-top: 1px solid #e8e8e6;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 640px) {
    .pcg_cl_card_info {
        padding: 12px;
    }
}

.pcg_cl_card_info_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    margin-bottom: 4px;
}

@media (min-width: 640px) {
    .pcg_cl_card_info_row {
        font-size: 11px;
    }
}

.pcg_cl_card_info_row:last-child {
    margin-bottom: 0;
}

.pcg_cl_card_info_label {
    color: #666;
    font-weight: 500;
}

.pcg_cl_card_info_value {
    color: #2a2a2a;
    font-weight: 600;
}

.pcg_cl_card_series {
    font-size: 11px;
    color: #333;
    margin-bottom: 6px;
}

.pcg_cl_card_microcopy {
    font-size: 10px;
    color: #555;
    font-style: italic;
    margin-top: auto;
    padding-top: 6px;
}

.pcg_cl_rarity_badge {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
    display: inline-block;
}

.pcg_cl_rarity_common { background: #6b7280; }
.pcg_cl_rarity_uncommon { background: #22c55e; }
.pcg_cl_rarity_rare { background: #3b82f6; }
.pcg_cl_rarity_ultra { background: #8b5cf6; }
.pcg_cl_rarity_chase { background: #f59e0b; }

.pcg_cl_ownership {
    font-size: 10px;
    color: #555;
}

/* Card Back - PCG Blue Theme */
.pcg_cl_card_back {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    backface-visibility: hidden;
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #3f6f8a 0%, #2d5a73 100%);
}

.pcg_cl_card_back_content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    color: white;
}

.pcg_cl_card_back_image {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pcg_cl_card_back_image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
}

.pcg_cl_card_back_image_placeholder {
    font-size: 2rem;
    opacity: 0.7;
}

.pcg_cl_card_back_name {
    font-weight: 700;
    text-align: center;
    margin-bottom: 4px;
    font-size: 13px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pcg_cl_card_back_microcopy {
    font-size: 10px;
    opacity: 0.7;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.3;
    padding: 0 5px;
}

.pcg_cl_card_back_feedback {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 500;
    border-radius: 8px;
    text-align: center;
    animation: pcg_cl_pulse 1s infinite;
}

.pcg_cl_gotit_btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f0 100%);
    color: #3f6f8a;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 14px;
    animation: pcg_cl_btn_pulse 0.3s ease-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pcg_cl_gotit_btn:hover {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

@keyframes pcg_cl_btn_pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); opacity: 1; }
}

.pcg_cl_gotit_btn:active {
    transform: scale(0.95);
}

.pcg_cl_gotit_subtext {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: rgba(63, 111, 138, 0.6);
    margin-top: 2px;
}

/* Wish For button (smaller, subtle) */
.pcg_cl_wish_btn {
    width: 100%;
    padding: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    font-size: 12px;
    margin-bottom: 6px;
}

.pcg_cl_wish_btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.pcg_cl_wish_btn:active {
    transform: scale(0.95);
}

/* Hunt This button (light background for dark icon) */
.pcg_cl_hunt_btn_light {
    width: 100%;
    padding: 10px;
    background: #f0f0f0;
    color: #2c3e50;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pcg_cl_hunt_btn_light:hover {
    background: #e0e0e0;
}

.pcg_cl_hunt_btn_light:active {
    transform: scale(0.95);
}

.pcg_cl_hunt_btn_icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Active state after added to hunt */
.pcg_cl_hunt_btn_active {
    background: #d4edda;
    color: #155724;
    cursor: default;
}

.pcg_cl_hunt_btn_active:hover {
    background: #d4edda;
}

/* Welcome Modal */
.pcg_cl_modal_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    padding: 1rem;
    animation: pcg_cl_fade_in 0.3s ease-out;
}

@keyframes pcg_cl_fade_in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.pcg_cl_modal {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 24rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: pcg_cl_bounce_in 0.4s ease-out;
}

.pcg_cl_modal_logo {
    height: 60px;
    width: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #3f6f8a 0%, #2d5a73 100%);
    border-radius: 12px;
    padding: 10px;
    object-fit: contain;
}

.pcg_cl_modal_title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.pcg_cl_modal_text {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pcg_cl_modal_text strong {
    color: #1f2937;
}

.pcg_cl_modal_btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to right, #475569, #334155);
    color: white;
    font-weight: 700;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    font-size: 1rem;
}

.pcg_cl_modal_btn:hover {
    transform: scale(1.05);
}

/* Toast */
.pcg_cl_toast {
    position: fixed;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
    z-index: 50;
    transition: all 0.3s;
    font-weight: 600;
}

.pcg_cl_toast.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(1rem);
    pointer-events: none;
}

/* Confetti */
.pcg_cl_confetti {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 50;
}

.pcg_cl_confetti_piece {
    position: absolute;
    width: 10px;
    height: 10px;
    animation: pcg_cl_confetti_fall 3s ease-out forwards;
}

@keyframes pcg_cl_confetti_fall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* Milestone Modal */
.pcg_cl_milestone {
    background: linear-gradient(to bottom right, #475569, #334155);
    padding: 2rem;
    border-radius: 1.5rem;
    color: white;
    text-align: center;
    animation: pcg_cl_bounce_in 0.4s ease-out;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pcg_cl_milestone_icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.pcg_cl_milestone_title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pcg_cl_milestone_subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.pcg_cl_milestone_btn {
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 700;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.pcg_cl_milestone_btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Empty State */
.pcg_cl_empty {
    text-align: center;
    padding: 3rem;
}

.pcg_cl_empty_icon {
    font-size: 4rem;
}

.pcg_cl_empty_text {
    color: #6b7280;
    margin-top: 1rem;
}

/* Login prompt */
.pcg_cl_login_prompt {
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.pcg_cl_login_prompt a {
    color: #d97706;
    font-weight: 600;
    text-decoration: underline;
}
/* =============================================
   MOBILE OPTIMIZATIONS - Added for 80% mobile users
   ============================================= */

/* Card back - smaller elements on mobile */
@media (max-width: 639px) {
    .pcg_cl_card_back_content {
        padding: 10px;
    }
    
    .pcg_cl_card_back_image {
        width: 170px;
        height: 170px;
        padding: 5px;
        margin-bottom: 6px;
    }
    
    .pcg_cl_card_back_name {
        font-size: 11px;
        margin-bottom: 2px;
    }
    
    .pcg_cl_card_back_microcopy {
        font-size: 9px;
        margin-bottom: 6px;
    }
    
    .pcg_cl_gotit_btn {
        padding: 10px 8px;
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .pcg_cl_gotit_subtext {
        font-size: 8px;
        margin-top: 1px;
    }
    
    .pcg_cl_hunt_btn {
        padding: 8px;
        font-size: 11px;
    }
}

/* Very small screens (< 380px) */
@media (max-width: 379px) {
    .pcg_cl_grid {
        gap: 8px;
    }
    
    .pcg_cl_card_header {
        padding: 6px 8px;
        min-height: 32px;
    }
    
    .pcg_cl_card_header_name {
        font-size: 10px;
    }
    
    .pcg_cl_card_header_mattel {
        font-size: 8px;
        padding: 2px 5px;
    }
    
    .pcg_cl_card_info {
        padding: 6px 8px;
    }
    
    .pcg_cl_card_series {
        font-size: 9px;
        margin-bottom: 3px;
    }
    
    .pcg_cl_rarity_badge {
        font-size: 8px;
        padding: 2px 5px;
    }
    
    .pcg_cl_ownership {
        font-size: 9px;
    }
    
    .pcg_cl_card_back_content {
        padding: 8px;
    }
    
    .pcg_cl_card_back_image {
        width: 140px;
        height: 140px;
        margin-bottom: 4px;
    }
    
    .pcg_cl_card_back_name {
        font-size: 10px;
    }
    
    .pcg_cl_card_back_microcopy {
        display: none;
    }
    
    .pcg_cl_gotit_btn {
        padding: 8px 6px;
        font-size: 11px;
        margin-bottom: 4px;
    }
    
    .pcg_cl_gotit_subtext {
        display: none;
    }
    
    .pcg_cl_hunt_btn {
        padding: 7px;
        font-size: 10px;
    }
    
    .pcg_cl_card_microcopy {
        display: none;
    }
}

/* Stats card mobile layout improvement */
@media (max-width: 639px) {
    .pcg_cl_stats_card {
        padding: 15px 12px;
        gap: 15px;
    }
    
    .pcg_cl_progress_ring {
        width: 85px;
        height: 85px;
    }
    
    .pcg_cl_progress_percent {
        font-size: 1.4rem;
    }
    
    .pcg_cl_progress_count {
        font-size: 10px;
    }
    
    .pcg_cl_progress_number {
        font-size: 1.6rem;
    }
    
    .pcg_cl_progress_number span {
        font-size: 0.9rem;
    }
    
    .pcg_cl_progress_label {
        font-size: 12px;
    }
    
    .pcg_cl_wishlist_badge {
        font-size: 11px;
        padding: 3px 10px;
        margin-top: 8px;
    }
    
    .pcg_cl_progress_motivation {
        font-size: 10px;
        padding: 6px 10px;
        max-width: 100%;
        margin-top: 8px;
    }
    
    .pcg_cl_quick_stats {
        gap: 6px;
        padding-top: 12px;
    }
    
    .pcg_cl_quick_stat {
        padding: 5px 8px;
        max-width: 80px;
    }
    
    .pcg_cl_quick_stat_value {
        font-size: 0.85rem;
    }
    
    .pcg_cl_quick_stat_label {
        font-size: 8px;
    }
}

/* Owned badge positioning on mobile */
@media (max-width: 639px) {
    .pcg_cl_owned_badge {
        width: 18px;
        height: 18px;
        top: 5px;
        right: 5px;
    }
    
    .pcg_cl_owned_badge span {
        font-size: 10px;
    }
    
    .pcg_cl_hot_badge {
        font-size: 8px;
        padding: 2px 5px;
        top: 5px;
        left: 5px;
    }
    
.pcg_cl_wishlist_btn {
    width: 30px;
    height: 30px;
    bottom: 85px;
    right: 5px;
}
    
    .pcg_cl_wishlist_btn span {
        font-size: 14px;
    }
    
    .pcg_cl_missing_overlay {
        opacity: 0.15;
    }
    
    .pcg_cl_missing_overlay span {
        font-size: 2rem;
    }
}

/* Modal mobile optimizations */
@media (max-width: 639px) {
    .pcg_cl_modal {
        padding: 1.25rem;
        margin: 0.75rem;
        max-width: calc(100% - 1.5rem);
        border-radius: 1rem;
    }
    
    .pcg_cl_modal_logo {
        width: 50px;
        height: 50px;
    }
    
    .pcg_cl_modal_title {
        font-size: 1.2rem;
    }
    
    .pcg_cl_modal_text {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }
    
    .pcg_cl_modal_btn {
        padding: 0.75rem;
        font-size: 0.9rem;
        border-radius: 0.75rem;
    }
}

/* Toast positioning for mobile */
@media (max-width: 639px) {
    .pcg_cl_toast {
        bottom: 1.5rem;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        max-width: calc(100% - 2rem);
    }
}

/* Hero banner mobile */
@media (max-width: 479px) {
    .pcg_cl_hero_banner {
        padding: 10px 12px;
        border-radius: 10px;
    }
    
    .pcg_cl_hero_title {
        font-size: 10px;
        letter-spacing: 0.2px;
    }
    
    .pcg_cl_hero_icon {
        font-size: 16px;
    }
    
    .pcg_cl_hero_left {
        gap: 8px;
    }
}

/* Reassurance text mobile */
@media (max-width: 639px) {
    .pcg_cl_reassurance {
        font-size: 10px;
        margin-bottom: 12px;
    }
}

/* Filter buttons mobile */
@media (max-width: 639px) {
    .pcg_cl_filter_btn {
        padding: 6px 12px;
        font-size: 12px;
        min-height: 44px;
    }
    
    .pcg_cl_filter_subtext {
        font-size: 9px;
    }
}

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

.pcg_cl_container {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Touch-friendly tap targets */
.pcg_cl_card {
    -webkit-tap-highlight-color: transparent;
}

.pcg_cl_gotit_btn,
.pcg_cl_hunt_btn,
.pcg_cl_wishlist_btn,
.pcg_cl_filter_btn {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Milestone modal mobile */
@media (max-width: 639px) {
    .pcg_cl_milestone {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .pcg_cl_milestone_icon {
        font-size: 3rem;
    }
    
    .pcg_cl_milestone_title {
        font-size: 1.4rem;
    }
    
    .pcg_cl_milestone_subtitle {
        font-size: 1rem;
    }
}

/* =============================================
   YEAR TABS - Catalog Style
   ============================================= */

/* Tab Bar above dark content */
.pcg_cl_tab_bar {
    background: transparent;
    padding: 0;
    border-radius: 12px 12px 0 0;
}

/* Year Tabs — updated 20260227, NO scroll */
.pcg_cl_year_tabs {
    display: flex;
    gap: 2px;
    flex-wrap: nowrap;
    overflow: hidden;
}

.pcg_cl_year_tab {
    padding: 0.45rem 0.1rem;
    border-radius: 8px 8px 0 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    position: relative;
    bottom: -1px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    flex: 1 1 0;
    min-width: 0;
}

/* Active tab — 20260227 */
.pcg_cl_year_tab.active {
    background: #e9eff3;
    border: 1px solid rgba(63, 111, 138, 0.12);
    border-bottom: 1px solid #e9eff3;
    color: #3f6f8a;
    z-index: 2;
}

/* Inactive tab — 20260227 */
.pcg_cl_year_tab:not(.active) {
    background: #3f6f8a;
    border: 1px solid #2d5a73;
    border-bottom: none;
    color: rgba(255, 255, 255, 0.7);
}

.pcg_cl_year_tab:not(.active):hover {
    background: #2d5a73;
    color: #ffffff;
}

/* Tab label (e.g. "My 2026") — 20260227 */
.pcg_cl_tab_label_20260227 {
    white-space: nowrap;
    font-size: inherit;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Desktop shows full label, mobile shows year only — 20260227 */
.pcg_cl_tab_mobile_20260227 {
    display: none;
}

@media (max-width: 640px) {
    .pcg_cl_tab_desktop_20260227 {
        display: none;
    }
    .pcg_cl_tab_mobile_20260227 {
        display: inline;
        font-weight: 700;
    }
}


/* Tab count (e.g. "0/172") — 20260227 */
.pcg_cl_tab_count_20260227 {
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.75;
    margin-top: 1px;
    white-space: nowrap;
}

.pcg_cl_year_tab.active .pcg_cl_tab_count_20260227 {
    color: #3f6f8a;
    opacity: 0.6;
}

/* Legacy classes — hidden 20260227 */
.pcg_cl_tab_short,
.pcg_cl_tab_prefix,
.pcg_cl_tab_suffix,
.pcg_cl_tab_full {
    display: none;
}

/* Mobile — year only, bold, NO scroll — 20260227 */
@media (max-width: 640px) {
    .pcg_cl_year_tabs {
        gap: 1px;
    }
    
    .pcg_cl_year_tab {
        padding: 0.35rem 0;
        font-size: 0.72rem;
    }
    
    .pcg_cl_tab_label_20260227 {
        font-weight: 700;
    }
    
   .pcg_cl_tab_count_20260227 {
        display: none;
    }
}

/* Mid-range tablets — 20260227 */
@media (min-width: 641px) and (max-width: 900px) {
    .pcg_cl_year_tab {
        padding: 0.45rem 0.2rem;
        font-size: 0.75rem;
    }
}

/* Desktop wide — 20260227 */
@media (min-width: 901px) {
    .pcg_cl_year_tab {
        padding: 0.5rem 0.3rem;
        font-size: 0.85rem;
    }
    
    .pcg_cl_tab_count_20260227 {
        font-size: 0.7rem;
    }
}

/* Remove top border radius from hero banner so it connects with tabs */

/* Remove top border radius from hero banner so it connects with tabs */
.pcg_cl_hero_banner {
    border-radius: 0 12px 0 0 !important;
}
/* =============================================
   OWNED CARD BACK STYLES - Add to pcg_cl_checklist.css
   ============================================= */

/* Owned card back details layout */
.pcg_cl_owned_details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 12px !important;
    text-align: center;
}

.pcg_cl_owned_details .pcg_cl_card_back_name {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    line-height: 1.2;
}

/* Detail grid - 2x2 layout */
.pcg_cl_detail_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    margin-bottom: 10px;
}

.pcg_cl_detail_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 4px;
    background: rgba(63, 111, 138, 0.08);
    border-radius: 8px;
}

.pcg_cl_detail_label {
    font-size: 9px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.pcg_cl_detail_value {
    font-size: 12px;
    font-weight: 600;
    color: #1f2937;
}

/* Value styling */
.pcg_cl_value_current {
    color: #059669 !important;
}

.pcg_cl_value_future {
    color: #7c3aed !important;
}

/* Description */
.pcg_cl_detail_description {
    font-size: 10px;
    color: #6b7280;
    line-height: 1.4;
    margin-bottom: 10px;
    padding: 8px;
    background: rgba(63, 111, 138, 0.05);
    border-radius: 6px;
    border-left: 3px solid #3f6f8a;
    text-align: left;
    width: 100%;
}

/* Remove button */
.pcg_cl_remove_btn {
    width: 100%;
    padding: 10px 12px;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 1px solid #fca5a5;
    border-radius: 8px;
    color: #dc2626;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pcg_cl_remove_btn:hover {
    background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
    border-color: #f87171;
    transform: translateY(-1px);
}

.pcg_cl_remove_btn:active {
    transform: translateY(0);
}

/* Rarity badge in detail grid */
.pcg_cl_detail_item .pcg_cl_rarity_badge {
    font-size: 10px;
    padding: 2px 8px;
}

/* Mobile optimizations for owned card back */
@media (max-width: 639px) {
    .pcg_cl_owned_details {
        padding: 10px !important;
    }
    
    .pcg_cl_owned_details .pcg_cl_card_back_name {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .pcg_cl_detail_grid {
        gap: 6px;
        margin-bottom: 8px;
    }
    
    .pcg_cl_detail_item {
        padding: 5px 3px;
    }
    
    .pcg_cl_detail_label {
        font-size: 8px;
    }
    
    .pcg_cl_detail_value {
        font-size: 11px;
    }
    
    .pcg_cl_detail_description {
        font-size: 9px;
        padding: 6px;
        margin-bottom: 8px;
    }
    
    .pcg_cl_remove_btn {
        padding: 8px 10px;
        font-size: 11px;
    }
}

/* Very small screens */
@media (max-width: 379px) {
    .pcg_cl_owned_details {
        padding: 8px !important;
    }
    
    .pcg_cl_owned_details .pcg_cl_card_back_name {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .pcg_cl_detail_grid {
        gap: 4px;
        margin-bottom: 6px;
    }
    
    .pcg_cl_detail_item {
        padding: 4px 2px;
    }
    
    .pcg_cl_detail_label {
        font-size: 7px;
    }
    
    .pcg_cl_detail_value {
        font-size: 10px;
    }
    
    .pcg_cl_detail_description {
        display: none; /* Hide on very small screens */
    }
    
    .pcg_cl_remove_btn {
        padding: 7px 8px;
        font-size: 10px;
    }
}

/* =============================================
   OWNED CARD BACK STYLES
   Add this to the END of pcg_cl_checklist.css
   ============================================= */

/* Owned card back details layout */
.pcg_cl_owned_details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 15px !important;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.pcg_cl_owned_details .pcg_cl_card_back_name {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.2;
}

/* Detail grid - 2x2 layout */
.pcg_cl_detail_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    margin-bottom: 12px;
}

.pcg_cl_detail_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 6px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.pcg_cl_detail_label {
    font-size: 9px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 500;
}

.pcg_cl_detail_value {
    font-size: 12px;
    font-weight: 600;
    color: #1f2937;
}

/* Value styling */
.pcg_cl_value_current {
    color: #059669 !important;
    font-weight: 700 !important;
}

.pcg_cl_value_future {
    color: #7c3aed !important;
    font-weight: 700 !important;
}

/* Description */
.pcg_cl_detail_description {
    font-size: 10px;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 12px;
    padding: 10px;
    background: #ffffff;
    border-radius: 8px;
    border-left: 3px solid #3f6f8a;
    text-align: left;
    width: 100%;
    font-style: italic;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* Remove button */
.pcg_cl_remove_btn {
    width: 100%;
    padding: 12px 15px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid #fca5a5;
    border-radius: 10px;
    color: #dc2626;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pcg_cl_remove_btn:hover {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-color: #f87171;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.pcg_cl_remove_btn:active {
    transform: translateY(0);
}

/* Rarity badge in detail grid */
.pcg_cl_detail_item .pcg_cl_rarity_badge {
    font-size: 10px;
    padding: 3px 10px;
    margin: 0;
}

/* Mobile optimizations for owned card back */
@media (max-width: 639px) {
    .pcg_cl_owned_details {
        padding: 12px !important;
    }
    
    .pcg_cl_owned_details .pcg_cl_card_back_name {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .pcg_cl_detail_grid {
        gap: 6px;
        margin-bottom: 10px;
    }
    
    .pcg_cl_detail_item {
        padding: 6px 4px;
    }
    
    .pcg_cl_detail_label {
        font-size: 8px;
    }
    
    .pcg_cl_detail_value {
        font-size: 11px;
    }
    
    .pcg_cl_detail_description {
        font-size: 9px;
        padding: 8px;
        margin-bottom: 10px;
    }
    
    .pcg_cl_remove_btn {
        padding: 10px 12px;
        font-size: 12px;
    }
}

/* Very small screens */
@media (max-width: 379px) {
    .pcg_cl_owned_details {
        padding: 10px !important;
    }
    
    .pcg_cl_owned_details .pcg_cl_card_back_name {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .pcg_cl_detail_grid {
        gap: 4px;
        margin-bottom: 8px;
    }
    
    .pcg_cl_detail_item {
        padding: 5px 3px;
    }
    
    .pcg_cl_detail_label {
        font-size: 7px;
    }
    
    .pcg_cl_detail_value {
        font-size: 10px;
    }
    
    .pcg_cl_detail_description {
        display: none;
    }
    
    .pcg_cl_remove_btn {
        padding: 8px 10px;
        font-size: 11px;
    }
}

/* =============================================
   TRADING CARD BACK STYLES
   Add this to the END of pcg_cl_checklist.css
   ============================================= */

/* Trading Card Container */
.pcg_cl_trading_card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0 !important;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

/* Rarity-based border glow */
.pcg_cl_trading_card.rarity-common {
    box-shadow: inset 0 0 0 3px #6b7280, 0 0 15px rgba(107, 114, 128, 0.3);
}
.pcg_cl_trading_card.rarity-uncommon {
    box-shadow: inset 0 0 0 3px #22c55e, 0 0 15px rgba(34, 197, 94, 0.4);
}
.pcg_cl_trading_card.rarity-rare {
    box-shadow: inset 0 0 0 3px #3b82f6, 0 0 20px rgba(59, 130, 246, 0.5);
}
.pcg_cl_trading_card.rarity-ultra,
.pcg_cl_trading_card.rarity-chase {
    box-shadow: inset 0 0 0 3px #eab308, 0 0 25px rgba(234, 179, 8, 0.6);
    background: linear-gradient(145deg, #1a1a2e 0%, #2d1f3d 50%, #1a1a2e 100%);
}

/* Header Bar */
.pcg_cl_tc_header {
    padding: 8px 12px;
    text-align: center;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.pcg_cl_tc_header.rarity-common {
    background: linear-gradient(90deg, #4b5563, #6b7280, #4b5563);
    color: #fff;
}
.pcg_cl_tc_header.rarity-uncommon {
    background: linear-gradient(90deg, #15803d, #22c55e, #15803d);
    color: #fff;
}
.pcg_cl_tc_header.rarity-rare {
    background: linear-gradient(90deg, #1d4ed8, #3b82f6, #1d4ed8);
    color: #fff;
}
.pcg_cl_tc_header.rarity-ultra,
.pcg_cl_tc_header.rarity-chase {
    background: linear-gradient(90deg, #b45309, #eab308, #b45309);
    color: #1a1a2e;
    text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}

/* Car Name */
.pcg_cl_tc_name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding: 10px 8px 6px;
    line-height: 1.2;
}

/* Middle Section */
.pcg_cl_tc_middle {
    display: flex;
    padding: 0 10px;
    gap: 10px;
    align-items: flex-start;
}

.pcg_cl_tc_thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pcg_cl_tc_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pcg_cl_tc_thumb span {
    font-size: 24px;
}

.pcg_cl_tc_stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pcg_cl_tc_stat {
    display: flex;
    flex-direction: column;
}
.pcg_cl_tc_stat_label {
    font-size: 8px;
    color: #94a3b8;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.pcg_cl_tc_stat_value {
    font-size: 12px;
    font-weight: 600;
    color: #e2e8f0;
}

/* Value Section */
.pcg_cl_tc_values {
    display: flex;
    gap: 8px;
    padding: 8px 10px;
    margin: 8px 10px;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.pcg_cl_tc_value_box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
}
.pcg_cl_tc_value_icon {
    font-size: 14px;
    margin-bottom: 2px;
}
.pcg_cl_tc_value_label {
    font-size: 7px;
    color: #94a3b8;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.pcg_cl_tc_value_amount {
    font-size: 14px;
    font-weight: 700;
}
.pcg_cl_tc_value_amount.current {
    color: #4ade80;
}
.pcg_cl_tc_value_amount.future {
    color: #a78bfa;
}

/* Description */
.pcg_cl_tc_description {
    font-size: 9px;
    color: #94a3b8;
    line-height: 1.4;
    padding: 0 12px;
    font-style: italic;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.pcg_cl_tc_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(0,0,0,0.4);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.pcg_cl_tc_remove {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #f87171;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pcg_cl_tc_remove:hover {
    background: rgba(239, 68, 68, 0.4);
    border-color: #ef4444;
    transform: scale(1.1);
}

.pcg_cl_tc_mattel {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */

@media (max-width: 639px) {
    .pcg_cl_tc_name {
        font-size: 12px;
        padding: 8px 6px 4px;
    }
    
    .pcg_cl_tc_middle {
        padding: 0 8px;
        gap: 8px;
    }
    
    .pcg_cl_tc_thumb {
        width: 50px;
        height: 50px;
    }
    
    .pcg_cl_tc_stat_value {
        font-size: 11px;
    }
    
    .pcg_cl_tc_values {
        padding: 6px 8px;
        margin: 6px 8px;
        gap: 6px;
    }
    
    .pcg_cl_tc_value_amount {
        font-size: 12px;
    }
    
    .pcg_cl_tc_description {
        font-size: 8px;
        padding: 0 8px;
    }
    
    .pcg_cl_tc_footer {
        padding: 6px 10px;
    }
    
    .pcg_cl_tc_remove {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .pcg_cl_tc_mattel {
        font-size: 10px;
    }
}

@media (max-width: 379px) {
    .pcg_cl_tc_header {
        padding: 6px 8px;
        font-size: 9px;
    }
    
    .pcg_cl_tc_name {
        font-size: 11px;
        padding: 6px 4px 2px;
    }
    
    .pcg_cl_tc_thumb {
        width: 40px;
        height: 40px;
    }
    
    .pcg_cl_tc_stat_label {
        font-size: 7px;
    }
    
    .pcg_cl_tc_stat_value {
        font-size: 10px;
    }
    
    .pcg_cl_tc_values {
        padding: 4px 6px;
        margin: 4px 6px;
    }
    
    .pcg_cl_tc_value_icon {
        font-size: 12px;
    }
    
    .pcg_cl_tc_value_label {
        font-size: 6px;
    }
    
    .pcg_cl_tc_value_amount {
        font-size: 11px;
    }
    
    .pcg_cl_tc_description {
        display: none;
    }
    
    .pcg_cl_tc_footer {
        padding: 4px 8px;
    }
}

/* =============================================
   HOLOGRAPHIC EFFECT FOR CHASE/ULTRA RARE
   ============================================= */

.pcg_cl_trading_card.rarity-ultra::before,
.pcg_cl_trading_card.rarity-chase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        125deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 25%,
        transparent 50%,
        rgba(255, 215, 0, 0.1) 75%,
        transparent 100%
    );
    pointer-events: none;
    animation: pcg_cl_holoShine 3s ease-in-out infinite;
}

@keyframes pcg_cl_holoShine {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-100%);
    }
    50% {
        opacity: 0.6;
        transform: translateX(100%);
    }
}

/* =============================================
   TRADING CARD BACK - LIGHT THEME
   Add this to the END of pcg_cl_checklist.css
   ============================================= */

/* Trading Card Container - Light Theme */
.pcg_cl_trading_card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0 !important;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 3px solid #e5e7eb;
}

/* Rarity-based borders */
.pcg_cl_trading_card.rarity-common {
    border-color: #9ca3af;
}
.pcg_cl_trading_card.rarity-uncommon {
    border-color: #22c55e;
}
.pcg_cl_trading_card.rarity-rare {
    border-color: #3b82f6;
}
.pcg_cl_trading_card.rarity-ultra,
.pcg_cl_trading_card.rarity-chase {
    border-color: #eab308;
    background: linear-gradient(145deg, #fffef0 0%, #fff 50%, #fefce8 100%);
}

/* Header Bar */
.pcg_cl_tc_header {
    padding: 8px 12px;
    text-align: center;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.pcg_cl_tc_header.rarity-common {
    background: linear-gradient(90deg, #6b7280, #9ca3af, #6b7280);
    color: #fff;
}
.pcg_cl_tc_header.rarity-uncommon {
    background: linear-gradient(90deg, #16a34a, #22c55e, #16a34a);
    color: #fff;
}
.pcg_cl_tc_header.rarity-rare {
    background: linear-gradient(90deg, #2563eb, #3b82f6, #2563eb);
    color: #fff;
}
.pcg_cl_tc_header.rarity-ultra,
.pcg_cl_tc_header.rarity-chase {
    background: linear-gradient(90deg, #ca8a04, #eab308, #ca8a04);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Car Name */
.pcg_cl_tc_name {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    padding: 12px 10px 8px;
    line-height: 1.2;
    border-bottom: 1px solid #e5e7eb;
}

/* Middle Section: Image + Stats */
.pcg_cl_tc_middle {
    display: flex;
    padding: 10px 12px;
    gap: 12px;
    align-items: flex-start;
    background: #f9fafb;
}

.pcg_cl_tc_thumb {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border: 2px solid #e5e7eb;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.pcg_cl_tc_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pcg_cl_tc_thumb span {
    font-size: 28px;
}

.pcg_cl_tc_stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pcg_cl_tc_stat {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}
.pcg_cl_tc_stat_label {
    font-size: 9px;
    color: #6b7280;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}
.pcg_cl_tc_stat_value {
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
}

/* Value Section */
.pcg_cl_tc_values {
    display: flex;
    gap: 10px;
    padding: 10px 12px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.pcg_cl_tc_value_box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 8px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 8px;
    border: 1px solid #bbf7d0;
}
.pcg_cl_tc_value_box:last-child {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-color: #d8b4fe;
}

.pcg_cl_tc_value_icon {
    font-size: 16px;
    margin-bottom: 2px;
}
.pcg_cl_tc_value_label {
    font-size: 8px;
    color: #6b7280;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 2px;
}
.pcg_cl_tc_value_amount {
    font-size: 16px;
    font-weight: 800;
}
.pcg_cl_tc_value_amount.current {
    color: #16a34a;
}
.pcg_cl_tc_value_amount.future {
    color: #7c3aed;
}

/* Description */
.pcg_cl_tc_description {
    font-size: 10px;
    color: #6b7280;
    line-height: 1.5;
    padding: 10px 14px;
    font-style: italic;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
}

/* Footer */
.pcg_cl_tc_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #f3f4f6;
    border-top: 1px solid #e5e7eb;
}

.pcg_cl_tc_remove {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #fca5a5;
    color: #dc2626;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pcg_cl_tc_remove:hover {
    background: #fef2f2;
    border-color: #ef4444;
    transform: scale(1.1);
}

.pcg_cl_tc_mattel {
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    background: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
}

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */

@media (max-width: 639px) {
    .pcg_cl_tc_name {
        font-size: 13px;
        padding: 10px 8px 6px;
    }
    
    .pcg_cl_tc_middle {
        padding: 8px 10px;
        gap: 10px;
    }
    
    .pcg_cl_tc_thumb {
        width: 55px;
        height: 55px;
    }
    
    .pcg_cl_tc_stat {
        padding: 5px 8px;
    }
    
    .pcg_cl_tc_stat_value {
        font-size: 12px;
    }
    
    .pcg_cl_tc_values {
        padding: 8px 10px;
        gap: 8px;
    }
    
    .pcg_cl_tc_value_box {
        padding: 8px 6px;
    }
    
    .pcg_cl_tc_value_amount {
        font-size: 14px;
    }
    
    .pcg_cl_tc_description {
        font-size: 9px;
        padding: 8px 10px;
    }
    
    .pcg_cl_tc_footer {
        padding: 8px 10px;
    }
    
    .pcg_cl_tc_remove {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    
    .pcg_cl_tc_mattel {
        font-size: 10px;
        padding: 3px 8px;
    }
}

@media (max-width: 379px) {
    .pcg_cl_tc_header {
        padding: 6px 8px;
        font-size: 9px;
    }
    
    .pcg_cl_tc_name {
        font-size: 11px;
        padding: 8px 6px 4px;
    }
    
    .pcg_cl_tc_middle {
        padding: 6px 8px;
        gap: 8px;
    }
    
    .pcg_cl_tc_thumb {
        width: 45px;
        height: 45px;
    }
    
    .pcg_cl_tc_stat_label {
        font-size: 7px;
    }
    
    .pcg_cl_tc_stat_value {
        font-size: 10px;
    }
    
    .pcg_cl_tc_values {
        padding: 6px 8px;
        gap: 6px;
    }
    
    .pcg_cl_tc_value_box {
        padding: 6px 4px;
    }
    
    .pcg_cl_tc_value_icon {
        font-size: 12px;
    }
    
    .pcg_cl_tc_value_label {
        font-size: 7px;
    }
    
    .pcg_cl_tc_value_amount {
        font-size: 12px;
    }
    
    .pcg_cl_tc_description {
        display: none;
    }
    
    .pcg_cl_tc_footer {
        padding: 6px 8px;
    }
    
    .pcg_cl_tc_remove {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
    
    .pcg_cl_tc_mattel {
        font-size: 9px;
    }
}

/* =============================================
   SHINE EFFECT FOR CHASE/ULTRA RARE
   ============================================= */

.pcg_cl_trading_card.rarity-ultra::after,
.pcg_cl_trading_card.rarity-chase::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    pointer-events: none;
    animation: pcg_cl_cardShine 2.5s ease-in-out infinite;
}

@keyframes pcg_cl_cardShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 150%;
    }
}

/* =============================================
   TRADING CARD BACK - COMPACT POKEMON STYLE
   Add this to the END of pcg_cl_checklist.css
   ============================================= */

/* Main container - fills card exactly */
.pcg_cl_tc {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

/* Rarity border colors */
.pcg_cl_tc.rarity-common { border: 3px solid #9ca3af; }
.pcg_cl_tc.rarity-uncommon { border: 3px solid #22c55e; }
.pcg_cl_tc.rarity-rare { border: 3px solid #3b82f6; }
.pcg_cl_tc.rarity-ultra, .pcg_cl_tc.rarity-chase { 
    border: 3px solid #eab308; 
    background: linear-gradient(180deg, #fffef5 0%, #fff 100%);
}

/* Header - rarity banner */
.pcg_cl_tc_header {
    padding: 5px 8px;
    text-align: center;
    font-weight: 800;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #fff;
    flex-shrink: 0;
}
.pcg_cl_tc_header.rarity-common { background: #6b7280; }
.pcg_cl_tc_header.rarity-uncommon { background: #16a34a; }
.pcg_cl_tc_header.rarity-rare { background: #2563eb; }
.pcg_cl_tc_header.rarity-ultra, .pcg_cl_tc_header.rarity-chase { 
    background: linear-gradient(90deg, #ca8a04, #eab308, #ca8a04); 
}

/* Body - scrollable content area */
.pcg_cl_tc_body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 6px;
    overflow: hidden;
    min-height: 0;
}

/* Car name */
.pcg_cl_tc_name {
    font-size: 11px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    padding: 2px 4px 6px;
    line-height: 1.2;
    border-bottom: 1px solid #e5e7eb;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
}

/* Image + Info row */
.pcg_cl_tc_row {
    display: flex;
    gap: 6px;
    padding: 6px 0;
    flex-shrink: 0;
}

.pcg_cl_tc_img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}
.pcg_cl_tc_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pcg_cl_tc_info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.pcg_cl_tc_stat {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 3px 6px;
    display: flex;
    flex-direction: column;
}
.pcg_cl_tc_stat span {
    font-size: 7px;
    color: #9ca3af;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.pcg_cl_tc_stat {
    font-size: 10px;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Value boxes */
.pcg_cl_tc_vals {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.pcg_cl_tc_val {
    flex: 1;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 6px;
    padding: 6px 4px;
    text-align: center;
}
.pcg_cl_tc_val.fv {
    background: #faf5ff;
    border-color: #e9d5ff;
}
.pcg_cl_tc_val span {
    display: block;
    font-size: 7px;
    color: #6b7280;
    margin-bottom: 2px;
}
.pcg_cl_tc_val.cv {
    font-size: 13px;
    font-weight: 700;
    color: #16a34a;
}
.pcg_cl_tc_val.fv {
    font-size: 13px;
    font-weight: 700;
    color: #7c3aed;
}

/* Description */
.pcg_cl_tc_desc {
    font-size: 8px;
    color: #6b7280;
    line-height: 1.3;
    text-align: center;
    padding: 4px;
    font-style: italic;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Footer */
.pcg_cl_tc_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 8px;
    background: #f3f4f6;
    border-top: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.pcg_cl_tc_rm {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #dc2626;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s;
}
.pcg_cl_tc_rm:hover {
    transform: scale(1.15);
    background: #fecaca;
}

.pcg_cl_tc_mattel {
    font-size: 9px;
    font-weight: 700;
    color: #6b7280;
    font-family: monospace;
}

/* =============================================
   MOBILE - Even more compact
   ============================================= */
@media (max-width: 639px) {
    .pcg_cl_tc_header { padding: 4px 6px; font-size: 8px; }
    .pcg_cl_tc_body { padding: 4px; }
    .pcg_cl_tc_name { font-size: 10px; padding: 2px 2px 4px; }
    .pcg_cl_tc_row { gap: 4px; padding: 4px 0; }
    .pcg_cl_tc_img { width: 40px; height: 40px; font-size: 16px; }
    .pcg_cl_tc_stat { padding: 2px 4px; }
    .pcg_cl_tc_stat span { font-size: 6px; }
    .pcg_cl_tc_stat { font-size: 9px; }
    .pcg_cl_tc_vals { gap: 3px; }
    .pcg_cl_tc_val { padding: 4px 2px; }
    .pcg_cl_tc_val span { font-size: 6px; }
    .pcg_cl_tc_val.cv, .pcg_cl_tc_val.fv { font-size: 11px; }
    .pcg_cl_tc_desc { font-size: 7px; padding: 2px; -webkit-line-clamp: 1; }
    .pcg_cl_tc_bottom { padding: 3px 6px; }
    .pcg_cl_tc_rm { width: 18px; height: 18px; font-size: 9px; }
    .pcg_cl_tc_mattel { font-size: 8px; }
}

@media (max-width: 379px) {
    .pcg_cl_tc_header { padding: 3px 4px; font-size: 7px; letter-spacing: 1px; }
    .pcg_cl_tc_body { padding: 3px; }
    .pcg_cl_tc_name { font-size: 9px; }
    .pcg_cl_tc_img { width: 32px; height: 32px; font-size: 14px; }
    .pcg_cl_tc_stat span { font-size: 5px; }
    .pcg_cl_tc_stat { font-size: 8px; }
    .pcg_cl_tc_val span { font-size: 5px; }
    .pcg_cl_tc_val.cv, .pcg_cl_tc_val.fv { font-size: 10px; }
    .pcg_cl_tc_desc { display: none; }
    .pcg_cl_tc_bottom { padding: 2px 4px; }
    .pcg_cl_tc_rm { width: 16px; height: 16px; font-size: 8px; }
    .pcg_cl_tc_mattel { font-size: 7px; }
}

/* =============================================
   SHINE EFFECT FOR CHASE/ULTRA
   ============================================= */
.pcg_cl_tc.rarity-ultra::after,
.pcg_cl_tc.rarity-chase::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    pointer-events: none;
    animation: tcShine 2s ease-in-out infinite;
}
@keyframes tcShine {
    0% { left: -100%; }
    50%, 100% { left: 150%; }
}





/* =============================================
   CATEGORY SECTIONS - Just colored header dividers
   ============================================= */

.pcg_cl_categories {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pcg_cl_category_section {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    border: none;
}

.pcg_cl_category_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    color: #fff;
    font-weight: 700;
    position: sticky;
    top: 60px;
    z-index: 10;
    border-radius: 8px;
    margin-bottom: 16px;
    margin-top: 24px;
}

.pcg_cl_category_section:first-child .pcg_cl_category_header {
    margin-top: 0;
}

@media (min-width: 640px) {
    .pcg_cl_category_header {
        padding: 14px 20px;
        margin-bottom: 20px;
        margin-top: 32px;
    }
}

.pcg_cl_category_title {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (min-width: 640px) {
    .pcg_cl_category_title {
        font-size: 16px;
    }
}

.pcg_cl_category_stats {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .pcg_cl_category_stats {
        padding: 5px 12px;
        font-size: 13px;
    }
}

.pcg_cl_category_section .pcg_cl_grid {
    padding: 0;
    overflow: visible;
}

/* Trading Card Back - Image Box Fix */
.pcg_cl_tc_imgbox {
    width: 80px;
    height: 80px;
    margin: 8px auto;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pcg_cl_tc_imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pcg_cl_tc_imgbox span {
    font-size: 32px;
}

@media (min-width: 640px) {
    .pcg_cl_tc_imgbox {
        width: 100px;
        height: 100px;
    }
}

/* Trading Card Back - Clean Compact Design */
.pcg_cl_tc {
    background: #fff;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pcg_cl_tc_header {
    background: #6b7280;
    color: #fff;
    text-align: center;
    padding: 5px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Rarity header colors */
.pcg_cl_tc_header.rarity-common { background: #6b7280; }
.pcg_cl_tc_header.rarity-uncommon { background: #16a34a; }
.pcg_cl_tc_header.rarity-rare { background: #2563eb; }
.pcg_cl_tc_header.rarity-ultra,
.pcg_cl_tc_header.rarity-chase { background: #dc2626; }

.pcg_cl_tc.rarity-common { border-color: #6b7280; }
.pcg_cl_tc.rarity-uncommon { border-color: #16a34a; }
.pcg_cl_tc.rarity-rare { border-color: #2563eb; }
.pcg_cl_tc.rarity-ultra,
.pcg_cl_tc.rarity-chase { border-color: #dc2626; }

.pcg_cl_tc_body {
    padding: 6px 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.pcg_cl_tc_name {
    font-size: 11px;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    line-height: 1.2;
    text-decoration: underline;
    margin-bottom: 2px;
}

.pcg_cl_tc_imgbox {
    width: 70px;
    height: 70px;
    margin: 2px auto;
    border-radius: 4px;
    overflow: hidden;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pcg_cl_tc_imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pcg_cl_tc_details {
    font-size: 9px;
    color: #555;
    margin-bottom: 2px;
}

.pcg_cl_tc_details_row {
    display: flex;
    justify-content: space-between;
    padding: 1px 0;
}

.pcg_cl_tc_details_row span:first-child {
    color: #555;
}

.pcg_cl_tc_details_row span:last-child {
    font-weight: 500;
    color: #555;
    text-align: right;
}

/* Value Boxes - Pulled up closer to details */
.pcg_cl_tc_prices {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.pcg_cl_tc_price {
    flex: 1;
    text-align: center;
    padding: 5px 4px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #1f2937;
}

.pcg_cl_tc_price:first-child {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.pcg_cl_tc_price:last-child {
    background: #f3e8ff;
    border: 1px solid #d8b4fe;
}

.pcg_cl_tc_price span {
    display: block;
    font-size: 7px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1px;
}

.pcg_cl_tc_footer {
    background: #f9fafb;
    padding: 4px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 8px;
    color: #9ca3af;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
    padding-top: 8px;
}

.pcg_cl_tc_sku {
    font-weight: 600;
    font-family: monospace;
    color: #555;
}

.pcg_cl_tc_owned_count {
	color: #555;
}

@media (min-width: 640px) {
    .pcg_cl_tc_header {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .pcg_cl_tc_body {
        padding: 10px;
        gap: 6px;
    }
    
    .pcg_cl_tc_name {
        font-size: 12px;
    }
    
    .pcg_cl_tc_imgbox {
        width: 80px;
        height: 80px;
    }
    
    .pcg_cl_tc_details {
        font-size: 10px;
    }
    
    .pcg_cl_tc_price {
        font-size: 13px;
        padding: 8px 6px;
    }
    
    .pcg_cl_tc_price span {
        font-size: 8px;
    }
    
    .pcg_cl_tc_footer {
        padding: 6px 10px;
        font-size: 9px;
    }
}

/* =============================================
   KK SPECIAL DESCRIPTION BOX - Unique naming
   ============================================= */
.kk_special_description_box {
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
    border: 1px solid #fde047;
    border-radius: 6px;
    padding: 8px 10px;
    margin-top: 8px;
    flex: 1;
    display: flex;
    align-items: center;
}

.kk_special_description_text {
    font-size: 9px;
    line-height: 1.4;
    color: #713f12;
    font-style: italic;
    margin: 0;
    text-align: center;
    width: 100%;
}

@media (min-width: 640px) {
    .kk_special_description_box {
        padding: 10px 12px;
    }
    
    .kk_special_description_text {
        font-size: 10px;
    }
}

/* Value boxes already styled above */
.pcg_cl_search_wrap {
    display: flex;
    justify-content: center;
    padding: 10px 5px;
    background: transparent;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .pcg_cl_search_wrap {
        padding: 15px 10px;
        max-width: 450px;
        margin: 0 auto;
    }
}

.pcg_cl_search_container {
    position: relative;
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
}

.pcg_cl_search_container:focus-within {
    border-color: #3f6f8a;
    box-shadow: 0 4px 12px rgba(63, 111, 138, 0.15);
}

.pcg_cl_search_input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 20px;
    font-size: 0.95rem;
    background: transparent;
    color: #1f2937;
    border-radius: 50px 0 0 50px;
}

.pcg_cl_search_input::placeholder {
    color: #9ca3af;
}

.pcg_cl_search_btn {
    background: #3f6f8a;
    border: none;
    padding: 10px 18px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.2s;
}

.pcg_cl_search_btn:hover {
    background: #2d5269;
}

.pcg_cl_suggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 5px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
}

.pcg_cl_suggestion_item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.15s;
}

.pcg_cl_suggestion_item:last-child {
    border-bottom: none;
}

.pcg_cl_suggestion_item:hover,
.pcg_cl_suggestion_item.selected {
    background: #f0f7fa;
}

.pcg_cl_suggestion_mattel {
    font-weight: 700;
    font-family: monospace;
    font-size: 0.95rem;
    color: #3f6f8a;
    min-width: 70px;
}

.pcg_cl_suggestion_name {
    flex: 1;
    color: #374151;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pcg_cl_suggestion_thumb {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
    background: #f9fafb;
    flex-shrink: 0;
}

.pcg_cl_suggestion_thumb_empty {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pcg_cl_suggestion_year {
    font-size: 0.75rem;
    color: #9ca3af;
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 10px;
}

@media (max-width: 480px) {
    .pcg_cl_search_wrap {
        padding: 10px 5px;
    }
    
    .pcg_cl_search_input {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .pcg_cl_search_btn {
        padding: 8px 14px;
    }
    
    .pcg_cl_suggestion_item {
        padding: 10px 12px;
    }
}
.pcg_cl_search_icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}
.pcg_cl_movie_logo {
    height: 52px;
    width: auto;
    max-width: 100%;
}
.pcg_cl_search_wrap.header-search {
    margin: 0;
    padding: 0 15px;
}
/* Hide Scan button on desktop - only useful on mobile devices with camera */
@media (min-width: 1400px) {
    .pcg_scan_20260128_button_wrap {
        display: none !important;
    }
}
/* =============================================
   LIGHTBOX - Image Enlargement
   ============================================= */
.pcg_cl_lightbox_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    padding: 20px;
}

.pcg_cl_lightbox_overlay.active {
    opacity: 1;
}

.pcg_cl_lightbox_content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pcg_cl_lightbox_content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.pcg_cl_lightbox_close {
    position: absolute;
    top: -40px;
    right: -5px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.pcg_cl_lightbox_close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.pcg_cl_lightbox_caption {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
    text-align: center;
}

/* Pointer cursor on clickable images */
.pcg_cl_card_back_image[onclick],
.pcg_cl_tc_imgbox[onclick] {
    cursor: zoom-in;
}
/* =============================================
   YEAR PICKER BOTTOM SHEET - Light theme
   ============================================= */
.pcg_cl_yp_overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 9999;
    transition: background 0.25s ease;
}
.pcg_cl_yp_overlay.active {
    background: rgba(0, 0, 0, 0.4);
}

.pcg_cl_yp_sheet {
    position: fixed;
    bottom: -100%;
    left: 0; right: 0;
    background: #ffffff;
    border-radius: 16px 16px 0 0;
    padding: 12px 16px 24px;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
    transition: bottom 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.pcg_cl_yp_overlay.active .pcg_cl_yp_sheet {
    bottom: 0;
}

.pcg_cl_yp_handle {
    width: 36px;
    height: 4px;
    background: #d1d5db;
    border-radius: 2px;
    margin: 0 auto 14px;
}

.pcg_cl_yp_header {
    text-align: center;
    margin-bottom: 16px;
}
.pcg_cl_yp_title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #3f6f8a;
    letter-spacing: 0.5px;
    font-family: monospace;
}
.pcg_cl_yp_subtitle {
    display: block;
    font-size: 13px;
    color: #6b7280;
    margin-top: 2px;
}

.pcg_cl_yp_rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pcg_cl_yp_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fbfbf9;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    padding: 12px 14px;
    cursor: pointer;
    width: 100%;
    transition: border-color 0.15s, box-shadow 0.15s;
    text-align: left;
    font-family: inherit;
    font-size: inherit;
}
.pcg_cl_yp_row:hover,
.pcg_cl_yp_row:active {
    border-color: #3f6f8a;
    box-shadow: 0 2px 8px rgba(63, 111, 138, 0.15);
}

.pcg_cl_yp_row_left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.pcg_cl_yp_thumb {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 8px;
    background: #f3f4f6;
    flex-shrink: 0;
}
.pcg_cl_yp_thumb_empty {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: #f3f4f6;
    border-radius: 8px;
    flex-shrink: 0;
}

.pcg_cl_yp_row_info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.pcg_cl_yp_year {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
}
.pcg_cl_yp_name {
    font-size: 13px;
    color: #374151;
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}
.pcg_cl_yp_checklist {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.pcg_cl_yp_row_right {
    flex-shrink: 0;
    margin-left: 8px;
}

.pcg_cl_yp_badge {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
}
.pcg_cl_yp_badge_owned {
    color: #166534;
    background: #dcfce7;
    border: 1px solid #a7f3d0;
}
.pcg_cl_yp_badge_missing {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.pcg_cl_yp_cancel {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 12px;
    background: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    color: #6b7280;
    font-size: 14px;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
}
.pcg_cl_yp_cancel:hover {
    border-color: #d1d5db;
    color: #374151;
}

@media (min-width: 640px) {
    .pcg_cl_yp_sheet {
        max-width: 420px;
        left: 0;
        right: 0;
        margin: 0 auto;
        border-radius: 16px 16px 0 0;
    }
    .pcg_cl_yp_name {
        max-width: 240px;
    }
    .pcg_cl_yp_checklist {
        max-width: 240px;
    }
}
/* Add Car Notification Drawer — 20260226 */
#pcg_cl_add_notif_20260226 {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%) translateY(-120%);
    z-index: 10001;
    background: #ffffff;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 12px 20px;
    min-width: 260px;
    max-width: 360px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
#pcg_cl_add_notif_20260226.pcg_cl_notif_visible_20260226 {
    transform: translateX(-50%) translateY(0);
}
.pcg_cl_notif_content_20260226 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pcg_cl_notif_icon_20260226 {
    width: 28px;
    height: 28px;
    background: #22c55e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.pcg_cl_notif_text_20260226 {
    font-size: 13px;
    color: #1a1a2e;
    line-height: 1.3;
}
.pcg_cl_notif_text_20260226 strong {
    display: block;
    font-size: 14px;
}
.pcg_cl_notif_points_20260226 {
    color: #22c55e;
    font-weight: 700;
    font-size: 12px;
    margin-left: 4px;
}

/* GOT IT button spinner — 20260226 */
.pcg_cl_btn_spinner_20260226 {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: pcg_cl_spin_20260226 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 4px;
}
@keyframes pcg_cl_spin_20260226 {
    to { transform: rotate(360deg); }
}
.pcg_cl_gotit_btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}