/* TCG Home Hub — secciones comerciales por juego */
.page-tienda.store-marketplace .store-main {
    background: #f6f7fb;
}

.tcg-hub-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.tcg-hub-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.tcg-hub-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.tcg-hub-section-title {
    margin: 0 0 0.35rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tcg-hub-section-title i {
    color: var(--store-tcg, #7c3aed);
    font-size: 1rem;
}

.tcg-hub-section-sub {
    margin: 0;
    font-size: 0.85rem;
    color: #6b7280;
}

.tcg-hub-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 576px) {
    .tcg-hub-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .tcg-hub-grid--4 { grid-template-columns: repeat(4, 1fr); }
    .tcg-hub-grid--merch { grid-template-columns: repeat(4, 1fr); }
}

.tcg-hub-card {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1.15rem;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    min-height: 100%;
}

.tcg-hub-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
    border-color: rgba(99, 102, 241, 0.25);
    color: inherit;
}

.tcg-hub-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
}

.tcg-hub-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--store-tcg-soft, rgba(124, 58, 237, 0.12));
    color: var(--store-tcg, #7c3aed);
    font-size: 1rem;
    flex-shrink: 0;
}

.tcg-hub-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: #f3f4f6;
    color: #4b5563;
}

.tcg-hub-badge--hot {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

.tcg-hub-badge--new {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}

.tcg-hub-badge--trend-up {
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
}

.tcg-hub-badge--trend-down {
    background: rgba(239, 68, 68, 0.12);
    color: #b91c1c;
}

.tcg-hub-card h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
}

.tcg-hub-card p {
    margin: 0;
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.45;
}

.tcg-hub-card-meta {
    margin-top: auto;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--store-tcg, #7c3aed);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.tcg-hub-card-meta .fa-arrow-trend-up { color: #16a34a; }
.tcg-hub-card-meta .fa-arrow-trend-down { color: #dc2626; }

.tcg-hub-skeleton .tcg-hub-section {
    pointer-events: none;
}

/* Merchandising — tienda premium */
.tcg-merch-section {
    background: #f6f7fb;
    border: none;
    box-shadow: none;
    padding: 0;
}

.tcg-merch-section .tcg-hub-section-head {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 0.85rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.tcg-merch-head {
    align-items: center;
}

.tcg-merch-see-all {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--store-tcg, #6d28d9);
    text-decoration: none;
    white-space: nowrap;
}

.tcg-merch-see-all:hover {
    text-decoration: underline;
    color: var(--store-tcg, #6d28d9);
}

.tcg-merch-filters {
    display: flex;
    gap: 0.45rem;
    overflow-x: auto;
    padding: 0.25rem 0 0.85rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.tcg-merch-filters::-webkit-scrollbar { display: none; }

.tcg-merch-filter {
    flex-shrink: 0;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #4b5563;
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.tcg-merch-filter:hover {
    border-color: rgba(109, 40, 217, 0.35);
    color: var(--store-tcg, #6d28d9);
}

.tcg-merch-filter.is-active {
    background: var(--store-tcg, #6d28d9);
    border-color: var(--store-tcg, #6d28d9);
    color: #fff;
}

.tcg-merch-carousel-wrap {
    position: relative;
}

.tcg-merch-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(168px, 200px);
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.25rem 0.35rem 0.85rem;
    scrollbar-width: thin;
}

@media (min-width: 992px) {
    .tcg-merch-track {
        grid-auto-columns: minmax(180px, 1fr);
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-auto-flow: row;
        overflow: visible;
    }
    .tcg-merch-nav { display: none; }
}

.tcg-merch-nav {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
    z-index: 2;
    cursor: pointer;
}

.tcg-merch-nav--prev { left: -6px; }
.tcg-merch-nav--next { right: -6px; }

.tcg-merch-card {
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.tcg-merch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.tcg-merch-card.is-out {
    opacity: 0.92;
}

.tcg-merch-card-img {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}

.tcg-merch-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.65rem;
    transition: transform 0.3s ease;
}

.tcg-merch-card:hover .tcg-merch-card-img img {
    transform: scale(1.05);
}

.tcg-merch-card-fallback {
    display: none;
    place-items: center;
    width: 100%;
    height: 100%;
    color: #c4b5fd;
    font-size: 2rem;
    background: #faf5ff;
}

.tcg-merch-card-img.is-fallback img { display: none; }
.tcg-merch-card-img.is-fallback .tcg-merch-card-fallback { display: grid; }
.tcg-merch-card-img:not(:has(img)) .tcg-merch-card-fallback { display: grid; }

.tcg-merch-badge {
    position: absolute;
    top: 0.5rem;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    z-index: 2;
}

.tcg-merch-badge--top {
    left: 0.5rem;
    background: #fbbf24;
    color: #78350f;
}

.tcg-merch-badge--stock {
    right: 0.5rem;
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.tcg-merch-badge--out {
    right: 0.5rem;
    background: #f3f4f6;
    color: #6b7280;
}

.tcg-merch-out-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.72);
    display: grid;
    place-items: center;
    z-index: 3;
}

.tcg-merch-out-overlay span {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
}

.tcg-merch-card-body {
    padding: 0.7rem 0.8rem 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.tcg-merch-cat {
    font-size: 0.68rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tcg-merch-title {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
    color: #111827;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tcg-merch-price {
    margin: 0.15rem 0 0.45rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--store-tcg, #6d28d9);
}

.tcg-merch-actions {
    display: flex;
    gap: 0.4rem;
    margin-top: auto;
}

.tcg-merch-actions .btn-primary {
    flex: 1;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 10px;
    background: var(--store-tcg, #6d28d9);
    border-color: var(--store-tcg, #6d28d9);
}

.tcg-merch-actions .btn-outline-primary {
    width: 36px;
    padding: 0;
    border-radius: 10px;
    color: var(--store-tcg, #6d28d9);
    border-color: rgba(109, 40, 217, 0.35);
}

.tcg-merch-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.5rem;
    padding: 0.85rem 1rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #6b7280;
}

.tcg-merch-trust i {
    color: var(--store-tcg, #6d28d9);
    margin-right: 0.3rem;
}

.tcg-merch-skel-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(160px, 200px);
    gap: 0.85rem;
    overflow: hidden;
}

.tcg-merch-skel-card {
    height: 260px;
    border-radius: 18px;
    background: linear-gradient(90deg, #eceef3 25%, #f8f9fb 50%, #eceef3 75%);
    background-size: 200% 100%;
    animation: tcgHubShimmer 1.2s ease-in-out infinite;
}

/* Legacy merch cards (compat) */
.tcg-hub-merch-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    border: 1px dashed #d1d5db;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    text-align: left;
}

.tcg-hub-merch-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
    border-color: rgba(99, 102, 241, 0.35);
}

.tcg-hub-merch-img {
    position: relative;
    aspect-ratio: 4 / 5;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tcg-hub-merch-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.75rem;
}

.tcg-hub-merch-ph {
    color: #9ca3af;
    font-size: 2rem;
}

.tcg-hub-merch-stock {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    background: #2563eb;
    color: #fff;
}

.tcg-hub-merch-stock--out {
    background: #6b7280;
}

.tcg-hub-merch-badge {
    position: absolute;
    top: 0.55rem;
    left: 0.55rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(234, 179, 8, 0.92);
    color: #713f12;
}

.tcg-hub-merch-body {
    padding: 0.85rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.tcg-hub-merch-body h3 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
    color: #2563eb;
}

.tcg-hub-merch-cat {
    margin: 0;
    font-size: 0.75rem;
    font-style: italic;
    color: #60a5fa;
}

.tcg-hub-merch-price {
    margin: 0.35rem 0 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #111827;
}

.tcg-hub-skel-card {
    height: 140px;
    border-radius: 18px;
    background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
    background-size: 200% 100%;
    animation: tcgHubShimmer 1.2s ease-in-out infinite;
}

@keyframes tcgHubShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.store-collection-teaser {
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    background: linear-gradient(135deg, var(--store-tcg-soft) 0%, #ffffff 72%);
    border: 1px solid #e5e7eb;
    color: #111827;
}

.store-collection-teaser h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
    color: #111827;
}

.store-collection-teaser p {
    margin: 0;
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.45;
}

.store-collection-teaser h3 i {
    color: var(--store-tcg, #7c3aed);
}

.store-collection-teaser .btn {
    border-radius: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.tcg-hub-tcg-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--store-tcg, #7c3aed);
    margin-bottom: 0.15rem;
}

/* ——— Mercado del TCG — dashboard rankings ——— */
.tcg-market-section {
    animation: tcgMarketFadeIn 0.45s ease both;
}

.tcg-market-section--loading {
    animation: none;
}

@keyframes tcgMarketFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tcg-market-section-head {
    align-items: center;
}

.tcg-market-tcg-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: var(--store-tcg-soft, rgba(124, 58, 237, 0.12));
    border: 1px solid rgba(124, 58, 237, 0.2);
    margin-bottom: 0.5rem;
}

.tcg-market-stats-btn {
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.78rem;
    white-space: nowrap;
    border-color: rgba(109, 40, 217, 0.35);
    color: var(--store-tcg, #6d28d9);
}

.tcg-market-stats-btn:hover {
    background: var(--store-tcg, #6d28d9);
    border-color: var(--store-tcg, #6d28d9);
    color: #fff;
}

.tcg-market-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .tcg-market-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
    .tcg-market-grid { grid-template-columns: repeat(4, 1fr); }
}

.tcg-market-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px;
    min-height: 100%;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.tcg-market-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.tcg-market-card-head {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.tcg-market-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: rgba(124, 58, 237, 0.12);
    color: #7c3aed;
    font-size: 1rem;
}

.tcg-market-card-titles {
    flex: 1;
    min-width: 0;
}

.tcg-market-card-titles h3 {
    margin: 0 0 0.35rem;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.3;
    color: #111827;
}

.tcg-market-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: #f3f4f6;
    color: #6b7280;
}

.tcg-market-badge--hot {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

.tcg-market-badge--trend {
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
}

.tcg-market-rank-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.tcg-market-rank-head {
    display: grid;
    grid-template-columns: 1.1rem 2.35rem minmax(0, 1fr) auto auto;
    gap: 0.75rem;
    padding: 0 0.55rem 0.35rem;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #9ca3af;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 0.35rem;
}

.tcg-market-rank-head--trend {
    grid-template-columns: 1.1rem 2.35rem minmax(0, 1fr) auto auto auto;
}

.tcg-market-rank-head span:nth-child(4),
.tcg-market-rank-head span:nth-child(5) {
    text-align: right;
}

.tcg-market-rank-head span:last-child {
    text-align: right;
    min-width: 4.5rem;
}

.tcg-market-rank-row {
    display: grid;
    grid-template-columns: 1.1rem 2.35rem minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.45rem 0.55rem;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    font: inherit;
    cursor: pointer;
}

button.tcg-market-rank-row {
    appearance: none;
}

.tcg-market-rank-row--trend {
    grid-template-columns: 1.1rem 2.35rem minmax(0, 1fr) auto auto auto;
}

.tcg-market-rank-row:hover {
    background: #f9fafb;
    color: inherit;
}

.tcg-market-rank-pos {
    font-size: 0.72rem;
    font-weight: 800;
    color: #9ca3af;
    text-align: center;
}

.tcg-market-rank-thumb {
    width: 32px;
    height: 44px;
    border-radius: 6px;
    overflow: hidden;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tcg-market-rank-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tcg-market-rank-thumb img.is-hidden {
    display: none;
}

.tcg-market-rank-ph {
    color: #c4b5fd;
    font-size: 0.85rem;
}

.tcg-market-rank-name-col {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.tcg-market-rank-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: #374151;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tcg-market-rank-set {
    font-size: 0.65rem;
    font-weight: 600;
    color: #9ca3af;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tcg-market-rank-rarity {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    font-size: 0.64rem;
    font-weight: 700;
    color: #7c3aed;
    line-height: 1.2;
}

.tcg-market-rank-rarity img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    flex-shrink: 0;
}

[data-theme="dark"] .tcg-market-rank-set {
    color: #94a3b8;
}

.tcg-market-rank-value {
    font-size: 0.72rem;
    font-weight: 800;
    white-space: nowrap;
    text-align: right;
}

.tcg-market-rank-value--price { color: #111827; }
.tcg-market-rank-value--up { color: #16a34a; }
.tcg-market-rank-value--down { color: #dc2626; }
.tcg-market-rank-value--searches { color: #7c3aed; }

.tcg-market-rank-store {
    font-size: 0.65rem;
    font-weight: 600;
    color: #6b7280;
    white-space: nowrap;
    text-align: right;
    max-width: 5.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tcg-market-rank-store i {
    color: #a78bfa;
    margin-right: 0.15rem;
    font-size: 0.58rem;
}

.tcg-market-card-foot {
    margin-top: 0.85rem;
    padding-top: 0.65rem;
    border-top: 1px solid #f1f5f9;
}

.tcg-market-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--store-tcg, #6d28d9);
    text-decoration: none;
}

.tcg-market-card-link:hover {
    text-decoration: underline;
    color: var(--store-tcg, #6d28d9);
}

.tcg-market-card-link i {
    font-size: 0.65rem;
}

/* Skeleton mercado */
.tcg-market-card--skel {
    pointer-events: none;
}

.tcg-market-skel-head,
.tcg-market-skel-foot,
.tcg-market-skel-badge,
.tcg-market-skel-title,
.tcg-market-skel-sub,
.tcg-market-skel-btn,
.tcg-market-skel-line {
    border-radius: 8px;
    background: linear-gradient(90deg, #eceef3 25%, #f8f9fb 50%, #eceef3 75%);
    background-size: 200% 100%;
    animation: tcgHubShimmer 1.2s ease-in-out infinite;
}

.tcg-market-skel-head { height: 40px; margin-bottom: 1rem; }
.tcg-market-skel-foot { height: 16px; width: 55%; margin-top: 0.85rem; }
.tcg-market-skel-badge { height: 22px; width: 90px; margin-bottom: 0.5rem; }
.tcg-market-skel-title { height: 24px; width: 70%; margin-bottom: 0.4rem; }
.tcg-market-skel-sub { height: 14px; width: 85%; }
.tcg-market-skel-btn { height: 34px; width: 180px; border-radius: 999px; }
.tcg-market-skel-line { height: 36px; margin-bottom: 0.35rem; }

.tcg-hub-pending {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tcg-hub-pending-block {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 1.25rem;
}

.tcg-hub-pending-block .tcg-hub-skel-card {
    height: 140px;
}
