/* ============================================
   Seller Page - Pro Design
   ============================================ */

/* --- Page Container --- */
#sellerPage {
    background-color: #fff;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    padding: 0 !important;
    margin-bottom: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* --- Cover Image --- */
#sellerCover {
    height: 260px;
    width: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #f0f0f0;
    position: relative;
}

.seller-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
}

#sellerCover .dz-message {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 3;
}

.seller-cover-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}

.seller-cover-btn:hover {
    background: rgba(0,0,0,0.7);
    color: #fff;
    text-decoration: none;
}

#sellerCoverMobile {
    height: 100px;
    width: 100%;
    background-position: center center;
    background-size: cover;
}

/* --- Seller Info Row --- */
#sellerInfo {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: flex-start;
    padding: 0 28px 20px 28px !important;
    margin: 0 !important;
    gap: 18px;
    position: relative;
}

/* --- Avatar --- */
#sellerAvatar {
    flex-shrink: 0;
    margin-top: -48px;
    border: 4px solid #fff !important;
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    position: relative;
    z-index: 2;
    float: none;
    margin-left: 0;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

#sellerAvatar.dropzone {
    cursor: pointer;
}

#sellerAvatar:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

#sellerAvatar img {
    width: 110px;
    height: 110px;
    display: block;
    object-fit: contain;
    border-radius: 12px;
}

#sellerAvatar:hover #updateLogoText {
    display: flex !important;
}

#updateLogoText {
    display: none;
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(2px);
    font-size: 11px;
    font-weight: 500;
    padding: 5px 0;
    gap: 4px;
    pointer-events: none;
}

/* --- Seller Name --- */
#sellerName {
    flex: 1;
    min-width: 0;
    padding-top: 6px;
    float: none;
    width: auto;
    margin-left: 0;
}

#sellerName h1 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

/* Seller stats badges */
.seller-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.seller-stat-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    background: #f5f5f5;
    padding: 3px 10px;
    border-radius: 20px;
}

.seller-stat-item i {
    color: #ff7f00;
    font-size: 11px;
}

.seller-stat-item strong {
    color: #333;
}

#sellerName p {
    font-size: 13px;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

#sellerName a {
    color: #ff7f00;
    font-size: 13px;
    font-weight: 500;
}


/* --- Avatar Mobile --- */
#sellerAvatarMobile {
    flex-shrink: 0;
    margin-top: 10px;
    margin-left: 4%;
    border: 2px solid rgba(0,0,0,.15) !important;
    border-radius: 10px;
    overflow: hidden;
    float: none;
}

#sellerAvatarMobile img {
    width: 65px;
    height: 65px;
    display: block;
    object-fit: contain;
}

#sellerNameMobile {
    flex: 1;
    min-width: 0;
    padding: 10px 0 0 12px;
    float: none;
    margin-left: 0;
    margin-top: 0;
    width: auto;
}

#sellerNameMobile h1 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

/* ============================================
   Seller Tabs - Pro
   ============================================ */
.seller-tab {
    display: flex;
    gap: 8px;
    padding: 6px;
    background: #f5f5f5;
    border-radius: 14px;
    margin-bottom: 24px;
}

.seller-tab-link {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    border-radius: 10px;
    border: none;
    outline: none;
    cursor: pointer;
    background: transparent;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
}

.seller-tab-link i {
    font-size: 15px;
    transition: transform 0.25s ease;
}

.seller-tab-link:hover {
    color: #ff7f00;
    background: rgba(255, 127, 0, 0.06);
    text-decoration: none;
}

.seller-tab-link:hover i {
    transform: scale(1.1);
}

.seller-tab-link.active {
    color: #fff;
    background: linear-gradient(135deg, #ff8c1a 0%, #ff6a00 100%);
    box-shadow: 0 4px 14px rgba(255, 106, 0, 0.3);
}

.seller-tab-link.active:hover {
    color: #fff;
    background: linear-gradient(135deg, #ff9933 0%, #ff7a1a 100%);
    box-shadow: 0 6px 18px rgba(255, 106, 0, 0.35);
}

.seller-tab-link.active i {
    color: #fff;
}

.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-top: none;
}

/* Tab ile Ã¼rÃ¼n grid arasÄ± + Ã¼rÃ¼n kartlarÄ± arasÄ± boÅŸluk */
.mt-2 > .row {
    margin-top: 0;
}

#colVisionMd {
    padding-top: 8px;
}

#colVisionMd #prods.row > div[class*="col-"] {
    margin-bottom: 16px;
}

/* ============================================
   Seller Category Bar & Mega Dropdown
   ============================================ */

/* Sticky bar - full width */
.mySticky {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-bottom: 12px !important;
}

.seller-cat-bar {
    background: linear-gradient(135deg, #ff8c1a 0%, #ff6a00 100%);
    border-radius: 12px;
    padding: 0;
    position: relative;
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.25);
}

/* ============================================
   Hamburger Toggle Button (seller-cat-bar) â€” Pro
   ============================================ */
.seller-cat-toggle {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    background: none;
    border: none;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    width: 100%;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.seller-cat-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
}

.seller-cat-toggle:active {
    background: rgba(255, 255, 255, 0.2);
}

.seller-cat-hamburger-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    gap: 5px;
    flex-shrink: 0;
    pointer-events: none;
}

.seller-cat-hamburger-line {
    display: block;
    width: 100%;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.seller-cat-toggle:hover .seller-cat-hamburger-line {
    background: rgba(255, 255, 255, 0.95);
}

.seller-cat-text {
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -0.2px;
}

.seller-cat-current {
    margin-left: auto;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 300px;
    pointer-events: none;
}

.seller-cat-chevron {
    margin-left: auto;
    font-size: 12px;
    opacity: 0.85;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.seller-cat-toggle:hover .seller-cat-chevron {
    transform: translateX(3px);
    opacity: 1;
}

/* ============================================
   Side Panel Overlay
   ============================================ */
.seller-side-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.seller-side-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   Side Panel
   ============================================ */
.seller-side-panel {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: #fff;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 24px rgba(0,0,0,0.15);
    overflow: hidden;
}

.seller-side-panel.is-open {
    transform: translateX(0);
}

/* Side Panel Header */
.seller-side-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #ff7f00;
    color: #fff;
    flex-shrink: 0;
}

.seller-side-title {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.seller-side-close {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.seller-side-close:hover {
    background: rgba(255,255,255,0.3);
}

/* Side Panel Body */
.seller-side-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    -webkit-overflow-scrolling: touch;
}

/* Home Button */
.seller-side-home-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    color: #ff7f00;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}

.seller-side-home-btn:hover {
    background: #fff8f0;
    text-decoration: none;
    color: #ff7f00;
}

/* Navigation List */
.seller-side-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seller-side-nav > li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.15s, color 0.15s;
}

.seller-side-nav > li > a i:first-child {
    color: #ff7f00;
    width: 18px;
    text-align: center;
    font-size: 13px;
    flex-shrink: 0;
}

.seller-side-nav > li > a:hover {
    background: #fff8f0;
    color: #ff7f00;
    text-decoration: none;
}

.seller-side-nav > li.active > a {
    background: #fff3e6;
    color: #ff7f00;
    font-weight: 600;
}

/* Arrow for sub-categories */
.seller-side-arrow {
    margin-left: auto;
    font-size: 11px;
    color: #bbb;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.seller-side-has-sub.is-expanded > a .seller-side-arrow {
    transform: rotate(90deg);
    color: #ff7f00;
}

/* Sub-category list */
.seller-side-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
}

.seller-side-has-sub.is-expanded > .seller-side-sub {
    max-height: 1000px;
}

.seller-side-sub li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px 18px 10px 46px;
    color: #555;
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s, color 0.15s;
}

.seller-side-sub li a:hover {
    background: #ff7f00;
    color: #fff;
    text-decoration: none;
}

.seller-side-sub li a:hover .seller-side-count {
    background: rgba(255,255,255,0.3);
    color: #fff;
}

.seller-side-sub li.active a {
    background: #fff3e6;
    color: #ff7f00;
    font-weight: 600;
}

.seller-side-sub .seller-side-has-sub > a {
    padding-left: 46px;
    font-size: 13px;
    color: #555;
}

.seller-side-sub .seller-side-sub li a {
    padding-left: 62px;
}

.seller-side-sub .seller-side-sub .seller-side-has-sub > a {
    padding-left: 62px;
}

.seller-side-sub .seller-side-sub .seller-side-sub li a {
    padding-left: 78px;
}

.seller-side-sub .seller-side-sub {
    background: #f5f5f5;
}

.seller-side-sub .seller-side-sub .seller-side-sub {
    background: #f0f0f0;
}

/* Count badge */
.seller-side-count {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 600;
    color: #999;
    background: #eee;
    padding: 1px 8px;
    border-radius: 10px;
    min-width: 22px;
    text-align: center;
    line-height: 1.5;
    transition: all 0.15s;
}

/* ============================================
   Desktop Sidebar
   ============================================ */
.seller-desktop-sidebar {
    position: sticky;
    top: calc(var(--ep-header-height) + var(--ep-megamenu-height) + 12px);
    max-height: calc(100vh - var(--ep-header-height) - var(--ep-megamenu-height) - 24px);
    scrollbar-width: thin;
    z-index: 100;
}

.seller-sidebar-header {
    font-size: 15px;
    color: #ff7f00;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 767px) {
    .seller-cat-bar {
        border-radius: 10px;
        box-shadow: 0 3px 12px rgba(255, 106, 0, 0.22);
    }

    .seller-cat-toggle {
        padding: 11px 16px;
        font-size: 14px;
        gap: 12px;
    }

    .seller-cat-text {
        font-size: 14px;
    }

    .seller-cat-current {
        display: none;
    }

    .seller-cat-hamburger-box {
        width: 22px;
        height: 22px;
        gap: 4px;
    }

    .seller-cat-hamburger-line {
        height: 2.5px;
    }

    .seller-cat-chevron {
        font-size: 11px;
    }

    .seller-side-panel {
        width: 280px;
    }
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-top: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* ============================================
   Pagination (BS3 compat)
   ============================================ */
.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #ff6a00;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #ff6a00;
    border-color: #ff6a00;
}

/* ============================================
   Banner Prod in Sidebar
   ============================================ */
.category-auto-banner {
    margin-bottom: 16px;
}

.category-auto-banner .product-item-v2,
.category-auto-banner .product-item-v3 {
    margin-bottom: 0;
}

.left-menu-container {
    padding-top: 12px;
}

.left-menu-container .category-auto-banner {
    max-width: 100%;
}

/* ============================================
   Responsive
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    #sellerInfo {
        flex-wrap: wrap;
    }

    .seller-tab-link {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    #sellerPage {
        border-radius: 12px;
        box-shadow: 0 1px 8px rgba(0,0,0,0.08);
    }

    #sellerCover {
        height: 150px;
    }

    .seller-cover-overlay {
        background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.25) 100%);
    }

    #sellerAvatar {
        margin-top: -30px;
        border-width: 3px !important;
        border-radius: 12px;
    }

    #sellerAvatar img {
        width: 80px;
        height: 80px;
        border-radius: 9px;
    }

    #sellerInfo {
        padding: 0 12px 12px 12px !important;
        gap: 10px;
    }

    #sellerName h1 {
        font-size: 18px;
    }

    #sellerName p {
        font-size: 12px;
    }

    .seller-stats {
        gap: 5px;
    }

    .seller-stat-item {
        font-size: 11px;
        padding: 2px 8px;
    }

    .seller-tab {
        gap: 6px;
        padding: 4px;
        border-radius: 12px;
    }

    .seller-tab-link {
        padding: 10px 12px;
        font-size: 13px;
        gap: 6px;
        border-radius: 8px;
    }

    .seller-tab-link i {
        font-size: 14px;
    }

    .seller-tab-link.active {
        box-shadow: 0 3px 10px rgba(255, 106, 0, 0.25);
    }

    #colVisionMd {
        padding-top: 12px;
    }

    #colVisionMd #prods.row > div[class*="col-"] {
        margin-bottom: 12px;
    }

}

/* Extra small */
@media (max-width: 479px) {
    #sellerPage {
        border-radius: 10px;
    }

    #sellerCover {
        height: 130px;
    }

    #sellerAvatar {
        margin-top: -25px;
        border-radius: 10px;
    }

    #sellerAvatar img {
        width: 65px;
        height: 65px;
        border-radius: 7px;
    }

    #sellerInfo {
        padding: 0 10px 10px 10px !important;
        gap: 8px;
    }

    #sellerName h1 {
        font-size: 16px;
    }

    .seller-tab {
        gap: 4px;
        padding: 3px;
        border-radius: 10px;
    }

    .seller-tab-link {
        padding: 9px 8px;
        font-size: 12px;
        gap: 5px;
        border-radius: 7px;
    }

    .seller-tab-link i {
        font-size: 13px;
    }

}

/* ============================================
   SELLER COMMENTS PAGE
   ============================================ */

/* Comments page container */
.sc-page {
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 24px;
}

/* Empty state */
.sc-empty {
    text-align: center;
    padding: 60px 20px;
}

.sc-empty-icon {
    font-size: 56px;
    color: #ddd;
    margin-bottom: 16px;
}

.sc-empty h3 {
    font-size: 20px;
    color: #555;
    margin-bottom: 8px;
}

.sc-empty p {
    color: #999;
    margin-bottom: 24px;
}

/* --- Score Summary Card --- */
.sc-summary {
    background: linear-gradient(135deg, #fff8f0 0%, #fff 100%);
    border: 1px solid #ffe0c0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.sc-summary-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    height: 100%;
    border-right: 1px solid #ffe0c0;
}

.sc-big-score {
    font-size: 56px;
    font-weight: 800;
    color: #ff7f00;
    line-height: 1;
}

.sc-stars {
    margin: 8px 0;
    font-size: 18px;
    color: #ff7f00;
    white-space: nowrap;
    letter-spacing: 2px;
}

.sc-stars .fa-regular {
    color: #ddd;
}

.sc-total-count {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

.sc-summary-details {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 14px;
}

.sc-detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sc-detail-label {
    flex: 0 0 160px;
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

.sc-detail-bar {
    flex: 1;
    height: 8px;
    background-color: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.sc-detail-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff7f00, #ffb366);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.sc-detail-value {
    flex: 0 0 28px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    text-align: right;
}

.sc-emoji-good {
    color: #22c55e;
    font-size: 18px;
    flex-shrink: 0;
}

.sc-emoji-bad {
    color: #ef4444;
    font-size: 18px;
    flex-shrink: 0;
}

/* --- Filter Bar --- */
.sc-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    margin-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.sc-filter-left {
    font-size: 15px;
    color: #333;
}

.sc-filter-right .form-select {
    border-color: #ddd;
    font-size: 13px;
}

/* --- Loading / End States --- */
.sc-loading {
    text-align: center;
    padding: 20px;
}

.sc-loading img {
    width: 32px;
    height: 32px;
    margin-right: 8px;
}

.sc-loading span {
    color: #888;
    font-weight: 500;
}

.sc-load-more {
    text-align: center;
    padding: 24px;
}

.sc-end-msg {
    text-align: center;
    padding: 20px;
    color: #22c55e;
    font-weight: 600;
    font-size: 14px;
}

/* --- Comment List --- */
.sc-comment-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* --- Single Comment --- */
.sc-comment {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #eef0f4;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.sc-comment:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    border-color: #e0e3ea;
}

/* Comment Header */
.sc-comment-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
}

.sc-user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ep-primary, #ff6a00) 0%, #ff9a44 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 700;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    box-shadow: 0 3px 10px rgba(255, 106, 0, 0.2);
}

.sc-user-info {
    flex: 1;
    min-width: 0;
}

.sc-user-name {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a1a2e;
    line-height: 1.3;
}

.sc-user-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.76rem;
    color: #8b8fa3;
    margin-top: 3px;
}

.sc-user-location i {
    font-size: 0.65rem;
    color: var(--ep-primary, #ff6a00);
}

.sc-comment-date {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: #8b8fa3;
    margin-left: auto;
    flex-shrink: 0;
}

.sc-comment-date i {
    font-size: 0.68rem;
    color: #b0b3c4;
}

/* Comment Body */
.sc-comment-body {
    padding-left: 0;
}

/* Product Mini Card (compact horizontal) */
.sc-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 12px;
}

.sc-product-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px 8px 8px;
    background: #f9fafb;
    border: 1px solid #eee;
    border-radius: 10px;
    max-width: 400px;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.sc-product-link:hover .sc-product-mini {
    border-color: #ff7f00;
    box-shadow: 0 2px 8px rgba(255,127,0,0.08);
}

.sc-product-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.sc-product-detail {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sc-product-name {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sc-product-meta {
    font-size: 11px;
    color: #22c55e;
    font-weight: 600;
}

.sc-product-meta i {
    margin-right: 2px;
}

.sc-product-size {
    color: #888;
    font-weight: 400;
}

/* Rating Pills */
.sc-ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.sc-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.sc-pill-good {
    background-color: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.sc-pill-good i {
    color: #22c55e;
}

.sc-pill-bad {
    background-color: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.sc-pill-bad i {
    color: #ef4444;
}

/* Comment Text */
.sc-comment-text {
    margin-bottom: 1rem;
    padding: 1rem 1.125rem;
    background: #f8f9fb;
    border-radius: 12px;
    border-left: 3px solid var(--ep-primary, #ff6a00);
}

.sc-comment-subject {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.sc-comment-text p {
    font-size: 0.9rem;
    color: #3d3d56;
    line-height: 1.7;
    margin: 0;
}

/* Customer Photo Gallery */
.sc-gallery {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #fafbfc;
    border-radius: 12px;
    border: 1px dashed #e0e3ea;
}

.sc-gallery-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.sc-gallery-label i {
    color: var(--ep-primary, #ff6a00);
    font-size: 0.85rem;
}

.sc-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.sc-gallery-item {
    display: block;
    width: 96px;
    height: 96px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #eef0f4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.sc-gallery-item:hover {
    border-color: var(--ep-primary, #ff6a00);
    transform: scale(1.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.sc-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.sc-gallery-item:hover img {
    transform: scale(1.1);
}

.sc-gallery-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.25s ease;
    border-radius: 10px;
}

.sc-gallery-zoom i {
    color: #fff;
    font-size: 1.25rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.sc-gallery-item:hover .sc-gallery-zoom {
    opacity: 1;
}

.sc-gallery-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.35), rgba(0,0,0,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.sc-gallery-video i {
    color: #fff;
    font-size: 1.75rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

/* Override uploaded files partial inline styles */
.sc-gallery .imgPanel {
    display: contents;
    height: auto !important;
    padding: 0 !important;
}

.sc-gallery .imgPanel + br {
    display: none;
}

/* Comment Footer */
.sc-comment-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-top: 0.875rem;
    border-top: 1px solid #f0f1f5;
}

.sc-useful-label {
    font-size: 0.78rem;
    color: #8b8fa3;
    font-weight: 500;
}

.sc-useful-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid #e0e3ea;
    background: #fff;
    color: #5a5d72;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sc-useful-btn:hover {
    border-color: var(--ep-primary, #ff6a00);
    color: var(--ep-primary, #ff6a00);
    background: #fff8f3;
    box-shadow: 0 2px 8px rgba(255, 106, 0, 0.1);
}

.sc-useful-btn:active {
    transform: scale(0.96);
}

.sc-rating-feedback {
    font-size: 0.78rem;
    color: var(--ep-success, #22c55e);
    font-weight: 600;
    display: none;
}

/* Seller Response */
.sc-seller-response {
    margin-top: 14px;
    padding: 14px 16px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 3px solid #ff7f00;
}

.sc-response-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    font-size: 13px;
}

.sc-response-header i {
    color: #ff7f00;
}

.sc-response-header strong {
    color: #333;
}

.sc-response-date {
    color: #aaa;
    font-size: 12px;
    margin-left: auto;
}

.sc-response-text {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Comments Page Responsive
   ============================================ */
@media (max-width: 991px) {
    .sc-page {
        padding: 16px;
    }

    .sc-summary-score {
        border-right: none;
        border-bottom: 1px solid #ffe0c0;
        padding: 20px;
    }

    .sc-big-score {
        font-size: 44px;
    }

    .sc-summary-details {
        padding: 20px;
    }

    .sc-detail-label {
        flex: 0 0 130px;
        font-size: 12px;
    }

    .sc-comment { padding: 1.25rem; border-radius: 14px; }
    .sc-user-avatar { width: 38px; height: 38px; font-size: 0.9rem; }
    .sc-user-name { font-size: 0.85rem; }

    .sc-comment-body {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .sc-page {
        padding: 12px;
    }

    .sc-summary-score {
        padding: 16px;
    }

    .sc-big-score {
        font-size: 36px;
    }

    .sc-summary-details {
        padding: 16px;
        gap: 10px;
    }

    .sc-detail-label {
        flex: 0 0 100px;
        font-size: 11px;
    }

    .sc-detail-value {
        font-size: 12px;
    }

    .sc-comment-header { gap: 0.5rem; }

    .sc-comment-date {
        font-size: 0.66rem;
    }

    .sc-product-mini {
        max-width: 100%;
    }

    .sc-product-thumb {
        width: 48px;
        height: 48px;
    }

    .sc-gallery { padding: 0.875rem; border-radius: 10px; }
    .sc-gallery-item { width: 80px; height: 80px; }
    .sc-gallery-grid { gap: 0.5rem; }

    .sc-rating-pill {
        font-size: 11px;
        padding: 3px 8px;
    }

    .sc-comment-text { padding: 0.875rem; border-radius: 10px; }
    .sc-comment-subject { font-size: 0.85rem; }
    .sc-comment-text p {
        font-size: 0.82rem;
    }

    .sc-filter-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .sc-filter-right {
        width: 100%;
    }

    .sc-filter-right .form-select {
        width: 100% !important;
        min-width: 0 !important;
    }
}

@media (max-width: 479px) {
    .sc-page {
        padding: 8px;
    }

    .sc-summary {
        border-radius: 8px;
    }

    .sc-big-score {
        font-size: 32px;
    }

    .sc-detail-row {
        flex-wrap: wrap;
    }

    .sc-detail-label {
        flex: 0 0 100%;
        margin-bottom: -4px;
    }

    .sc-detail-bar {
        flex: 1;
    }

    .sc-comment {
        padding: 1.125rem;
        border-radius: 12px;
    }

    .sc-comment-header { gap: 0.4rem; margin-bottom: 0.625rem; }
    .sc-user-avatar { width: 34px; height: 34px; font-size: 0.82rem; }
    .sc-comment-date { font-size: 0.66rem; }

    .sc-ratings {
        gap: 4px;
    }

    .sc-rating-pill {
        font-size: 10px;
        padding: 2px 6px;
    }

    .sc-rating-pill span {
        display: none;
    }

    .sc-product-thumb {
        width: 40px;
        height: 40px;
        border-radius: 6px;
    }

    .sc-product-name {
        font-size: 12px;
        -webkit-line-clamp: 1;
    }

    .sc-gallery { padding: 0.75rem; border-radius: 8px; }
    .sc-gallery-item { width: 68px; height: 68px; border-radius: 8px; }
    .sc-gallery-label { font-size: 0.72rem; margin-bottom: 0.5rem; }
    .sc-gallery-grid { gap: 0.375rem; }
    .sc-comment-footer { gap: 0.5rem; padding-top: 0.625rem; }
    .sc-useful-label { font-size: 0.75rem; }
    .sc-useful-btn { font-size: 0.72rem; padding: 0.3rem 0.75rem; }
}

/* ==========================================================================
   CSS Spinner — loading.gif yerine kullanýlýr
   ========================================================================== */
@keyframes epLoaderSpin {
    to { transform: rotate(360deg); }
}

.ep-prod-loader-spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 127, 0, 0.25);
    border-top-color: #FF7F00;
    border-radius: 50%;
    animation: epLoaderSpin 0.75s linear infinite;
    vertical-align: middle;
}

/* ============================================
   Comment Card — Paylaşılan stil dosyası
   Kullanıldığı yerler:
     - Ürün Detay (/urun/...)  → prod-detail-tab.css bundle'ı ile birlikte
     - Mağaza Yorumları (/magaza-yorumlari) → seller-page.css bundle'ı ile birlikte
   ============================================ */

/* ============================================
   TAB: Comments
   ============================================ */
#pdt-comments {
    background: #fafafa;
}

.pdt-comments {
    margin-top: 0;
}

/* Score Summary Card */
.pdt-score-summary {
    background: #fff;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.pdt-score-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(160deg, #fff8f0 0%, #fff 100%);
    text-align: center;
    min-height: 180px;
}

.pdt-big-score {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1d1d1f;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.04em;
}

.pdt-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 0.5rem;
}

.pdt-stars i {
    font-size: 1.15rem;
    color: #fbbf24;
}

.pdt-stars i.fa-regular {
    color: #d1d5db;
}

.pdt-total-reviews {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

.pdt-score-right {
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.875rem;
}

.pdt-score-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 0.75rem;
}

.pdt-score-label {
    flex: 0 0 100%;
    font-size: 0.82rem;
    font-weight: 500;
    color: #424245;
    line-height: 1.2;
}

.pdt-score-bar {
    flex: 1;
    height: 6px;
    background: #e8e8ed;
    border-radius: 3px;
    overflow: hidden;
    min-width: 80px;
}

.pdt-score-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ep-primary, #ff6a00), #fbbf24);
    border-radius: 3px;
    transition: width 0.8s ease;
}

.pdt-score-val {
    flex: 0 0 32px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1d1d1f;
    text-align: right;
}

.pdt-score-emoji {
    flex: 0 0 20px;
    font-size: 1rem;
}

.pdt-score-emoji.good { color: var(--ep-success); }
.pdt-score-emoji.bad  { color: var(--ep-danger); }

/* Comment Toolbar */
.pdt-comment-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.75rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.pdt-comment-count {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1d1d1f;
}

.pdt-comment-count span {
    color: var(--ep-primary, #ff6a00);
}

/* ========================================
   Comment Media Gallery
   ======================================== */
.pdt-media-gallery {
    background: #fff;
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.pdt-media-gallery-label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.pdt-media-gallery-label i {
    color: var(--ep-primary, #ff6a00);
    font-size: 0.85rem;
}

.pdt-media-gallery-label i.fa-video {
    color: #6366f1;
}

.pdt-media-gallery-count {
    margin-left: auto;
    font-size: 0.7rem;
    font-weight: 500;
    color: #8b8fa3;
    background: #f3f4f6;
    padding: 0.1rem 0.45rem;
    border-radius: 20px;
}

.pdt-media-scroll {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
}

.pdt-media-scroll::-webkit-scrollbar {
    display: none;
}

.pdt-media-slide {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #eef0f4;
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    scroll-snap-align: start;
    flex-shrink: 0;
}

.pdt-media-slide:hover {
    border-color: var(--ep-primary, #ff6a00);
    transform: scale(1.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pdt-media-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pdt-media-slide-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.35), rgba(0,0,0,0.15));
}

.pdt-media-slide-play i {
    color: #fff;
    font-size: 1.25rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

/* ========================================
   Media Lightbox
   ======================================== */
.pdt-media-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pdt-media-lightbox.active {
    display: flex;
    opacity: 1;
}

.pdt-media-lightbox-dialog {
    background: #fff;
    border-radius: 16px;
    width: 94%;
    max-width: 960px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
    position: relative;
}

.pdt-media-lightbox-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid #eef0f4;
    flex-shrink: 0;
    background: #fff;
}

.pdt-media-lightbox-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    font-size: 1.2rem;
    line-height: 1;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.pdt-media-lightbox-close:hover {
    background: #e5e7eb;
    color: #111827;
}

.pdt-media-lightbox-title {
    flex: 1;
    font-size: 1rem;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0;
}

.pdt-media-lightbox-counter {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    background: var(--ep-primary, #ff6a00);
    padding: 4px 12px;
    border-radius: 20px;
    flex-shrink: 0;
    line-height: 1.2;
}

.pdt-media-lightbox-body {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pdt-media-lightbox-main {
    flex: 1;
    min-height: 0;
    display: flex;
    overflow: hidden;
}

.pdt-media-lightbox-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fb;
    min-width: 0;
    padding: 16px;
    overflow: hidden;
    position: relative;
}

.pdt-media-lightbox-media-wrap {
    flex: 1;
    min-height: 0;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.pdt-lb-track {
    display: flex;
    width: 300%;
    height: 100%;
    transform: translateX(-33.333%);
    will-change: transform;
}

.pdt-lb-slot {
    width: 33.333%;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    overflow: hidden;
}

.pdt-lb-slot video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px 8px 0 0;
    background: #000;
}

.pdt-lb-slot-video {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    border-radius: 8px;
    overflow: hidden;
}

.pdt-lb-slot-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.pdt-lb-slot-play {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
}

.pdt-media-lb-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: block;
}

.pdt-media-lightbox-visual video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px 8px 0 0;
    background: #000;
}

/* Custom video player */
.pdt-video-player {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.pdt-video-player video {
    flex: 1;
    min-height: 0;
    width: 100%;
    object-fit: contain;
    background: #000;
    border-radius: 0;
    display: block;
}

.pdt-video-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.75);
    flex-shrink: 0;
}

.pdt-vc-playpause {
    background: none;
    border: none;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    padding: 2px 4px;
    line-height: 1;
    flex-shrink: 0;
}

.pdt-vc-playpause:hover {
    color: rgba(255, 255, 255, 0.75);
}

.pdt-vc-progress {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.pdt-vc-progress:hover {
    height: 6px;
}

.pdt-vc-bar {
    height: 100%;
    background: #fff;
    border-radius: 2px;
    width: 0%;
    pointer-events: none;
    transition: width 0.1s linear;
}

.pdt-vc-time {
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    white-space: nowrap;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}

.pdt-media-lightbox-rotate {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-shrink: 0;
}

.pdt-media-lightbox-rotate button {
    width: 36px;
    height: 36px;
    border: 1px solid #e0e3ea;
    background: #fff;
    border-radius: 50%;
    color: #6b7280;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.pdt-media-lightbox-rotate button:hover {
    border-color: var(--ep-primary, #ff6a00);
    color: var(--ep-primary, #ff6a00);
    background: #fff8f3;
}

.pdt-media-lightbox-sidebar {
    width: 340px;
    flex-shrink: 0;
    border-left: 1px solid #eef0f4;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: #fff;
}

.pdt-media-lightbox-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 20px 0;
}

.pdt-media-lightbox-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--ep-primary, #ff6a00) 0%, #ff9a44 100%);
    flex-shrink: 0;
    text-transform: uppercase;
}

.pdt-media-lightbox-user-info {
    flex: 1;
    min-width: 0;
}

.pdt-media-lightbox-user-name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}

.pdt-media-lightbox-verified {
    color: #3b82f6;
    font-size: 0.78rem;
}

.pdt-media-lightbox-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 3px;
}

.pdt-media-lightbox-stars i {
    font-size: 0.78rem;
    color: #fbbf24;
}

.pdt-media-lightbox-stars i.fa-regular {
    color: #dfe1e6;
}

.pdt-media-lightbox-date {
    font-size: 0.72rem;
    color: #9ca3af;
    margin-left: 8px;
}

.pdt-media-lightbox-comment-text {
    margin: 16px 20px;
    padding: 14px 16px;
    background: #f5f6f8;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.65;
    color: #3d3d56;
}

.pdt-media-lightbox-seller-info {
    padding: 0 20px 12px;
    font-size: 0.78rem;
    color: #8b8fa3;
}

.pdt-media-lightbox-seller-info a {
    color: var(--ep-primary, #ff6a00);
    font-weight: 600;
    text-decoration: none;
}

.pdt-media-lightbox-actions {
    padding: 12px 20px;
    border-top: 1px solid #f0f1f5;
    margin-top: auto;
}

.pdt-media-lightbox-actions-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a1a2e;
}

.pdt-media-lb-useful-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid #e0e3ea;
    background: #fff;
    color: #5a5d72;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pdt-media-lb-useful-btn:hover {
    border-color: var(--ep-primary, #ff6a00);
    color: var(--ep-primary, #ff6a00);
    background: #fff8f3;
}

.pdt-media-lightbox-thumbs {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid #eef0f4;
    overflow-x: auto;
    scrollbar-width: none;
    flex-shrink: 0;
    background: #fff;
}

.pdt-media-lightbox-thumbs::-webkit-scrollbar {
    display: none;
}

.pdt-media-lb-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 200px;
    color: #fff;
    font-size: 2rem;
    opacity: 0.7;
}

.pdt-media-lb-thumb {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #e0e3ea;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.pdt-media-lb-thumb.active {
    border-color: var(--ep-primary, #ff6a00);
    box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.2);
}

.pdt-media-lb-thumb:hover {
    border-color: var(--ep-primary, #ff6a00);
}

.pdt-media-lb-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pdt-media-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: var(--ep-primary, #ff6a00);
    border-radius: 50%;
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 2px 10px rgba(255, 106, 0, 0.3);
    transition: all 0.2s ease;
}

.pdt-media-lightbox-nav:hover {
    background: #e55d00;
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.4);
    transform: translateY(-50%) scale(1.08);
}

.pdt-media-lightbox-nav.prev { left: 10px; }
.pdt-media-lightbox-nav.next { right: 10px; }

/* Mobile lightbox — tam ekran, sidebar resmin üstüne overlay */
@media (max-width: 767.98px) {

    /* Dialog: flex column, tam ekran, scroll yok */
    .pdt-media-lightbox-dialog {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        background: #000;
        box-shadow: none;
    }

    /* Aşağı çekerek kapatma (pull-to-dismiss) */
    .pdt-media-lightbox-dialog.pdt-lb-dragging {
        transition: none;
        will-change: transform, opacity;
    }

    .pdt-media-lightbox-dialog.pdt-lb-snap {
        transition: transform 0.26s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.26s ease;
        will-change: transform, opacity;
    }

    /* Header: koyu, sabit yükseklik */
    .pdt-media-lightbox-header {
        position: relative;
        flex-shrink: 0;
        z-index: 10;
        background: #111;
        border-bottom-color: #222;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .pdt-media-lightbox-title { color: #e5e7eb; }

    .pdt-media-lightbox-close {
        background: #2d2d2d;
        color: #e5e7eb;
    }

    .pdt-media-lightbox-close:hover {
        background: #3d3d3d;
        color: #fff;
    }

    /* Body: kalan alanı doldurur, konumlandırma bağlamı */
    .pdt-media-lightbox-body {
        flex: 1;
        min-height: 0;
        overflow: hidden;
        position: relative;
    }

    /* Main: body'yi tamamen kaplar */
    .pdt-media-lightbox-main {
        position: absolute;
        inset: 0;
        display: block;
        overflow: hidden;
    }

    /* Visual: main'i tamamen kaplar */
    .pdt-media-lightbox-visual {
        position: absolute;
        inset: 0;
        padding: 0;
        background: #000;
        overflow: hidden;
        flex: unset;
        transition: none;
    }

    /* Media wrap: visual'ı doldurur */
    .pdt-media-lightbox-media-wrap {
        width: 100%;
        height: 100%;
        max-height: none;
    }

    .pdt-lb-track { height: 100%; }
    .pdt-lb-slot { padding: 0; }

    /* Zoom için */
    .pdt-media-lb-img {
        touch-action: none;
        will-change: transform;
    }

    /* Döndürme butonları mobilde gizli */
    .pdt-media-lightbox-rotate { display: none; }

    /* Nav butonları: resmin ortasında, yarı saydam */
    .pdt-media-lightbox-nav {
        width: 34px;
        height: 34px;
        font-size: 0.75rem;
        background: rgba(255, 255, 255, 0.18);
        box-shadow: none;
        top: 40%;
    }

    .pdt-media-lightbox-nav:hover {
        background: rgba(255, 255, 255, 0.3);
        box-shadow: none;
    }

    .pdt-media-lightbox-nav.prev { left: 8px; }
    .pdt-media-lightbox-nav.next { right: 8px; }

    /* Sidebar: resmin altına yapışık gradient overlay */
    .pdt-media-lightbox-sidebar {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 3;
        width: auto;
        border: none;
        border-radius: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.65) 55%, transparent 100%);
        padding: 52px 16px 18px;
        box-shadow: none;
        overflow: hidden;
        transition: opacity 0.25s ease;
    }

    /* Sidebar içerikleri: beyaz metin */
    .pdt-media-lightbox-user {
        padding: 0 0 8px 0;
        gap: 8px;
    }

    .pdt-media-lightbox-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.78rem;
        flex-shrink: 0;
    }

    .pdt-media-lightbox-user-name {
        color: #fff;
        font-size: 0.84rem;
    }

    .pdt-media-lightbox-stars { margin-top: 2px; }

    .pdt-media-lightbox-stars i {
        font-size: 0.72rem;
        color: #fbbf24;
    }

    .pdt-media-lightbox-stars i.fa-regular { color: rgba(255, 255, 255, 0.35); }

    .pdt-media-lightbox-comment-text {
        margin: 0 0 10px 0;
        padding: 0;
        background: transparent;
        border-radius: 0;
        color: rgba(255, 255, 255, 0.88);
        font-size: 0.8rem;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        cursor: pointer;
        user-select: none;
    }

    .pdt-media-lightbox-comment-text.pdt-lb-text-expanded {
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
        cursor: pointer;
    }

    .pdt-media-lightbox-actions {
        padding: 0;
        border-top: none;
        margin-top: 0;
    }

    .pdt-media-lightbox-actions-label {
        color: rgba(255, 255, 255, 0.65);
        font-size: 0.74rem;
    }

    .pdt-media-lb-useful-btn {
        border-color: rgba(255, 255, 255, 0.25);
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.74rem;
        padding: 5px 12px;
        margin-top: 6px;
    }

    .pdt-media-lb-useful-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        color: #fff;
    }

    /* Thumbnail şeridi: mobilde gizli */
    .pdt-media-lightbox-thumbs { display: none; }

    /* UI gizli durum: fotoğrafa tek tıklayınca header + sidebar solar */
    .pdt-lb-ui-hidden .pdt-media-lightbox-header {
        opacity: 0;
        transform: translateY(-100%);
        pointer-events: none;
    }

    .pdt-lb-ui-hidden .pdt-media-lightbox-sidebar {
        opacity: 0;
        pointer-events: none;
    }
}

/* Comment List */
.pdt-comment-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Single Comment Card */
.pdt-comment-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #eef0f4;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.pdt-comment-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    border-color: #e0e3ea;
}

/* Comment Header */
.pdt-comment-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
}

.pdt-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--ep-primary, #ff6a00) 0%, #ff9a44 100%);
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    box-shadow: 0 3px 10px rgba(255, 106, 0, 0.2);
}

.pdt-user-info {
    flex: 1;
    min-width: 0;
}

.pdt-user-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}

.pdt-user-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.76rem;
    color: #8b8fa3;
    margin-top: 3px;
}

.pdt-user-location i {
    font-size: 0.65rem;
    color: var(--ep-primary, #ff6a00);
}

/* Star Rating */
.pdt-comment-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.pdt-comment-stars i {
    font-size: 0.85rem;
    color: #fbbf24;
}

.pdt-comment-stars i.fa-regular {
    color: #dfe1e6;
}

/* Verified Badge */
.pdt-verified-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.875rem;
}

.pdt-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.3rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #059669;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 20px;
    letter-spacing: 0.01em;
}

.pdt-verified-badge i {
    font-size: 0.78rem;
    color: #059669;
}

.pdt-variant-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.3rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #7c3aed;
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    border-radius: 20px;
    letter-spacing: 0.01em;
}

.pdt-variant-badge i {
    font-size: 0.78rem;
    color: #7c3aed;
}

.pdt-relative-date {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: #8b8fa3;
    margin-left: auto;
}

.pdt-relative-date i {
    font-size: 0.68rem;
    color: #b0b3c4;
}

/* Rating Pills */
.pdt-ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pdt-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1;
    transition: transform 0.15s ease;
}

.pdt-pill:hover {
    transform: translateY(-1px);
}

.pdt-pill.good {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.pdt-pill.good i { color: #22c55e; font-size: 0.82rem; }

.pdt-pill.bad {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.pdt-pill.bad i { color: #ef4444; font-size: 0.82rem; }

/* Product Mini Card */
.pdt-prod-link {
    text-decoration: none !important;
    display: block;
    margin-bottom: 1rem;
}

.pdt-prod-mini {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem;
    background: #f8f9fb;
    border-radius: 12px;
    border: 1px solid #eef0f4;
    transition: all 0.3s ease;
}

.pdt-prod-mini:hover {
    border-color: var(--ep-primary, #ff6a00);
    box-shadow: 0 4px 16px rgba(255, 127, 0, 0.1);
    background: #fff;
}

.pdt-prod-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    background: #f0f1f5;
}

.pdt-prod-detail {
    flex: 1;
    min-width: 0;
}

.pdt-prod-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pdt-prod-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
    font-size: 0.78rem;
    color: var(--ep-success);
    font-weight: 600;
}

.pdt-prod-meta i { font-size: 0.85rem; }
.pdt-prod-size { color: #8b8fa3; font-weight: 500; }

/* Comment Body */
.pdt-comment-body {
    margin-bottom: 1rem;
    padding: 1rem 1.125rem;
    background: #f8f9fb;
    border-radius: 12px;
    border-left: 3px solid var(--ep-primary, #ff6a00);
}

.pdt-comment-subject {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.pdt-comment-text {
    font-size: 0.9rem;
    color: #3d3d56;
    line-height: 1.7;
    margin: 0;
}

.pdt-no-text {
    font-style: italic;
    color: #8b8fa3;
    font-weight: 500;
    font-size: 0.85rem;
}

/* Photo Gallery */
.pdt-gallery {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #fafbfc;
    border-radius: 12px;
    border: 1px dashed #e0e3ea;
}

.pdt-gallery-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.pdt-gallery-label i {
    color: var(--ep-primary, #ff6a00);
    font-size: 0.85rem;
}

.pdt-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.pdt-gallery-item {
    display: block;
    width: 96px;
    height: 96px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #eef0f4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.pdt-gallery-item:hover {
    border-color: var(--ep-primary, #ff6a00);
    transform: scale(1.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pdt-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pdt-gallery-item:hover img {
    transform: scale(1.1);
}

.pdt-gallery-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.25s ease;
    border-radius: 10px;
}

.pdt-gallery-zoom i {
    color: #fff;
    font-size: 1.25rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.pdt-gallery-item:hover .pdt-gallery-zoom {
    opacity: 1;
}

.pdt-gallery-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.35), rgba(0,0,0,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdt-gallery-video i {
    color: #fff;
    font-size: 1.75rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

/* Comment Footer */
.pdt-comment-foot {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-top: 0.875rem;
    border-top: 1px solid #f0f1f5;
}

.pdt-useful-label {
    font-size: 0.78rem;
    color: #8b8fa3;
    font-weight: 500;
}

.pdt-useful-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid #e0e3ea;
    background: #fff;
    color: #5a5d72;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pdt-useful-btn:hover {
    border-color: var(--ep-primary, #ff6a00);
    color: var(--ep-primary, #ff6a00);
    background: #fff8f3;
    box-shadow: 0 2px 8px rgba(255, 106, 0, 0.1);
}

.pdt-useful-btn:active {
    transform: scale(0.96);
}

.pdt-rating-feedback {
    display: none;
    font-size: 0.78rem;
    color: var(--ep-success);
    font-weight: 600;
}

/* Seller Response */
.pdt-seller-reply {
    margin-top: 1rem;
    padding: 1.125rem 1.25rem;
    background: linear-gradient(135deg, #f0f7ff, #e8f2ff);
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    position: relative;
}

.pdt-seller-reply::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 24px;
    width: 16px;
    height: 16px;
    background: #f0f7ff;
    border-left: 1px solid #dbeafe;
    border-top: 1px solid #dbeafe;
    transform: rotate(45deg);
}

.pdt-reply-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.625rem;
}

.pdt-reply-head i { color: #3b82f6; font-size: 0.9rem; }
.pdt-reply-head strong { font-size: 0.85rem; color: #1a1a2e; font-weight: 700; }
.pdt-reply-date { font-size: 0.72rem; color: #8b8fa3; margin-left: auto; }

.pdt-reply-text {
    font-size: 0.875rem;
    color: #3d3d56;
    line-height: 1.65;
    margin: 0;
}

/* Pagination */
.pdt-pagination {
    display: flex;
    justify-content: center;
    padding: 2rem 0 0.5rem;
}

.pdt-pagination .pagination {
    display: flex;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.pdt-pagination .pagination li a,
.pdt-pagination .pagination li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1d1d1f;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pdt-pagination .pagination li a:hover {
    border-color: var(--ep-primary, #ff6a00);
    color: var(--ep-primary, #ff6a00);
    background: var(--ep-primary-light, #fff5ec);
}

.pdt-pagination .pagination li.active a,
.pdt-pagination .pagination li.active span {
    background: var(--ep-primary, #ff6a00);
    border-color: var(--ep-primary, #ff6a00);
    color: #fff;
    cursor: default;
}

/* Loading & Load More */
.pdt-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.pdt-loader img { width: 28px; height: 28px; }

.pdt-load-more {
    text-align: center;
    padding: 1.5rem 0;
}

.pdt-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ep-primary, #ff6a00);
    background: #fff;
    border: 2px solid var(--ep-primary, #ff6a00);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pdt-load-more-btn:hover {
    background: var(--ep-primary, #ff6a00);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 127, 0, 0.25);
}

.pdt-end-msg {
    text-align: center;
    padding: 1.5rem;
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 500;
}

.pdt-end-msg i {
    color: var(--ep-success);
    margin-right: 0.25rem;
}

/* Empty State */
.pdt-empty-comments {
    text-align: center;
    padding: 3rem 2rem;
    color: #6b7280;
}

.pdt-empty-comments i {
    font-size: 3rem;
    color: #d2d2d7;
    margin-bottom: 1rem;
    display: block;
}

.pdt-empty-comments h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
}

.pdt-empty-comments p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

/* Seller Link */
.pdt-all-comments-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ep-primary, #ff6a00);
    background: var(--ep-primary-light, #fff5ec);
    border: 1px solid var(--ep-primary, #ff6a00);
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pdt-all-comments-link:hover {
    background: var(--ep-primary, #ff6a00);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(255, 127, 0, 0.25);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1199.98px) {
    .pdt-score-right { padding: 1.5rem 2rem; }
    .pdt-score-label { flex: 0 0 100%; }
    .pdt-comment-card { padding: 1.25rem; }
}

@media (min-width: 1400px) {
    .pdt-comment-text { font-size: 0.95rem; }
}

@media (max-width: 767.98px) {
    /* Score */
    .pdt-score-left { padding: 1.25rem 1rem; }
    .pdt-big-score { font-size: 2.5rem; }
    .pdt-stars i { font-size: 1.1rem; }
    .pdt-score-right { padding: 1rem; gap: 0.75rem; }
    .pdt-score-row { gap: 0rem; }
    .pdt-score-label { flex: 0 0 100%; font-size: 0.72rem; }

    /* Comment */
    .pdt-comment-card { padding: 1.25rem; border-radius: 14px; }
    .pdt-avatar { width: 38px; height: 38px; font-size: 0.9rem; }
    .pdt-user-name { font-size: 0.85rem; }
    .pdt-comment-stars i { font-size: 0.8rem; }
    .pdt-ratings { gap: 0.375rem; }
    .pdt-pill { padding: 0.3rem 0.625rem; font-size: 0.75rem; }
    .pdt-comment-body { padding: 0.875rem; border-radius: 10px; }
    .pdt-prod-thumb { width: 48px; height: 48px; }
    .pdt-prod-name { font-size: 0.8rem; }
    .pdt-gallery-item { width: 80px; height: 80px; }
    .pdt-gallery { padding: 0.875rem; border-radius: 10px; }

    /* Pagination */
    .pdt-pagination .pagination li a,
    .pdt-pagination .pagination li span {
        min-width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    /* Score */
    .pdt-big-score { font-size: 2.25rem; }
    .pdt-comment-toolbar { padding: 0.75rem; border-radius: 8px; }

    /* Comment */
    .pdt-comment-card { padding: 1.125rem; border-radius: 12px; }
    .pdt-comment-head { gap: 0.5rem; margin-bottom: 0.625rem; }
    .pdt-avatar { width: 34px; height: 34px; font-size: 0.82rem; }
    .pdt-comment-stars i { font-size: 0.75rem; }
    .pdt-verified-badge { font-size: 0.68rem; padding: 0.25rem 0.625rem; }
    .pdt-variant-badge { font-size: 0.68rem; padding: 0.25rem 0.625rem; }
    .pdt-relative-date { font-size: 0.66rem; }
    .pdt-pill { font-size: 0.7rem; padding: 0.25rem 0.5rem; }
    .pdt-pill i { font-size: 0.72rem; }
    .pdt-comment-body { padding: 0.75rem 0.875rem; border-radius: 8px; }
    .pdt-comment-subject { font-size: 0.85rem; }
    .pdt-comment-text { font-size: 0.82rem; }

    /* Gallery */
    .pdt-gallery { padding: 0.75rem; border-radius: 8px; }
    .pdt-gallery-grid { gap: 0.5rem; }
    .pdt-gallery-item { width: 68px; height: 68px; border-radius: 8px; }
    .pdt-gallery-label { font-size: 0.72rem; margin-bottom: 0.5rem; }
    .pdt-media-slide { width: 64px; height: 64px; min-width: 64px; border-radius: 8px; }

    /* Footer */
    .pdt-comment-foot { gap: 0.5rem; padding-top: 0.625rem; }
    .pdt-useful-label { font-size: 0.75rem; }
    .pdt-useful-btn { font-size: 0.72rem; padding: 0.3rem 0.75rem; }

    /* Seller Reply */
    .pdt-seller-reply { padding: 0.875rem 1rem; margin-top: 0.75rem; border-radius: 10px; }
    .pdt-seller-reply::before { display: none; }
    .pdt-reply-head strong { font-size: 0.8rem; }
    .pdt-reply-text { font-size: 0.82rem; }

    /* Pagination */
    .pdt-pagination .pagination { gap: 3px; }
    .pdt-pagination .pagination li a,
    .pdt-pagination .pagination li span {
        min-width: 30px; height: 30px; font-size: 0.75rem; padding: 0 6px; border-radius: 6px;
    }
}

