.pd-seller-char-card {
    min-height: 420px !important;
}

.pd-seller-char-image-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 8px;
    background: var(--bg-secondary);
    padding: 20px;
    height: 120px;
}

.pd-seller-char-main-image {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.2s ease;
}

.pd-seller-char-main-image:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pd-seller-char-main-image img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
}

.pd-seller-char-level {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-top: 5px;
}

.pd-seller-char-info {
    text-align: center;
    margin-bottom: 16px;
    padding: 0 16px;
}

.pd-seller-char-def-str {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}


.pd-seller-char-stats {
    padding: 0 16px;
    flex: 1;
}

.pd-seller-char-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 8px;
    align-items: center;
    padding: 6px 8px;
    transition: all 0.2s ease;
}

.pd-seller-char-stat-row:last-child {
    border: 0px;
}


.pd-seller-char-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}

.pd-seller-char-stat-value {
    font-size: 12px;
    color: var(--text-primary);
    font-weight: 700;
    text-align: right;
}


.pd-container {
    padding: 20px;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 24px;
    /* max-width: 100%; */
    max-width: 1600px;
    margin: 0 auto;
}

.pd-main-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.pd-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 120px;
    height: fit-content;
    max-width: 100%;
    overflow-x: hidden;
}

.pd-sidebar-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.pd-sidebar-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.pd-sidebar-card-header {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 16px;
}

.pd-sidebar-item-icon {
    width: 64px;
    height: 64px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.pd-sidebar-item-icon:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pd-sidebar-item-icon img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
}

.pd-sidebar-item-info h3 {
    color: var(--text-primary);
    margin: 0 0 8px 0;
    font-size: 17px;
    line-height: 1.3;
}

.pd-sidebar-item-info span {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.pd-sidebar-card-body {
    padding: 20px;
}

.pd-stats-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.pd-stats-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.pd-stats-list li strong {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
}

.pd-stats-list li span {
    font-size: 14px;
}

.pd-features-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pd-features-card h6 {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    color: var(--text-primary);
    margin: 0;
    padding: 20px;
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
}

.pd-features-list {
    list-style: none;
    padding: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
}

.pd-features-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.pd-features-list li:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
}

.pd-features-list li strong {
    color: var(--text-secondary);
    font-weight: 600;
}

.pd-features-list li span {
    color: var(--text-primary);
}

.pd-content {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: visible;
    height: fit-content;
    max-width: 100%;
    min-width: 0;
}

.pd-header {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    padding: 32px;
    border-bottom: 1px solid var(--border-color);
    border-radius: 16px 16px 0 0;
}

.pd-main-info {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: start;
}

.pd-title h2 {
    color: var(--text-primary);
    margin: 0 0 16px 0;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.pd-left-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pd-price-main {
    text-align: left;
}

.pd-price-old {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
}

.pd-discount-badge {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pd-pulse-discount 2s infinite;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
}

@keyframes pd-pulse-discount {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pd-price-current {
    color: var(--text-primary);
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pd-price-current sup {
    font-size: 17px;
    color: var(--text-secondary);
}

.pd-offer-and-actions-section {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pd-offer-section {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
    border: 2px dashed #ef4444;
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.pd-offer-section:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.1));
    transform: translateY(-2px);
}

.pd-offer-icon {
    width: 20px;
    height: 20px;
    color: #ef4444;
}

.pd-offer-content span {
    display: block;
    color: #ef4444;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 4px 0;
}

.pd-offer-content strong {
    color: #ef4444;
    font-size: 17px;
    font-weight: 800;
}

.pd-action-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.pd-btn-primary,
.pd-btn-secondary,
.pd-btn-offer,
.pd-btn-trade {
    padding: 12px 24px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white !important;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pd-btn-primary i,
.pd-btn-secondary i,
.pd-btn-offer i,
.pd-btn-trade i {
    font-size: 16px;
}

.pd-btn-primary::after,
.pd-btn-secondary::after,
.pd-btn-offer::after,
.pd-btn-trade::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: 0.5s;
}

.pd-btn-primary:hover::after,
.pd-btn-secondary:hover::after,
.pd-btn-offer:hover::after,
.pd-btn-trade:hover::after {
    left: 100%;
}

.pd-btn-primary:hover,
.pd-btn-secondary:hover,
.pd-btn-offer:hover,
.pd-btn-trade:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Soru Sor / Primary */
.pd-btn-primary {
    background: linear-gradient(135deg, #4b5563, #374151);
    box-shadow: 0 4px 12px rgba(55, 65, 81, 0.3);
}

.pd-btn-primary:hover {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

/* Sepete Ekle / Success */
.pd-btn-secondary {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.pd-btn-secondary:hover {
    background: linear-gradient(135deg, #34d399, #10b981);
}

/* Teklif Ver / Warning */
.pd-btn-offer {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.pd-btn-offer:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

/* Takas Yap / Trade - Premium Indigo Purple */
.pd-btn-trade {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.pd-btn-trade:hover {
    background: linear-gradient(135deg, #818cf8, #a855f7);
}

/* Mobile Fixed Bottom Bar */
.pd-mobile-fixed-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(20, 20, 30, 0.9);
    backdrop-filter: blur(15px);
    padding: 12px 16px;
    z-index: 10000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}

.pd-mobile-fixed-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.pd-mobile-fixed-actions button {
    padding: 10px 4px !important;
    font-size: 11px !important;
    white-space: normal !important;
    line-height: 1.2 !important;
    height: auto !important;
    min-height: 44px;
}

.pd-mobile-fixed-actions i {
    font-size: 14px !important;
    margin-bottom: 2px;
}

@media (max-width: 768px) {
    .pd-mobile-fixed-footer {
        display: block;
    }

    .pd-action-buttons .pd-btn-secondary,
    .pd-action-buttons .pd-btn-trade,
    .pd-action-buttons .pd-btn-primary {
        display: none !important;
    }

    .pd-action-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        gap: 8px;
    }

    .pd-btn-primary,
    .pd-btn-offer {
        padding: 10px 12px;
        font-size: 13px;
        width: 100%;
    }

    .pd-container {
        padding-bottom: 100px;
    }

    .pd-seller-profile {
        padding: 15px;
    }

    .pd-seller-right {
        padding-left: 15px;
        min-width: 60px;
    }

    .pd-stars-vertical {
        gap: 2px;
        font-size: 11px;
    }
}

.pd-sold-status {
    background: linear-gradient(135deg, #6b7280, #9ca3af);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pd-body {
    padding: 32px;
}

.pd-seller-section {
    position: relative;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.pd-seller-section:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

/* Şeffaf arka plan görseli */
.pd-seller-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../../images/seller-section-bg.jpg") center/cover no-repeat;
    opacity: 0.02; /* Gündüz modunda çok daha şeffaf */
    z-index: 0;
}

[data-theme="dark"] .pd-seller-section::before {
    opacity: 0.2; /* Gece modunda belirgin */
}

/* İçerik üstte kalsın */
.pd-seller-section>* {
    position: relative;
    z-index: 1;
}

.pd-seller-profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    gap: 15px;
    text-decoration: none !important;
}

.pd-seller-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.pd-seller-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 70px;
}

.pd-stars-vertical {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #fbbf24;
    font-size: 13px;
}

.pd-stars-vertical i {
    filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.4));
}

.pd-rating-badge {
    margin-top: 10px;
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.pd-seller-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-color);
    box-shadow: var(--shadow-md);
    position: relative;
}

.pd-seller-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes pd-pulse-online {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.pd-seller-details {
    flex: 1;
}

.pd-seller-details h3 {
    color: var(--text-primary);
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 700;
}

.pd-seller-badges {
    /* display: flex; */
    gap: 4px;
    margin-bottom: 6px;
}

.pd-seller-badge {
    width: 18px;
    height: 18px;
    color: var(--success-color);
}

.pd-seller-badge.pd-premium {
    color: #fbbf24;
}

.pd-seller-badge.pd-fast {
    color: var(--info-color);
}

.pd-seller-stats {
    color: var(--text-secondary);
    margin: 0;
    font-size: 14px;
}

.pd-seller-stats strong {
    color: var(--text-primary);
}

.pd-seller-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.pd-stars {
    color: #fbbf24;
    font-size: 14px;
}

.pd-rating-text {
    color: var(--text-secondary);
    font-size: 12px;
}

.pd-seller-status {
    color: var(--text-secondary);
    font-size: 12px;
    margin-top: 4px;
}

.pd-expires-info {
    color: var(--warning-color);
    margin: 16px 0;
    padding: 16px 20px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--warning-color);
    font-weight: 500;
}

.pd-set-content {
    margin-bottom: 32px;
}

.pd-set-title {
    color: var(--text-primary);
    margin: 0 0 20px 0;
    font-size: 15px;
    padding: 8px 10px;
    background: var(--bg-secondary);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.pd-add-favorite-btn {
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid;
    cursor: pointer;
}

.pd-add-favorite-btn {
    background: transparent;
    color: var(--success-color);
    border-color: var(--success-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pd-add-favorite-btn:hover {
    background: var(--success-color);
    color: white;
    transform: translateY(-2px);
}

.pd-sidebar-card.pd-hidden {
    display: none;
}

.pd-seller-other-items {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    z-index: 1;
    max-width: 100%;
    min-width: 0;
}


.pd-seller-other-header {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    color: var(--text-primary);
    margin: 0;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;

}

.pd-seller-items-slider {
    padding: 32px;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.pd-seller-swiper {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    overflow: hidden;
    max-width: 100%;
}

.swiper-wrapper {
    width: 100%;
    height: auto;
}

.swiper-slide {
    width: auto;
    height: auto;
    box-sizing: border-box;
}

.pd-seller-item-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: auto;
    min-height: 420px;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-md);
}

.pd-seller-item-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}



.pd-seller-item-image-container {
    position: relative;
    padding: 20px;
    text-align: center;
    background: var(--bg-secondary);
    flex: 0 0 auto;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.pd-seller-item-main-image {
    width: 64px;
    height: 64px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.2s ease;
}

.pd-seller-item-main-image img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
}

.pd-seller-item-card:hover .pd-seller-item-main-image {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pd-seller-item-title {
    padding: 16px 16px 8px;
    flex: 0 0 auto;
    margin-top: 5px;
}

.pd-seller-item-name {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
}

.pd-seller-item-server {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.pd-seller-server-name {
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
}

.pd-seller-item-stats {
    padding: 0 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pd-seller-stats-visible {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.pd-seller-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    line-height: 1.2;
}

.pd-seller-stat-label {
    font-weight: 600;
    flex: 1;
    font-size: 11px;
}

.pd-seller-stat-value {
    font-weight: 600;
    text-align: right;
}

.pd-seller-set-info {
    padding: 0 16px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pd-seller-set-images {
    display: flex;
    gap: 4px;
    flex: 1;
}

.pd-seller-set-image {
    width: 24px;
    height: 24px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.pd-seller-set-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-seller-set-count {
    background: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.pd-seller-item-footer {
    padding: 16px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.pd-seller-item-price {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.pd-seller-item-price-currency {
    font-size: 12px;
    color: var(--text-secondary);
    margin-left: 2px;
}

.pd-seller-action-btn {
    background: linear-gradient(135deg, var(--primary-color), #e55a2e);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.3);
}

.pd-seller-action-btn:hover {
    background: linear-gradient(135deg, #e55a2e, var(--primary-color));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.pd-sorular-section {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.pd-sorular-header {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    color: var(--text-primary);
    margin: 0;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pd-sorular-body {
    padding: 15px;
}

.pd-sorular-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pd-soru-item {
    background: transparent;
    border-bottom: 1px solid;
    padding: 10px 0px 0px 10px;
    margin: 0;
    transition: all 0.3s ease;
    overflow: visible;
    position: relative;
    border-color: var(--border-color);
}

.pd-soru-item:last-child {
    border: 0px;
}

.pd-soru-container {
    padding: 0;
    border: none;
    background: transparent;
    margin-bottom: 16px;
}

.pd-cevap-container {
    padding: 0;
    border: none;
    background: transparent;
    border-top: none;
    margin-left: 20px;
    position: relative;
    margin-bottom: 15px;
}

.pd-cevap-container::before {
    position: absolute;
    left: -10px;
    top: 16px;
    width: 2px;
    height: calc(100% - 16px);
    background: linear-gradient(180deg, var(--success-color), rgba(16, 185, 129, 0.2));
    border-radius: 1px;
}

.pd-soru-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.pd-soru-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--info-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.pd-cevap-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.pd-cevap-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.pd-soru-meta {
    flex: 1;
}

.pd-soru-kullanici {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
    margin-bottom: 4px;
}

.pd-cevap-kullanici {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
    margin-bottom: 4px;
}

.pd-soru-tarih {
    color: var(--text-secondary);
    font-size: 12px;
}

.pd-cevap-tarih {
    color: var(--text-secondary);
    font-size: 12px;
}

.pd-soru-metni {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 15px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    position: relative;
    margin-left: 48px;
    margin-top: 8px;
    padding-left: 16px;
    border-left: 2px solid var(--info-color);
}

.pd-soru-metni::before {
    color: var(--info-color);
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    left: -8px;
    top: -4px;
}

.pd-soru-metni::after {
    color: var(--info-color);
    font-size: 20px;
    font-weight: bold;
    margin-left: 4px;
}

.pd-cevap-metni {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 15px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    margin-left: 48px;
    margin-top: 12px;
    padding-left: 16px;
    border-left: 2px solid var(--success-color);
    position: relative;
}

.pd-cevap-metni::before {
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    position: absolute;
    left: -5px;
    top: 8px;
}

.pd-sorular-collapsed .pd-soru-item:nth-child(n+4) {
    display: none;
}

.pd-sorular-toggle {
    text-align: center;
    padding: 24px 0 0;
    border-top: 1px solid var(--border-color);
    margin-top: 32px;
}

.pd-sorular-toggle-btn {
    background: linear-gradient(135deg, var(--primary-color), #e55a2e);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.pd-sorular-toggle-btn:hover {
    background: linear-gradient(135deg, #e55a2e, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.pd-sorular-toggle-btn i {
    transition: transform 0.3s ease;
}

.pd-sorular-expanded .pd-sorular-toggle-btn i {
    transform: rotate(180deg);
}

@media (max-width: 1024px) {
    .pd-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 16px;
        max-width: 100vw;
        overflow-x: visible;
    }

    .pd-sidebar {
        order: 2;
        position: static;
        max-width: 100%;
        overflow-x: visible;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .pd-seller-section {
        order: -1;
        margin-bottom: 0;
    }

    .pd-main-content {
        order: 2;
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
        overflow-x: visible;
    }

    .pd-content {
        order: 3;
    }

    .pd-seller-other-items {
        order: 4;
    }

    .pd-sorular-section {
        order: 3;
    }

    .pd-seller-section {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }


    .pd-main-info {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pd-price-main {
        text-align: left;
    }

    .pd-offer-and-actions-section {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .pd-action-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .pd-header,
    .pd-body {
        padding: 20px;
    }

    .pd-price-current {
        font-size: 28px;
    }

    .pd-seller-items-slider {
        padding: 20px;
        overflow: hidden;
    }

    .pd-seller-other-items h3 {
        padding: 20px;
        font-size: 16px;
    }

    .pd-seller-other-items {
        margin: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .pd-seller-swiper {
        overflow: hidden;
        width: 100%;
    }

    .swiper-slide {
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .pd-seller-stat-label {
        font-weight: 600;
        flex: 1;
        font-size: 10px;
    }

    .pd-container {
        padding: 8px;
        width: 100%;
        max-width: 100vw;
        overflow-x: visible;
    }

    .pd-sidebar-card-header {
        padding: 16px;
    }

    .pd-sidebar-card-body {
        padding: 16px;
    }

    .pd-offer-and-actions-section {
        gap: 12px;
    }

    .pd-action-buttons {
        gap: 8px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        align-content: center;
    }

    .pd-seller-items-slider {
        padding: 16px;
    }

    .pd-seller-other-items h3 {
        padding: 16px;
        font-size: 14px;
    }

    .swiper-slide {
        max-width: calc(50% - 3px);
    }

    .pd-seller-item-card {
        min-height: 420px;
    }

    .pd-seller-char-card {
        min-height: 420px !important;
    }

    .pd-seller-char-main-image {
        width: 56px;
        height: 56px;
    }

    .pd-seller-char-main-image img {
        width: 42px;
        height: 42px;
    }

    .pd-seller-char-def-str {
        font-size: 11px;
    }

    .pd-seller-char-stat-row {
        padding: 4px 6px;
        gap: 6px;
    }

    .pd-seller-char-stat-label {
        font-size: 10px;
    }

    .pd-seller-char-stat-value {
        font-size: 11px;
    }

    .pd-seller-item-card {
        min-height: 420px;
    }

    .pd-seller-item-name {
        font-size: 13px;
        min-height: 32px;
    }

    .pd-seller-item-main-image {
        width: 56px;
        height: 56px;
    }

    .pd-seller-item-main-image img {
        width: 42px;
        height: 42px;
    }

    .pd-header {
        padding: 16px;
    }

    .pd-body {
        padding: 16px;
    }

    .pd-soru-metni {
        margin-left: 24px;
        font-size: 14px;
        padding-left: 12px;
    }

    .pd-cevap-metni {
        margin-left: 24px;
        font-size: 14px;
        padding-left: 12px;
    }

    .pd-cevap-container {
        margin-left: 16px;
    }

    .pd-sorular-toggle {
        padding: 16px 0 0;
        margin-top: 24px;
    }

    .pd-sorular-toggle-btn {
        padding: 10px 24px;
        font-size: 13px;
    }

    .pd-soru-container {
        padding: 16px;
    }

    .pd-cevap-container {
        padding: 16px;
    }
}

.report-reasons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 300px;
    overflow-y: auto;
    padding: 5px;
}

.report-reason-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.report-reason-item:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
}

.report-reason-item input[type="radio"] {
    margin: 0;
    accent-color: var(--primary-color);
}

.offer-modal-container {
    display: flex;
    flex-direction: column;
}

.offer-price-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(79, 172, 254, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 8px;
}

.current-price-display {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--info-color);
    font-size: 16px;
    font-weight: 600;
}

.current-price-display i {
    font-size: 18px;
}

.current-price-display strong {
    color: var(--text-primary);
    font-size: 18px;
}

.form-hint {
    color: var(--text-secondary);
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.offer-agreement {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin: 8px 0;
}

.checkbox-container {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.checkbox-container input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

.checkmark {
    position: relative;
    width: 20px;
    height: 20px;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-container:hover .checkmark {
    border-color: var(--primary-color);
}

.checkbox-container input:checked+.checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 4px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked+.checkmark:after {
    display: block;
}

.checkbox-text {
    color: var(--text-primary);
    flex: 1;
}

.offer-balance-info {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
}

.balance-display {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--success-color);
    font-size: 15px;
    font-weight: 600;
}

.balance-display i {
    font-size: 16px;
}

.balance-display strong {
    color: var(--text-primary);
    font-size: 16px;
}

.invalid-feedback {
    display: none;
    color: var(--danger-color);
    font-size: 12px;
    margin-top: 6px;
    font-weight: 500;
}

.invalid-feedback:not(.d-none) {
    display: block;
}

@media (max-width: 768px) {

    .offer-price-info,
    .offer-balance-info {
        padding: 12px 16px;
    }

    .current-price-display,
    .balance-display {
        font-size: 14px;
    }

    .current-price-display strong,
    .balance-display strong {
        font-size: 16px;
    }

    .offer-agreement {
        padding: 16px;
    }

    .checkbox-text {
        font-size: 13px;
    }

    .pd-soru-metni {
        margin-left: 24px;
    }

    .pd-cevap-metni {
        margin-left: 24px;
    }

    .pd-cevap-container {
        margin-left: 16px;
    }
}

.pd-character-info-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pd-character-main-info {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.pd-character-level {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pd-character-class-race {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pd-character-np {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.pd-character-np .label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}

.pd-character-np .value {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
}

.pd-character-stats {
    padding: 10px;
}

.pd-character-stats h6 {
    color: var(--text-primary);
    margin: 0 0 16px 0;
    font-size: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.pd-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 6px;
    transition: all 0.2s ease;
}

.pd-stat-row:hover {
    background: var(--bg-tertiary);
}

.pd-stat-label {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
}

.pd-stat-value {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
}

.pd-character-completion {
    padding: 16px 20px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.pd-character-completion-bar {
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.pd-character-completion-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--success-color), #10b981);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.pd-character-completion-text {
    text-align: center;
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
}

.pd-achievements-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pd-achievements-card h6 {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    color: var(--text-primary);
    margin: 0;
    padding: 20px;
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
}

.pd-achievements-list {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pd-achievement-badge {
    background: linear-gradient(135deg, var(--warning-color), #f59e0b);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
}

/* Question Modal Dropdown Styles */
.pd-template-dropdown {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
}

.pd-template-toggle {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pd-template-toggle:hover {
    border-color: var(--primary-color);
    background: var(--bg-tertiary);
}

.pd-template-toggle.active {
    border-color: var(--primary-color);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.pd-template-toggle i {
    transition: transform 0.2s ease;
}

.pd-template-toggle.active i {
    transform: rotate(180deg);
}

.pd-template-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-top: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    display: none;
    overflow: hidden;
}

.pd-template-menu.show {
    display: block;
}

.pd-template-search-container {
    padding: 8px 12px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.pd-template-search {
    width: 100%;
    padding: 8px 32px 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 13px;
    outline: none;
}

.pd-template-search:focus {
    border-color: var(--primary-color);
}

.pd-template-search-container i {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 13px;
    pointer-events: none;
}

.pd-template-list {
    max-height: 200px;
    overflow-y: auto;
}

.pd-template-item {
    padding: 10px 16px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.pd-template-item:last-child {
    border-bottom: none;
}

.pd-template-item:hover {
    background: var(--bg-tertiary);
    color: var(--primary-color);
}

/* Listing Footer Modernization */
.pd-listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid var(--border-color);
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 15px;
    backdrop-filter: blur(5px);
}

.pd-footer-meta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.pd-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
}

.pd-meta-item i {
    color: var(--primary-color);
    opacity: 0.8;
}

.pd-meta-item.warning {
    color: var(--warning-color);
}

.pd-meta-item.warning i {
    color: var(--warning-color);
}

.pd-footer-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pd-action-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.pd-action-btn:hover {
    background: var(--bg-tertiary);
    color: var(--primary-color);
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pd-action-btn.active {
    color: #ef4444;
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* Share Dropdown */
.pd-share-dropdown-wrapper {
    position: relative;
}

.pd-share-menu {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 10px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 5px;
    display: flex;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-lg);
}

.pd-share-dropdown-wrapper:hover .pd-share-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pd-share-item {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: var(--text-secondary);
    transition: all 0.2s;
    text-decoration: none;
}

.pd-share-item:hover {
    background: var(--bg-tertiary);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .pd-listing-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .pd-footer-actions {
        width: 100%;
        justify-content: flex-end;
    }
}


.pd-inventory-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.pd-inventory-slot {
    width: 56px;
    height: 56px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pd-inventory-slot:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.pd-inventory-slot.empty {
    opacity: 0.3;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.1);
}

.pd-inventory-image {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-inventory-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


/* Tooltip */
.pd-inventory-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: 250px;
    background: rgba(20, 20, 30, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease;
    pointer-events: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 9999;
}

.pd-inventory-slot:hover .pd-inventory-tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(-15px);
}

/* Tooltip Arrow */
.pd-inventory-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: rgba(20, 20, 30, 0.95) transparent transparent transparent;
}

/* Tooltip Header Colors */

.pd-tooltip-stats {
    list-style: none;
    padding: 10px 12px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pd-tooltip-stats li {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #ccc;
}

.pd-tooltip-stats li span:last-child {
    font-weight: 600;
    color: white;
}


/* --- MODERN GAMING UI OVERHAUL --- */

/* Global Glassmorphism & Layout */
:root {
    --glass-bg: rgba(20, 20, 30, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --neon-gold: #f1c40f;
    --neon-blue: #3498db;
    --neon-red: #ef4444;
    --neon-green: #2ecc71;
}

/* 
.pd-container {
    gap: 30px; // To Do
} */

/* Modern Header & Price Area */

/* Background glow effect */

/* Modern Sidebar - Player Profile Style */

/* Modern Features - Trait Grid */

/* Modern Q&A - Chat Bubbles */


/* FIX: Allow Tooltips to overflow pd-content */
.pd-content {
    overflow: visible !important;
}

.pd-listing-footer {
    border-radius: 0 0 16px 16px;
}

/* Ensure z-index context for tooltips */
.pd-inventory-slot {
    z-index: 10;
}

.pd-inventory-slot:hover {
    z-index: 100;
}

.pd-inventory-tooltip {
    z-index: 9999;
    min-width: 250px;
}


/* Ensure Tooltip Stacking */
.pd-inventory-slot:hover .pd-inventory-tooltip {
    z-index: 99999 !important;
}

/* Ensure Sidebar Cards Stack Properly */
.pd-sidebar-card:hover {
    z-index: 50;
}

/* Mobile Specific Tooltip Adjustments */
@media (max-width: 768px) {
    .pd-inventory-tooltip {
        width: 200px;
        /* Prevent going off screen */
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        bottom: auto;
        top: 100%;
        z-index: 1000;
    }

    .pd-inventory-slot:hover .pd-inventory-tooltip {
        transform: translateX(-50%) translateY(5px);
    }

    .pd-inventory-tooltip::after {
        top: auto;
        bottom: 100%;
        border-color: transparent transparent rgba(20, 20, 30, 0.95) transparent;
    }

    /* Ensure the grid wrapper doesn't cause overflow issues */
    .pd-inventory-grid {
        justify-content: center;
    }
}


.pd-set-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.pd-set-header-flex .pd-set-title {
    margin-bottom: 0;
}

.pd-set-view-toggles {
    display: flex;
    gap: 8px;
    background: var(--bg-secondary);
    padding: 4px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.pd-view-toggle {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.pd-view-toggle.active {
    background: var(--primary-color);
    color: white;
}

.pd-inventory-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pd-list-item {
    display: flex;
    gap: 16px;
    padding: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    align-items: center;
    transition: all 0.2s ease;
}

.pd-list-item:hover {
    border-color: var(--primary-color);
    transform: translateX(4px);
}

.pd-list-item-image {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pd-list-item-image img {
    max-width: 36px;
    max-height: 36px;
    object-fit: contain;
}

.pd-list-item-image.item-unique {
    border-color: #f1c40f;
}

.pd-list-item-image.item-rare {
    border-color: #3498db;
}

.pd-list-item.item-unique {
    border-left: 4px solid #f1c40f;
}

.pd-list-item.item-rare {
    border-left: 4px solid #3498db;
}

.pd-list-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pd-list-item-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
}

.pd-list-item-name.item-unique {
    color: #f1c40f;
}

.pd-list-item-name.item-rare {
    color: #3498db;
}

.pd-list-item-name.item-reverse {
    color: #e67e22;
}

.pd-mobile-modal-overlay {
    display: none;
}

.pd-mobile-modal {
    display: none;
}

@media (max-width: 768px) {
    .pd-mobile-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        z-index: 9998;
        opacity: 0;
        transition: opacity 0.3s ease;
        backdrop-filter: blur(4px);
    }

    .pd-mobile-modal-overlay.active {
        display: block;
        opacity: 1;
    }

    .pd-mobile-modal {
        display: flex;
        position: fixed;
        bottom: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-primary);
        border-top: 1px solid var(--border-color);
        border-radius: 24px 24px 0 0;
        z-index: 9999;
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1);
        padding: 24px;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
        flex-direction: column;
        max-height: 80vh;
        overflow-y: auto;
    }

    .pd-mobile-modal.active {
        transform: translateY(0);
    }
}

.pd-mobile-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: none;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.pd-mobile-modal-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.pd-mobile-modal-content .pd-tooltip-stats {
    padding: 0;
}

.pd-mobile-modal-content .pd-tooltip-stats li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .pd-inventory-tooltip {
        display: none !important;
    }
}

.swiper-navigation {
    display: flex;
    gap: 8px;
}

.swiper-button-prev-custom,
.swiper-button-next-custom,
.swiper-button-prev-custom-ring,
.swiper-button-next-custom-ring,
.swiper-button-prev-custom-char,
.swiper-button-next-custom-char {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover,
.swiper-button-prev-custom-ring:hover,
.swiper-button-next-custom-ring:hover,
.swiper-button-prev-custom-char:hover,
.swiper-button-next-custom-char:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.swiper-button-prev-custom:disabled,
.swiper-button-next-custom:disabled,
.swiper-button-prev-custom-ring:disabled,
.swiper-button-next-custom-ring:disabled,
.swiper-button-prev-custom-char:disabled,
.swiper-button-next-custom-char:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}