.pt-wrapper .vp-main {
    padding-bottom: 80px !important;
    min-height: 60vh;
}

@media (max-width: 768px) {
    .pt-wrapper .vp-main {
        padding-bottom: 48px !important;
    }
}

/* ════ RANKING ALERT ════ */
.pt-ranking-alert {
    background: #FFFDF0;
    border: 1px solid rgba(232, 186, 0, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
}

.pt-ranking-alert .alert-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.pt-ranking-alert i {
    color: #E8BA00;
    font-size: 20px;
    margin-top: 4px;
}

.pt-ranking-alert h5 {
    color: #111827;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
}

.pt-ranking-alert p {
    color: #4B5563;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* ════ SIDEBAR HEADER ════ */
.pt-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pt-token-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(183.06deg, #FFFFFF -10.89%, #E8BA00 97.46%);
    border: 1px solid rgba(107, 114, 128, 0.18);
    color: #4a3500;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.pt-unlocked-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e8f5ea;
    color: #007122;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 113, 34, 0.2);
}

/* ════ CARDS LAYOUT ════ */
.pt-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.pt-card {
    display: flex;
    flex-direction: row-reverse;
    background: #FFFFFF;
    border: 1px solid rgba(107, 114, 128, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
    min-height: 220px;
    transition: transform 0.2s, box-shadow 0.2s;
}

html[dir="ltr"] .pt-card {
    flex-direction: row;
}

.pt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.pt-photo {
    width: 220px;
    max-height: 260px;
    flex-shrink: 0;
    background: #F9FAFB;
    overflow: hidden;
    border-left: 1px solid rgba(107, 114, 128, 0.05);
}

html[dir="ltr"] .pt-photo {
    border-left: none;
    border-right: 1px solid rgba(107, 114, 128, 0.05);
}

.pt-photo img {
    width: 100%;
    height: 100%;
    max-height: 260px;
    object-fit: cover;
    display: block;
}

.pt-card-body {
    flex: 1;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    text-align: right;
}

html[dir="ltr"] .pt-card-body {
    text-align: left;
}

.pt-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.pt-name {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #111827;
    margin: 0;
}

.pt-verified {
    width: 22px;
    height: 22px;
    color: #007122;
    flex-shrink: 0;
}

.pt-rating {
    color: #E8BA00;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.pt-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 0.9rem;
    margin-top: 4px;
    flex-wrap: wrap;
}

.pt-meta-row i {
    color: #007122;
}

.pt-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 0.88rem;
    margin-top: 6px;
}

.pt-location-icon {
    width: 14px;
    height: 14px;
    color: #007122;
}

.pt-description {
    color: #555;
    font-size: 0.9rem;
    margin-top: 10px;
    line-height: 1.5;
}

.pt-card-footer {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    justify-content: flex-start;
}

html[dir="ltr"] .pt-card-footer {
    justify-content: flex-end;
}

.pt-btn-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 44px;
    padding: 0 20px;
    background: linear-gradient(180deg, #FDE68A 0%, #E8BA00 100%);
    color: #111827;
    border: none;
    border-radius: 8px;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s;
}

.pt-btn-details:hover {
    opacity: 0.9;
    color: #111827;
    text-decoration: none;
}

.pt-empty-state {
    width: 100%;
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 16px;
}

/* ════ RESPONSIVE ════ */
@media (max-width: 1200px) {
    .pt-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pt-card {
        flex-direction: column !important;
    }

    .pt-photo {
        width: 100%;
        height: 220px;
        max-height: 260px;
        border: none !important;
        border-bottom: 1px solid rgba(107, 114, 128, 0.05) !important;
    }

    .pt-card-body {
        padding: 20px;
    }

    .pt-card-footer {
        width: 100%;
    }

    .pt-btn-details {
        width: 100%;
    }
}
