.pf-category-tabs-wrapper {
    position: relative;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 2px 0;
}
.pf-category-tabs-wrapper::-webkit-scrollbar {
    display: none;
}
.pf-category-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    align-items: center;
}
.pf-cat-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 38px;
    padding: 0 14px 0 8px;
    border-radius: 20px;
    background: var(--pf-bg-card);
    border: 1px solid var(--pf-border);
    color: var(--pf-text-primary);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    flex-shrink: 0;
}
.pf-cat-tab:hover {
    background: var(--pf-bg-hover);
    border-color: var(--pf-accent);
    color: var(--pf-accent);
}
.pf-cat-tab.active {
    background: var(--pf-accent);
    border-color: var(--pf-accent);
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(15, 76, 129, 0.25);
}
.pf-cat-tab-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    background: var(--pf-bg-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--pf-text-secondary);
}
.pf-cat-tab.active .pf-cat-tab-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}
.pf-cat-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    background: var(--pf-bg-primary);
    font-size: 11px;
    font-weight: 600;
    color: var(--pf-text-muted);
}
.pf-cat-tab.active .pf-cat-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}
.subcats-scroll-container {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 12px 0;
}
.subcats-scroll-container::-webkit-scrollbar {
    display: none;
}
.pf-subcat-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 16px;
    background: var(--pf-bg-card);
    border: 1px solid var(--pf-border);
    color: var(--pf-text-secondary);
    font-size: 12.5px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.pf-subcat-chip:hover {
    background: var(--pf-accent);
    color: #ffffff;
    border-color: var(--pf-accent);
}
.pf-subcat-chip:hover i {
    color: #ffffff !important;
}

/* === Modern Product Card Styles === */
.pf-product-list-item {
    background: var(--pf-bg-card);
    border: 1px solid var(--pf-border);
    border-radius: 0;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    cursor: pointer;
}
.pf-product-list-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
.pf-product-img-box {
    width: 170px;
    min-width: 170px;
    max-width: 170px;
    align-self: stretch;
    height: auto;
    min-height: 165px;
    padding: 6px;
    position: relative;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--pf-border-light, #f1f5f9);
    flex-shrink: 0;
    box-sizing: border-box;
}
.pf-product-img-box img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Büyüme efekti kaldırıldı
.pf-product-list-item:hover .pf-product-img-box img {
    transform: scale(1.04);
}
*/
.pf-product-content-box {
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pf-seller-btn {
    background: var(--pf-bg-secondary) !important;
    border: 1px solid var(--pf-border) !important;
    color: var(--pf-text-primary) !important;
    transition: all 0.2s ease;
}
.pf-seller-btn:hover {
    border-color: var(--pf-accent) !important;
    transform: translateY(-1px);
}
.pf-seller-name {
    color: var(--pf-text-primary) !important;
    font-weight: 600;
}
[data-theme="dark"] .pf-seller-btn,
[data-bs-theme="dark"] .pf-seller-btn,
body.dark-mode .pf-seller-btn,
html.dark .pf-seller-btn {
    background: #1e293b !important;
    border-color: #334155 !important;
    color: #f8fafc !important;
}
[data-theme="dark"] .pf-seller-name,
[data-bs-theme="dark"] .pf-seller-name,
body.dark-mode .pf-seller-name,
html.dark .pf-seller-name {
    color: #f8fafc !important;
}
[data-theme="dark"] .pf-seller-price,
[data-bs-theme="dark"] .pf-seller-price,
body.dark-mode .pf-seller-price,
html.dark .pf-seller-price {
    color: #60a5fa !important;
}
.pf-seller-best {
    border-color: rgba(16, 185, 129, 0.4) !important;
    background: rgba(16, 185, 129, 0.04) !important;
}
.pf-seller-best:hover {
    border-color: #10b981 !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}
.pf-best-price-badge {
    font-size: 9.5px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 4px;
    background: rgba(4, 120, 87, 0.1);
    color: #047857;
    border: 1px solid rgba(4, 120, 87, 0.25);
    line-height: 1.2;
    margin-left: 2px;
    white-space: nowrap;
}
[data-theme="dark"] .pf-seller-best,
[data-bs-theme="dark"] .pf-seller-best,
body.dark-mode .pf-seller-best,
html.dark .pf-seller-best {
    border-color: rgba(52, 211, 153, 0.4) !important;
    background: rgba(16, 185, 129, 0.08) !important;
}
[data-theme="dark"] .pf-best-price-badge,
[data-bs-theme="dark"] .pf-best-price-badge,
body.dark-mode .pf-best-price-badge,
html.dark .pf-best-price-badge {
    background: rgba(16, 185, 129, 0.2) !important;
    color: #34d399 !important;
    border-color: rgba(52, 211, 153, 0.35) !important;
}
[data-theme="dark"] .pf-opp-badge,
[data-bs-theme="dark"] .pf-opp-badge,
body.dark-mode .pf-opp-badge,
html.dark .pf-opp-badge {
    background: var(--pf-bg-card, #1e2132) !important;
    color: var(--pf-text-primary, #f8fafc) !important;
    border-color: var(--pf-border, #2a2e3f) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}
@media (max-width: 767.98px) {
    nav[aria-label="breadcrumb"] {
        padding-left: 12px !important;
        padding-right: 14px !important;
        margin-bottom: 12px !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }
    nav[aria-label="breadcrumb"] .breadcrumb {
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        gap: 8px !important;
    }
    nav[aria-label="breadcrumb"] .breadcrumb::-webkit-scrollbar {
        display: none !important;
    }
    nav[aria-label="breadcrumb"] .breadcrumb-item,
    .pf-breadcrumb-chip {
        min-height: 32px !important;
        padding: 4px 12px !important;
        font-size: 12.5px !important;
        line-height: 1.3 !important;
    }
    nav[aria-label="breadcrumb"] .breadcrumb-item:last-child {
        margin-right: 14px !important;
    }
    .pf-products-list {
        gap: 0 !important;
    }
    .pf-product-list-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 0 !important;
        max-width: 100% !important;
        background: var(--pf-bg-card, #ffffff) !important;
        border: none !important;
        border-bottom: 1px solid var(--pf-border, #e2e8f0) !important;
        border-radius: 0 !important;
        box-sizing: border-box !important;
        position: relative !important;
        overflow: hidden !important;
        cursor: pointer !important;
    }
    .pf-product-main-row {
        display: flex !important;
        flex-direction: row !important;
        align-items: stretch !important;
        padding: 0 !important;
        gap: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        min-height: 140px !important;
    }
    .pf-product-img-box {
        width: 128px !important;
        min-width: 128px !important;
        max-width: 128px !important;
        height: auto !important;
        min-height: 140px !important;
        align-self: stretch !important;
        padding: 4px !important;
        border-radius: 0 !important;
        border: none !important;
        border-right: none !important;
        background: #ffffff !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        position: relative !important;
        box-sizing: border-box !important;
    }
    .pf-product-img-box > div {
        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
        flex: 1 1 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .pf-product-img-box img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
        display: block !important;
    }
    .pf-product-content-box {
        padding: 13px 12px 11px 12px !important;
        width: calc(100% - 128px) !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        min-height: 140px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        border: none !important;
        box-sizing: border-box !important;
    }
    .pf-mobile-top-area {
        position: relative;
        min-width: 0;
        width: 100%;
    }
    .pf-mobile-circle-actions {
        float: right;
        margin-left: 10px !important;
        margin-top: -6px !important;
        margin-bottom: 8px !important;
        display: flex;
        gap: 6px;
        align-items: center;
        align-content: center;
        height: 30px;
    }
    .pf-circle-action-btn {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        max-width: 30px !important;
        min-height: 30px !important;
        max-height: 30px !important;
        border-radius: 50% !important;
        border: 1px solid #e2e8f0 !important;
        background: #ffffff !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06) !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        align-self: center !important;
        vertical-align: middle !important;
        color: #94a3b8 !important;
        padding: 0 !important;
        margin: 0 !important;
        font-size: 14px !important;
        line-height: 1 !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
        box-sizing: border-box !important;
        transition: all 0.2s ease !important;
    }
    .pf-circle-action-btn:hover {
        color: #0f172a !important;
        border-color: #cbd5e1 !important;
    }
    .pf-circle-action-btn:active {
        transform: scale(0.92);
    }
    .pf-circle-action-btn.is-active,
    .pf-circle-action-btn.active,
    .compare-toggle-btn.is-active {
        color: #2563eb !important;
        background: rgba(37, 99, 235, 0.12) !important;
        border-color: #93c5fd !important;
    }
    .pf-product-title-text {
        font-size: 14.5px !important;
        font-weight: 600 !important;
        color: #0f172a !important;
        line-height: 1.4 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-decoration: none !important;
        word-break: break-word !important;
        margin-top: 6px !important;
    }
    .pf-product-divider {
        height: 1px !important;
        background: #eef2f6 !important;
        margin: 9px 0 8px 0 !important;
        width: 100% !important;
        border: none !important;
    }
    .pf-product-bottom-row {
        margin: 0 !important;
        padding: 0 !important;
        border-top: none !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        min-width: 0 !important;
        gap: 4px !important;
    }
    .pf-mobile-price-container {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        min-width: 0 !important;
        line-height: 1 !important;
    }
    .pf-price-sub-label {
        font-size: 11px !important;
        font-weight: 600 !important;
        color: #047857 !important;
        line-height: 1 !important;
        margin-bottom: 3px !important;
        display: block !important;
        letter-spacing: 0.1px !important;
    }
    .pf-product-price-display {
        min-width: 0 !important;
        white-space: nowrap !important;
        line-height: 1 !important;
    }
    .pf-price-main {
        font-size: 18.5px !important;
        font-weight: 800 !important;
        color: #0b192c !important;
        letter-spacing: -0.4px !important;
        line-height: 1 !important;
    }
    .pf-price-cents {
        font-size: 12px !important;
        font-weight: 600 !important;
        color: #0b192c !important;
        line-height: 1 !important;
        margin-left: 0.5px !important;
    }
    .pf-mobile-actions-group {
        display: flex !important;
        align-items: center !important;
        gap: 5px !important;
        flex-shrink: 0 !important;
    }
    .pf-category-tabs-wrapper,
    .subcats-scroll-container {
        display: none !important;
    }
}
/* Global / Desktop Accordion & Sellers Button Styles */
.pf-mobile-sellers-btn {
    height: 28px !important;
    padding: 0 12px !important;
    border-radius: 8px !important;
    border: 1.5px solid #bfdbfe !important;
    background: #ffffff !important;
    color: #1e40af !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}
.pf-mobile-sellers-btn:hover {
    background: #eff6ff !important;
    border-color: #93c5fd !important;
    color: #1d4ed8 !important;
}
.pf-mobile-sellers-btn[aria-expanded="true"] {
    background: #1e40af !important;
    color: #ffffff !important;
    border-color: #1e40af !important;
}
.pf-mobile-sellers-accordion {
    border-radius: 0 !important;
    width: 100% !important;
}
.pf-accordion-sellers-list {
    background: #f8fafc;
    border-top: 1px solid #eef2f6;
    padding: 10px 14px;
    box-sizing: border-box;
    max-height: 290px;
    overflow-y: auto;
    scrollbar-width: thin;
}
.pf-accordion-seller-row {
    padding: 8px 4px;
    border-bottom: 1px solid #edf2f7;
    transition: background 0.15s ease;
}
.pf-accordion-seller-row:last-child {
    border-bottom: none;
}
.pf-acc-seller-logo {
    height: 20px !important;
    max-height: 20px !important;
    max-width: 70px !important;
    object-fit: contain !important;
}
.pf-acc-seller-name {
    font-size: 12.5px !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    line-height: 1.2 !important;
}
.pf-acc-seller-price {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    white-space: nowrap !important;
}
.pf-acc-go-btn {
    background: #ecfdf5 !important;
    border: 1px solid #86efac !important;
    color: #047857 !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    padding: 3px 10px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    transition: all 0.15s ease !important;
}
.pf-acc-go-btn:hover,
.pf-acc-go-btn:active {
    background: #d1fae5 !important;
    color: #065f46 !important;
    border-color: #34d399 !important;
}
.pf-acc-product-btn {
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 9px 14px !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    box-shadow: 0 1px 3px rgba(15, 76, 129, 0.15) !important;
}
@media (min-width: 768px) {
    .pf-accordion-sellers-list {
        padding: 12px 18px !important;
    }
    .pf-accordion-seller-row {
        padding: 9px 8px !important;
    }
    .pf-accordion-seller-row:hover {
        background: rgba(15, 76, 129, 0.03);
    }
    .pf-acc-seller-logo {
        height: 22px !important;
        max-height: 22px !important;
        max-width: 80px !important;
    }
    .pf-acc-seller-name {
        font-size: 13px !important;
    }
    .pf-acc-seller-price {
        font-size: 15px !important;
    }
    .pf-acc-go-btn {
        padding: 4px 12px !important;
        font-size: 12px !important;
    }
}
[data-theme="dark"] .pf-circle-action-btn,
[data-bs-theme="dark"] .pf-circle-action-btn,
body.dark-mode .pf-circle-action-btn,
html.dark .pf-circle-action-btn {
    background: #1e293b !important;
    border-color: #334155 !important;
    color: #94a3b8 !important;
}
[data-theme="dark"] .pf-product-title-text,
[data-bs-theme="dark"] .pf-product-title-text,
body.dark-mode .pf-product-title-text,
html.dark .pf-product-title-text {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .pf-product-divider,
[data-bs-theme="dark"] .pf-product-divider,
body.dark-mode .pf-product-divider,
html.dark .pf-product-divider {
    background: #334155 !important;
}
[data-theme="dark"] .pf-price-main,
[data-theme="dark"] .pf-price-cents,
[data-bs-theme="dark"] .pf-price-main,
[data-bs-theme="dark"] .pf-price-cents,
body.dark-mode .pf-price-main,
body.dark-mode .pf-price-cents,
html.dark .pf-price-main,
html.dark .pf-price-cents {
    color: #f8fafc !important;
}
[data-theme="dark"] .pf-mobile-sellers-btn,
[data-bs-theme="dark"] .pf-mobile-sellers-btn,
body.dark-mode .pf-mobile-sellers-btn,
html.dark .pf-mobile-sellers-btn {
    background: #1e293b !important;
    border-color: rgba(96, 165, 250, 0.4) !important;
    color: #93c5fd !important;
}
[data-theme="dark"] .pf-mobile-sellers-btn[aria-expanded="true"],
[data-bs-theme="dark"] .pf-mobile-sellers-btn[aria-expanded="true"],
body.dark-mode .pf-mobile-sellers-btn[aria-expanded="true"],
html.dark .pf-mobile-sellers-btn[aria-expanded="true"] {
    background: #3b82f6 !important;
    color: #ffffff !important;
    border-color: #3b82f6 !important;
}
[data-theme="dark"] .pf-price-sub-label,
[data-bs-theme="dark"] .pf-price-sub-label,
body.dark-mode .pf-price-sub-label,
html.dark .pf-price-sub-label {
    color: #34d399 !important;
}
[data-theme="dark"] .pf-mobile-sellers-accordion,
[data-bs-theme="dark"] .pf-mobile-sellers-accordion,
body.dark-mode .pf-mobile-sellers-accordion,
html.dark .pf-mobile-sellers-accordion {
    background: #0f172a !important;
    border-top-color: #334155 !important;
}
[data-theme="dark"] .pf-accordion-sellers-list,
[data-bs-theme="dark"] .pf-accordion-sellers-list,
body.dark-mode .pf-accordion-sellers-list,
html.dark .pf-accordion-sellers-list {
    background: #0f172a !important;
    border-top-color: #334155 !important;
}
[data-theme="dark"] .pf-accordion-seller-row,
[data-bs-theme="dark"] .pf-accordion-seller-row,
body.dark-mode .pf-accordion-seller-row,
html.dark .pf-accordion-seller-row {
    border-bottom-color: #1e293b !important;
}
[data-theme="dark"] .pf-accordion-seller-row:hover,
[data-bs-theme="dark"] .pf-accordion-seller-row:hover,
body.dark-mode .pf-accordion-seller-row:hover,
html.dark .pf-accordion-seller-row:hover {
    background: rgba(255, 255, 255, 0.03) !important;
}
[data-theme="dark"] .pf-acc-seller-name,
[data-bs-theme="dark"] .pf-acc-seller-name,
body.dark-mode .pf-acc-seller-name,
html.dark .pf-acc-seller-name {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .pf-acc-seller-price,
[data-bs-theme="dark"] .pf-acc-seller-price,
body.dark-mode .pf-acc-seller-price,
html.dark .pf-acc-seller-price {
    color: #f8fafc !important;
}
[data-theme="dark"] .pf-acc-go-btn,
[data-bs-theme="dark"] .pf-acc-go-btn,
body.dark-mode .pf-acc-go-btn,
html.dark .pf-acc-go-btn {
    background: rgba(16, 185, 129, 0.15) !important;
    border-color: rgba(52, 211, 153, 0.4) !important;
    color: #34d399 !important;
}
[data-theme="dark"] .pf-acc-go-btn:hover,
[data-bs-theme="dark"] .pf-acc-go-btn:hover,
body.dark-mode .pf-acc-go-btn:hover,
html.dark .pf-acc-go-btn:hover {
    background: rgba(16, 185, 129, 0.25) !important;
    color: #6ee7b7 !important;
}
.pf-cat-info-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 15px;
    border: 1px solid var(--pf-border) !important;
    background: rgba(15, 76, 129, 0.07) !important;
    color: var(--pf-accent, #0f4c81) !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    cursor: pointer;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
.pf-cat-info-btn:hover {
    background: rgba(15, 76, 129, 0.14) !important;
    color: var(--pf-accent, #0f4c81) !important;
}
.pf-cat-info-btn:active {
    transform: scale(0.94);
}
button.pf-cat-info-btn:not(.collapsed) {
    background: linear-gradient(135deg, #0f4c81 0%, #1e6bb8 100%) !important;
    color: #ffffff !important;
    border-color: #0f4c81 !important;
    box-shadow: 0 2px 8px rgba(15, 76, 129, 0.3);
}
[data-theme="dark"] .pf-cat-info-btn {
    background: rgba(59, 130, 246, 0.12) !important;
    border-color: rgba(59, 130, 246, 0.25) !important;
    color: #60a5fa !important;
}
[data-theme="dark"] .pf-cat-info-btn:hover {
    background: rgba(59, 130, 246, 0.22) !important;
    color: #93c5fd !important;
}
[data-theme="dark"] button.pf-cat-info-btn:not(.collapsed),
[data-bs-theme="dark"] button.pf-cat-info-btn:not(.collapsed),
body.dark-mode button.pf-cat-info-btn:not(.collapsed),
html.dark button.pf-cat-info-btn:not(.collapsed) {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%) !important;
    border-color: #3b82f6 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.45);
}
@media (min-width: 768px) {
    .border-bottom-md {
        border-bottom: 1px solid var(--pf-border) !important;
    }
    .border-top-md-0 {
        border-top: 0 !important;
    }
}
.pf-mobile-sort-btn,
.pf-mobile-filter-btn {
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    font-weight: 600;
}
.pf-mobile-sort-btn:active,
.pf-mobile-filter-btn:active {
    transform: scale(0.96);
}
.pf-mobile-sort-btn:active,
.pf-mobile-sort-btn.show,
.pf-mobile-filter-btn:active {
    background: rgba(15, 76, 129, 0.08) !important;
    border-color: var(--pf-accent, #0f4c81) !important;
}
[data-theme="dark"] .pf-mobile-sort-btn:active,
[data-theme="dark"] .pf-mobile-sort-btn.show,
[data-theme="dark"] .pf-mobile-filter-btn:active,
body.dark-mode .pf-mobile-sort-btn:active,
body.dark-mode .pf-mobile-sort-btn.show,
body.dark-mode .pf-mobile-filter-btn:active {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: #3b82f6 !important;
}

/* Mobil Filtre Modalı - Modern Bottom Sheet Drawer Stili */
@media (max-width: 767.98px) {
    #mobileFilterModal {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    #mobileFilterModal .modal-dialog {
        margin: 0 !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        transform: translateY(100%);
        transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }
    #mobileFilterModal.show .modal-dialog {
        transform: translateY(0) !important;
    }
    #mobileFilterModal .modal-content {
        border-radius: 0 !important;
        border: 1px solid var(--pf-border) !important;
        border-bottom: none !important;
        max-height: 88vh !important;
        box-shadow: 0 -10px 35px rgba(0,0,0,0.22) !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
    }
    #mobileFilterModal .modal-body {
        flex: 1 1 auto !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    #mobileFilterModal .modal-footer {
        flex-shrink: 0 !important;
        padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px)) !important;
    }
}
#mobileFilterModal .modal-content {
    border-radius: 0 !important;
}

/* Kategori Özeti Mobil İstatistik Çipleri */
.pf-hero-stat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 8px;
}
.pf-hero-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 7px;
    background: var(--pf-bg-secondary, rgba(0,0,0,0.03));
    border: 1px solid var(--pf-border);
    color: var(--pf-text-primary);
    line-height: 1.25;
    white-space: nowrap;
}
.pf-hero-stat-pill strong {
    font-weight: 700;
}
.pf-stat-low {
    background: rgba(16, 185, 129, 0.08) !important;
    border-color: rgba(16, 185, 129, 0.25) !important;
    color: #065f46 !important;
}
.pf-stat-avg {
    background: rgba(15, 76, 129, 0.08) !important;
    border-color: rgba(15, 76, 129, 0.25) !important;
    color: var(--pf-accent, #0f4c81) !important;
}
.pf-stat-discount {
    background: rgba(239, 68, 68, 0.08) !important;
    border-color: rgba(239, 68, 68, 0.25) !important;
    color: #b91c1c !important;
}
.pf-stat-guide {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 6px rgba(217, 119, 6, 0.25);
    transition: transform 0.15s ease;
}
.pf-stat-guide:hover {
    color: #ffffff !important;
    transform: translateY(-1px);
}
[data-theme="dark"] .pf-hero-stat-pill,
[data-bs-theme="dark"] .pf-hero-stat-pill,
body.dark-mode .pf-hero-stat-pill,
html.dark .pf-hero-stat-pill {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--pf-text-primary);
}
[data-theme="dark"] .pf-stat-low,
[data-bs-theme="dark"] .pf-stat-low,
body.dark-mode .pf-stat-low,
html.dark .pf-stat-low {
    background: rgba(16, 185, 129, 0.15) !important;
    border-color: rgba(52, 211, 153, 0.3) !important;
    color: #34d399 !important;
}
[data-theme="dark"] .pf-stat-avg,
[data-bs-theme="dark"] .pf-stat-avg,
body.dark-mode .pf-stat-avg,
html.dark .pf-stat-avg {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
    color: #60a5fa !important;
}
[data-theme="dark"] .pf-stat-discount,
[data-bs-theme="dark"] .pf-stat-discount,
body.dark-mode .pf-stat-discount,
html.dark .pf-stat-discount {
    background: rgba(239, 68, 68, 0.15) !important;
    border-color: rgba(248, 113, 113, 0.3) !important;
    color: #f87171 !important;
}

/* Fırsatlar & Karşılaştırmalar İkon ve Akordiyon Buton Stilleri */
.pf-deal-info-btn {
    background: rgba(239, 68, 68, 0.08) !important;
    border-color: rgba(239, 68, 68, 0.25) !important;
    color: #ef4444 !important;
}
.pf-deal-info-btn:hover {
    background: rgba(239, 68, 68, 0.16) !important;
    color: #ef4444 !important;
}
button.pf-deal-info-btn:not(.collapsed) {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    color: #ffffff !important;
    border-color: #dc2626 !important;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.35);
}
button.pf-deal-info-btn:not(.collapsed) i {
    color: #ffffff !important;
}
[data-theme="dark"] .pf-deal-info-btn {
    background: rgba(239, 68, 68, 0.15) !important;
    border-color: rgba(248, 113, 113, 0.3) !important;
    color: #f87171 !important;
}
[data-theme="dark"] .pf-deal-info-btn:hover {
    background: rgba(239, 68, 68, 0.25) !important;
    color: #fca5a5 !important;
}
[data-theme="dark"] button.pf-deal-info-btn:not(.collapsed),
[data-bs-theme="dark"] button.pf-deal-info-btn:not(.collapsed),
body.dark-mode button.pf-deal-info-btn:not(.collapsed),
html.dark button.pf-deal-info-btn:not(.collapsed) {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%) !important;
    border-color: #ef4444 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(239, 68, 68, 0.45);
}

.pf-cmp-info-btn {
    background: rgba(15, 76, 129, 0.07) !important;
    border-color: var(--pf-border) !important;
    color: var(--pf-accent, #0f4c81) !important;
}
.pf-cmp-info-btn:hover {
    background: rgba(15, 76, 129, 0.14) !important;
    color: var(--pf-accent, #0f4c81) !important;
}
button.pf-cmp-info-btn:not(.collapsed) {
    background: linear-gradient(135deg, #0f4c81 0%, #2563eb 100%) !important;
    color: #ffffff !important;
    border-color: #2563eb !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}
button.pf-cmp-info-btn:not(.collapsed) i {
    color: #ffffff !important;
}
[data-theme="dark"] .pf-cmp-info-btn {
    background: rgba(59, 130, 246, 0.12) !important;
    border-color: rgba(59, 130, 246, 0.25) !important;
    color: #60a5fa !important;
}
[data-theme="dark"] .pf-cmp-info-btn:hover {
    background: rgba(59, 130, 246, 0.22) !important;
    color: #93c5fd !important;
}
[data-theme="dark"] button.pf-cmp-info-btn:not(.collapsed),
[data-bs-theme="dark"] button.pf-cmp-info-btn:not(.collapsed),
body.dark-mode button.pf-cmp-info-btn:not(.collapsed),
html.dark button.pf-cmp-info-btn:not(.collapsed) {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%) !important;
    border-color: #3b82f6 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.45);
}

.pf-budget-info-btn {
    background: rgba(16, 185, 129, 0.08) !important;
    border-color: rgba(16, 185, 129, 0.25) !important;
    color: #059669 !important;
}
.pf-budget-info-btn:hover {
    background: rgba(16, 185, 129, 0.16) !important;
    color: #059669 !important;
}
button.pf-budget-info-btn:not(.collapsed) {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
    color: #ffffff !important;
    border-color: #10b981 !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
}
button.pf-budget-info-btn:not(.collapsed) i {
    color: #ffffff !important;
}
[data-theme="dark"] .pf-budget-info-btn {
    background: rgba(16, 185, 129, 0.15) !important;
    border-color: rgba(52, 211, 153, 0.3) !important;
    color: #34d399 !important;
}
[data-theme="dark"] .pf-budget-info-btn:hover {
    background: rgba(16, 185, 129, 0.25) !important;
    color: #6ee7b7 !important;
}
[data-theme="dark"] button.pf-budget-info-btn:not(.collapsed),
[data-bs-theme="dark"] button.pf-budget-info-btn:not(.collapsed),
body.dark-mode button.pf-budget-info-btn:not(.collapsed),
html.dark button.pf-budget-info-btn:not(.collapsed) {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
    border-color: #10b981 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.45);
}

.pf-collapse-chevron {
    transition: transform 0.25s ease;
    display: inline-block;
}
button:not(.collapsed) > .pf-collapse-chevron,
.pf-collapse-trigger:not(.collapsed) .pf-collapse-chevron,
.pf-mobile-sort-btn:not(.collapsed) .pf-collapse-chevron {
    transform: rotate(180deg);
}

#pfCategoryDealsCollapse.collapsing,
#pfCategoryCompareCollapse.collapsing,
#pfBudgetCollapseBody.collapsing {
    transition: height 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Kategori Başlığı Özellik Butonları (Fırsatlar, Kıyasla, Bütçe) */
.pf-hero-action-bar {
    display: flex;
    align-items: center;
    gap: 6px;
}
.pf-hero-feature-btn {
    height: 32px;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid var(--pf-border);
    color: var(--pf-text-primary);
    background: var(--pf-bg-card);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.pf-hero-feature-btn:hover {
    background: var(--pf-bg-hover, rgba(0, 0, 0, 0.03));
    border-color: var(--pf-border-hover, #cbd5e1);
    color: var(--pf-text-primary);
}
.pf-hero-btn-badge {
    font-size: 9.5px;
    padding: 2px 5px;
    font-weight: 700;
    line-height: 1.1;
}
/* Açık / Aktif Durumlar (Açıldığında parlayan kenarlık ve hafif arka plan) */
.pf-hero-deals-btn:not(.collapsed) {
    background: rgba(239, 68, 68, 0.08) !important;
    border-color: #ef4444 !important;
    color: #ef4444 !important;
    box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.25);
}
.pf-hero-compare-btn:not(.collapsed) {
    background: rgba(37, 99, 235, 0.08) !important;
    border-color: #2563eb !important;
    color: #2563eb !important;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
}
.pf-hero-budget-btn:not(.collapsed) {
    background: rgba(16, 185, 129, 0.08) !important;
    border-color: #10b981 !important;
    color: #059669 !important;
    box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.25);
}

/* Dark Mode Desteği */
[data-theme="dark"] .pf-hero-deals-btn:not(.collapsed),
[data-bs-theme="dark"] .pf-hero-deals-btn:not(.collapsed),
body.dark-mode .pf-hero-deals-btn:not(.collapsed),
html.dark .pf-hero-deals-btn:not(.collapsed) {
    background: rgba(239, 68, 68, 0.18) !important;
    border-color: #f87171 !important;
    color: #fca5a5 !important;
}
[data-theme="dark"] .pf-hero-compare-btn:not(.collapsed),
[data-bs-theme="dark"] .pf-hero-compare-btn:not(.collapsed),
body.dark-mode .pf-hero-compare-btn:not(.collapsed),
html.dark .pf-hero-compare-btn:not(.collapsed) {
    background: rgba(37, 99, 235, 0.2) !important;
    border-color: #60a5fa !important;
    color: #93c5fd !important;
}
[data-theme="dark"] .pf-hero-budget-btn:not(.collapsed),
[data-bs-theme="dark"] .pf-hero-budget-btn:not(.collapsed),
body.dark-mode .pf-hero-budget-btn:not(.collapsed),
html.dark .pf-hero-budget-btn:not(.collapsed) {
    background: rgba(16, 185, 129, 0.18) !important;
    border-color: #34d399 !important;
    color: #6ee7b7 !important;
}

@media (max-width: 767.98px) {
    .pf-hero-feature-btn {
        display: none !important;
    }
}



/* Aksiyon İkonları - Kusursuz Yuvarlak & Kompakt */
.pf-card-action-group {
    display: inline-flex !important;
    align-items: center !important;
    align-content: center !important;
    vertical-align: middle !important;
    gap: 6px !important;
    height: 28px !important;
    line-height: 1 !important;
}
.pf-card-action-btn {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    max-width: 28px !important;
    min-height: 28px !important;
    max-height: 28px !important;
    position: relative !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
    background: var(--pf-bg-card, #ffffff) !important;
    border: 1px solid var(--pf-border, #e2e8f0) !important;
    color: var(--pf-text-secondary, #475569) !important;
    box-sizing: border-box !important;
    line-height: 1 !important;
    text-decoration: none !important;
    transition: all 0.15s ease !important;
    touch-action: manipulation !important;
}
/* Touch hit area expansion (42px) */
.pf-card-action-btn::after {
    content: '' !important;
    position: absolute !important;
    top: -7px !important;
    left: -7px !important;
    right: -7px !important;
    bottom: -7px !important;
}
.pf-card-action-btn:hover {
    background: var(--pf-bg-body, #f1f5f9) !important;
    border-color: var(--pf-accent, #0f4c81) !important;
    color: var(--pf-text-primary) !important;
}
.pf-card-action-btn i {
    font-size: 12px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
}
[data-theme="dark"] .pf-card-action-btn,
[data-bs-theme="dark"] .pf-card-action-btn,
body.dark-mode .pf-card-action-btn,
html.dark .pf-card-action-btn {
    background: var(--pf-bg-card, #1e2132) !important;
    border-color: var(--pf-border, #2a2e3f) !important;
    color: var(--pf-text-secondary, #94a3b8) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}

/* Aksiyon Grubu İndirim Rozeti (Varyasyon İkonunun Solunda) - Beğen Butonuyla Birebir Aynı Hiza & Boyut */
.pf-action-discount-badge {
    background: var(--pf-bg-card, #ffffff) !important;
    color: var(--pf-text-primary, #0f172a) !important;
    border: 1px solid var(--pf-border, #e2e8f0) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    vertical-align: middle !important;
    box-sizing: border-box !important;
    gap: 2.5px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    user-select: none !important;
    height: 26px !important;
    min-height: 26px !important;
    max-height: 26px !important;
    border-radius: 50px !important;
    padding: 0 8px !important;
    font-size: 10.5px !important;
    margin: 0 2px 0 0 !important;
    letter-spacing: -0.2px !important;
    flex-shrink: 0 !important;
    transition: all 0.2s ease !important;
}
.pf-action-discount-badge:hover {
    background: var(--pf-bg-body, #f1f5f9) !important;
    border-color: #cbd5e1 !important;
    color: var(--pf-text-primary, #0f172a) !important;
}
.pf-action-discount-badge i {
    font-size: 9px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    margin: 0 !important;
    color: var(--pf-text-primary, #0f172a) !important;
}
.pf-action-discount-badge span {
    display: inline-flex !important;
    align-items: center !important;
    line-height: 1 !important;
}
.pf-mobile-circle-actions .pf-action-discount-badge {
    height: 30px !important;
    min-height: 30px !important;
    max-height: 30px !important;
    border-radius: 50px !important;
    padding: 0 8px !important;
    font-size: 11.5px !important;
    margin: 0 2px 0 0 !important;
    align-self: center !important;
    vertical-align: middle !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06) !important;
}
[data-theme="dark"] .pf-action-discount-badge,
[data-bs-theme="dark"] .pf-action-discount-badge,
body.dark-mode .pf-action-discount-badge,
html.dark .pf-action-discount-badge {
    background: var(--pf-bg-card, #1e2132) !important;
    color: var(--pf-text-primary, #f8fafc) !important;
    border-color: var(--pf-border, #2a2e3f) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}
[data-theme="dark"] .pf-action-discount-badge i,
[data-bs-theme="dark"] .pf-action-discount-badge i,
body.dark-mode .pf-action-discount-badge i,
html.dark .pf-action-discount-badge i {
    color: var(--pf-text-primary, #f8fafc) !important;
}

/* Karşılaştırma Responsive Tasarım Stilleri */
.pf-cmp-card-link {
    display: flex !important;
    flex-direction: column !important;
    background: var(--pf-bg-card);
    border: 1px solid var(--pf-border);
    border-radius: 10px;
    padding: 10px !important;
    text-decoration: none !important;
    color: inherit !important;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pf-cmp-card-link:hover {
    border-color: var(--pf-accent, #0f4c81);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.pf-cmp-prod-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 0;
    gap: 6px;
}
.pf-cmp-prod-info {
    min-width: 0;
    flex: 1;
    width: 100%;
}
.pf-cmp-prod-name {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--pf-text-primary);
    line-height: 1.3;
    height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
.pf-cmp-prod-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    margin-top: 2px;
}
@media (max-width: 767.98px) {
    .pf-cmp-card-link {
        padding: 6px 8px !important;
        border-radius: 8px !important;
    }
    .pf-cmp-thumb {
        width: 36px !important;
        height: 36px !important;
        padding: 2px !important;
        border-radius: 6px !important;
    }
    .pf-cmp-thumb img {
        max-width: 30px !important;
        max-height: 30px !important;
    }
    .pf-cmp-prod-col {
        gap: 3px !important;
    }
    .pf-cmp-prod-name {
        font-size: 10.5px !important;
        line-height: 1.25 !important;
        height: 2.5em !important;
        max-height: 2.5em !important;
    }
    .pf-cmp-prod-meta {
        margin-top: 1px !important;
        gap: 3px !important;
    }
    .pf-cmp-prod-meta span[style*="font-size: 13px"],
    .pf-cmp-prod-meta span:first-child {
        font-size: 11.5px !important;
    }
    .pf-cmp-prod-meta .text-muted {
        font-size: 9px !important;
    }
    .pf-vs-badge {
        width: 22px !important;
        height: 22px !important;
        font-size: 8.5px !important;
        border-width: 1.5px !important;
        box-shadow: 0 0 4px rgba(37, 99, 235, 0.2) !important;
    }
    .pf-cmp-card-link .badge {
        font-size: 7.5px !important;
        padding: 1px 3px !important;
        max-width: 42px !important;
        border-radius: 3px !important;
    }
    .pf-cmp-center-col {
        width: 42px !important;
        min-width: 42px !important;
        padding: 0 2px !important;
    }
    #pfCategoryCompareCollapse .pf-products-list,
    #pfProductCompareCollapse .pf-products-list {
        gap: 6px !important;
    }
}
@media (min-width: 768px) {
    .pf-cmp-card-link {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 12px 14px !important;
        gap: 16px !important;
    }
    .pf-cmp-prod-col {
        flex-direction: row !important;
        text-align: left !important;
        gap: 10px !important;
    }
    .pf-cmp-prod-name {
        font-size: 13px !important;
        height: auto !important;
        max-height: 2.6em !important;
    }
    .pf-cmp-prod-meta {
        justify-content: flex-start !important;
    }
}

/* Kompakt Marka Barı Stilleri */
.pf-brands-wrapper {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    margin-top: 12px !important;
    margin-bottom: 14px !important;
    padding: 6px 0 8px 0 !important;
}
@media (min-width: 768px) {
    .pf-brands-wrapper {
        margin-top: 16px !important;
        margin-bottom: 18px !important;
        padding: 8px 0 10px 0 !important;
    }
}
.pf-brand-chip {
    height: 28px !important;
    font-size: 11.5px !important;
    padding: 0 9px !important;
    border-radius: 7px !important;
    gap: 5px !important;
    line-height: 1 !important;
}
@media (min-width: 768px) {
    .pf-brand-chip {
        height: 32px !important;
        font-size: 12px !important;
        padding: 0 12px !important;
        border-radius: 8px !important;
        gap: 6px !important;
    }
}

/* Kompakt Fırsatlar & Karşılaştırmalar Stilleri */
.pf-feature-box {
    padding: 8px 10px !important;
    border-radius: 10px !important;
}
@media (min-width: 768px) {
    .pf-feature-box {
        padding: 12px 14px !important;
        border-radius: 12px !important;
    }
}
.pf-feature-box-header {
    cursor: default;
}
@media (max-width: 767.98px) {
    .pf-feature-box {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    .pf-feature-box-header {
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
}
.pf-feature-icon {
    width: 28px !important;
    height: 28px !important;
    font-size: 12.5px !important;
    border-radius: 6px !important;
}
@media (min-width: 768px) {
    .pf-feature-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
        border-radius: 8px !important;
    }
}
.pf-feature-title {
    font-size: 13.5px !important;
    font-weight: 750 !important;
}
@media (min-width: 768px) {
    .pf-feature-title {
        font-size: 15px !important;
        font-weight: 800 !important;
    }
}
.pf-feature-toggle-btn {
    height: 28px !important;
    padding: 0 8px !important;
    font-size: 11.5px !important;
    border-radius: 6px !important;
}
@media (min-width: 768px) {
    .pf-feature-toggle-btn {
        height: 32px !important;
        padding: 0 10px !important;
        font-size: 12px !important;
        border-radius: 8px !important;
    }
}
.pf-deal-hero-card {
    background: var(--pf-bg-card) !important;
    border: 1px solid rgba(239, 68, 68, 0.22) !important;
    border-radius: 10px !important;
    transition: all 0.2s ease !important;
}
.pf-deal-hero-card:hover {
    border-color: rgba(239, 68, 68, 0.45) !important;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.08) !important;
    transform: translateY(-2px) !important;
}
.pf-deal-hero-thumb {
    width: 60px !important;
    height: 60px !important;
    padding: 3px !important;
}
@media (min-width: 768px) {
    .pf-deal-hero-thumb {
        width: 72px !important;
        height: 72px !important;
        padding: 4px !important;
    }
}
.pf-deal-multi-thumb {
    width: 50px !important;
    height: 50px !important;
    padding: 2px !important;
}
@media (min-width: 768px) {
    .pf-deal-multi-thumb {
        width: 72px !important;
        height: 72px !important;
        padding: 4px !important;
    }
}
.pf-deal-thumb {
    width: 48px !important;
    height: 48px !important;
    padding: 2px !important;
    border-radius: 6px !important;
}
@media (min-width: 768px) {
    .pf-deal-thumb {
        width: 58px !important;
        height: 58px !important;
        padding: 3px !important;
        border-radius: 8px !important;
    }
}
.pf-cmp-thumb {
    width: 46px !important;
    height: 46px !important;
    padding: 2px !important;
    border-radius: 6px !important;
}
@media (min-width: 768px) {
    .pf-cmp-thumb {
        width: 56px !important;
        height: 56px !important;
        padding: 3px !important;
        border-radius: 8px !important;
    }
}
.pf-vs-badge {
    width: 24px !important;
    height: 24px !important;
    font-size: 9px !important;
}
@media (min-width: 768px) {
    .pf-vs-badge {
        width: 28px !important;
        height: 28px !important;
        font-size: 10px !important;
    }
}


/* Products Grid Auxiliary */
.pf-budget-chips-track {
    display: flex;
    align-items: center;
    gap: 8px !important;
    flex-wrap: wrap;
    margin: 8px 0;
}
.pf-budget-chip-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 600;
    border: 1px solid var(--pf-border);
    background: var(--pf-bg-card);
    color: var(--pf-text-secondary);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}
.pf-budget-chip-btn:hover {
    background: var(--pf-bg-hover);
    color: var(--pf-text-primary);
    border-color: var(--pf-accent);
    transform: translateY(-1px);
}
.pf-budget-chip-btn.active {
    background: var(--pf-accent);
    color: #ffffff;
    border-color: var(--pf-accent);
    box-shadow: 0 2px 8px rgba(15, 76, 129, 0.25);
}

/* Mobil Kompakt Tasarım */
@media (max-width: 768px) {
    .pf-budget-chips-track {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        padding-bottom: 2px !important;
        margin: 4px 0 6px 0 !important;
        gap: 6px !important;
    }
    .pf-budget-chips-track::-webkit-scrollbar {
        display: none;
    }
    .pf-budget-chip-btn {
        padding: 4px 10px !important;
        font-size: 11.5px !important;
        flex-shrink: 0 !important;
    }
    #pfBudgetMatchesContainer {
        min-height: 90px !important;
    }
    .pf-budget-wizard-cards {
        gap: 8px !important;
        padding-bottom: 4px !important;
    }
    .pf-budget-wizard-card {
        min-width: 145px !important;
        max-width: 155px !important;
        padding: 8px !important;
        border-radius: 8px !important;
    }
    .pf-budget-wizard-img-wrap {
        height: 75px !important;
        margin-bottom: 6px !important;
    }
    .pf-budget-wizard-name {
        font-size: 11px !important;
        height: 28px !important;
        line-height: 1.25 !important;
        margin-bottom: 4px !important;
    }
    .pf-budget-wizard-price {
        font-size: 12.5px !important;
    }
    .pf-budget-wizard-card .btn-outline-primary {
        padding: 1px 6px !important;
        font-size: 10px !important;
    }
}


/* Pagination Auxiliary */
                        .pf-pagination .page-link {
                            min-width: 44px;
                            min-height: 44px;
                            display: inline-flex;
                            align-items: center;
                            justify-content: center;
                            border-radius: 8px !important;
                            font-size: 14px;
                            font-weight: 600;
                        }
