﻿/* ═══════════════════════════════════════════════
   PARTSAVM — CORPORATE TEMA
   site.css — Global tema stilleri
   ═══════════════════════════════════════════════ */
        /* ═══════════════════════════════════════════
               PARTSAVM — CORPORATE TEMA
               Mevcut vendor CSS üzerine override eder
            ═══════════════════════════════════════════ */

        :root {
            --ink: #0d1b2e;
            --ink-2: #1e2f45;
            --ink-3: #374f68;
            --muted: #6b7f96;
            --muted-2: #9eafc0;
            --line: #e2e8ef;
            --line-2: #eef1f5;
            --surface: #f4f6f9;
            --surface-2: #edf0f4;
            --white: #ffffff;
            --red: #c8220c;
            --red-hover: #a81c09;
            --red-light: #fff0ed;
            --red-border: #fbd0c8;
            --navy: #0d2a4e;
            --navy-light: #e8f0fa;
            --navy-border: #c2d4eb;
            --green: #0a7c4a;
            --green-light: #e6f7ef;
            --f-display: 'Barlow Condensed', sans-serif;
            --f-body: 'Barlow', sans-serif;
            --f-ui: 'Nunito Sans', sans-serif;
            --shadow-sm: 0 1px 3px rgba(13,27,46,.08);
            --shadow-md: 0 4px 12px rgba(13,27,46,.10), 0 2px 6px rgba(13,27,46,.06);
            --shadow-lg: 0 12px 32px rgba(13,27,46,.12), 0 4px 12px rgba(13,27,46,.07);
        }

        *, *::before, *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            padding: 0;
            background: var(--surface);
            font-family: var(--f-body);
            color: var(--ink);
        }

        a {
            color: var(--red);
            text-decoration: none;
        }

            a:hover {
                color: var(--red-hover);
            }

        /* ── TOPBAR (Duyuru Şeridi) ── */
        .pts-topbar {
            background: var(--navy);
            padding: 0;
            height: 36px;
            display: flex;
            align-items: center;
        }

        .pts-topbar-inner {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .pts-topbar-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .pts-topbar-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: var(--f-ui);
            font-size: 11px;
            font-weight: 600;
            color: rgba(255,255,255,.75);
            white-space: nowrap;
        }

            .pts-topbar-item i {
                font-size: 10px;
                color: rgba(255,255,255,.45);
            }

        .pts-topbar-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .pts-topbar-link {
            font-family: var(--f-ui);
            font-size: 11px;
            font-weight: 600;
            color: rgba(255,255,255,.6);
            text-decoration: none;
            transition: color .15s;
        }

            .pts-topbar-link:hover {
                color: white;
            }

        .pts-topbar-sep {
            width: 1px;
            height: 12px;
            background: rgba(255,255,255,.15);
        }

        .pts-topbar-phone {
            font-family: var(--f-ui);
            font-size: 12px;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 5px;
        }

            .pts-topbar-phone i {
                color: rgba(255,255,255,.5);
                font-size: 11px;
            }

        /* ── ANA NAVBAR ── */
        .pts-navbar {
            background: var(--white);
            border-bottom: 1px solid var(--line);
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 500;
        }

        .pts-navbar-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            height: 68px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        /* Logo */
        .pts-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            flex-shrink: 0;
        }

        .pts-logo-img {
            max-height: 44px;
            width: auto;
        }

        .pts-logo-text {
            font-family: var(--f-display);
            font-size: 24px;
            font-weight: 900;
            color: var(--ink);
            letter-spacing: -.02em;
            line-height: 1;
        }

            .pts-logo-text span {
                color: var(--red);
            }

        /* Arama */
        .pts-search {
            flex: 1;
            max-width: 560px;
            position: relative;
        }

        .pts-search-form {
            display: flex;
            border: 2px solid var(--line);
            border-radius: 7px;
            overflow: hidden;
            transition: border-color .2s;
            background: var(--white);
        }

            .pts-search-form:focus-within {
                border-color: var(--red);
            }

        .pts-search-input {
            flex: 1;
            border: none;
            outline: none;
            padding: 0 14px;
            font-family: var(--f-ui);
            font-size: 14px;
            color: var(--ink);
            background: transparent;
            height: 44px;
        }

            .pts-search-input::placeholder {
                color: var(--muted-2);
            }

        .pts-search-btn {
            background: var(--red);
            border: none;
            padding: 0 18px;
            color: white;
            cursor: pointer;
            font-size: 15px;
            transition: background .15s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .pts-search-btn:hover {
                background: var(--red-hover);
            }

        /* Live search suggestions */
        .pts-suggestions {
            position: absolute;
            top: calc(100% + 4px);
            left: 0;
            right: 0;
            background: var(--white);
            border: 1.5px solid var(--line);
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            z-index: 9999;
            max-height: 380px;
            overflow-y: auto;
            display: none;
        }

        .pts-suggestion-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 14px;
            border-bottom: 1px solid var(--line-2);
            text-decoration: none;
            color: var(--ink);
            transition: background .12s;
        }

            .pts-suggestion-item:last-child {
                border-bottom: none;
            }

            .pts-suggestion-item:hover {
                background: var(--surface);
            }

        .pts-suggestion-img {
            width: 40px;
            height: 40px;
            object-fit: contain;
            border: 1px solid var(--line);
            border-radius: 5px;
            flex-shrink: 0;
        }

        .pts-suggestion-name {
            font-family: var(--f-ui);
            font-size: 13px;
            font-weight: 700;
            color: var(--ink);
            line-height: 1.3;
        }

        .pts-suggestion-meta {
            font-family: var(--f-ui);
            font-size: 11px;
            color: var(--muted);
            margin-top: 2px;
        }

        .pts-suggestion-price {
            font-family: var(--f-ui);
            font-size: 13px;
            font-weight: 800;
            color: var(--red);
            margin-left: auto;
            flex-shrink: 0;
        }

        .pts-suggestion-all {
            display: block;
            text-align: center;
            padding: 10px;
            font-family: var(--f-ui);
            font-size: 12px;
            font-weight: 800;
            color: var(--red);
            background: var(--surface);
            text-decoration: none;
            transition: background .12s;
        }

            .pts-suggestion-all:hover {
                background: var(--red-light);
            }

        /* Nav actions */
        .pts-nav-actions {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-left: auto;
            flex-shrink: 0;
        }

        .pts-nav-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2px;
            width: 52px;
            height: 52px;
            border-radius: 8px;
            background: none;
            border: none;
            color: var(--ink-3);
            cursor: pointer;
            text-decoration: none;
            transition: all .15s;
            position: relative;
        }

            .pts-nav-btn:hover {
                background: var(--surface);
                color: var(--ink);
            }

            .pts-nav-btn i {
                font-size: 18px;
            }

        .pts-nav-btn-label {
            font-family: var(--f-ui);
            font-size: 9px;
            font-weight: 700;
            letter-spacing: .04em;
            text-transform: uppercase;
            color: var(--muted);
            line-height: 1;
        }

        .pts-nav-badge {
            position: absolute;
            top: 6px;
            right: 6px;
            min-width: 16px;
            height: 16px;
            background: var(--red);
            color: white;
            border-radius: 8px;
            font-family: var(--f-ui);
            font-size: 9px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 3px;
        }

        /* Hesabım dropdown */
        .pts-account-wrap {
            position: relative;
        }

        .pts-account-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            min-width: 180px;
            background: var(--white);
            border: 1.5px solid var(--line);
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            padding: 6px 0;
            opacity: 0;
            pointer-events: none;
            transform: translateY(6px);
            transition: all .2s;
            z-index: 600;
        }

        .pts-account-wrap:hover .pts-account-dropdown {
            opacity: 1;
            pointer-events: all;
            transform: translateY(0);
        }

        .pts-account-dd-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            font-family: var(--f-ui);
            font-size: 13px;
            font-weight: 600;
            color: var(--ink-3);
            text-decoration: none;
            transition: all .12s;
        }

            .pts-account-dd-item:hover {
                background: var(--surface);
                color: var(--ink);
            }

            .pts-account-dd-item i {
                width: 16px;
                color: var(--muted-2);
                font-size: 13px;
            }

        /* Sepet butonu */
        .pts-cart-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--red);
            border: none;
            border-radius: 8px;
            padding: 10px 16px;
            color: white;
            cursor: pointer;
            text-decoration: none;
            transition: all .2s;
            box-shadow: 0 3px 12px rgba(200,34,12,.2);
            flex-shrink: 0;
            position: relative;
        }

            .pts-cart-btn:hover {
                background: var(--red-hover);
                color: white;
                transform: translateY(-1px);
                box-shadow: 0 6px 20px rgba(200,34,12,.3);
            }

            .pts-cart-btn i {
                font-size: 18px;
            }

        .pts-cart-info {
            display: flex;
            flex-direction: column;
        }

        .pts-cart-label {
            font-family: var(--f-ui);
            font-size: 9px;
            font-weight: 700;
            letter-spacing: .06em;
            text-transform: uppercase;
            opacity: .8;
            line-height: 1;
        }

        .pts-cart-total {
            font-family: var(--f-display);
            font-size: 15px;
            font-weight: 800;
            line-height: 1.2;
        }

        .pts-cart-count-pill {
            position: absolute;
            top: -6px;
            right: -6px;
            min-width: 18px;
            height: 18px;
            background: var(--navy);
            color: white;
            border-radius: 9px;
            font-family: var(--f-ui);
            font-size: 10px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 4px;
            border: 2px solid white;
        }

        /* ── İKİNCİL NAV ── */
        .pts-subnav {
            background: var(--ink);
            border-bottom: 1px solid rgba(255,255,255,.06);
        }

        .pts-subnav-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            height: 42px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .pts-subnav-cats-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--red);
            border: none;
            border-radius: 5px;
            padding: 7px 14px;
            color: white;
            font-family: var(--f-ui);
            font-size: 12px;
            font-weight: 800;
            cursor: pointer;
            letter-spacing: .03em;
            white-space: nowrap;
            flex-shrink: 0;
            margin-right: 8px;
            text-decoration: none;
            transition: background .15s;
        }

            .pts-subnav-cats-btn:hover {
                background: var(--red-hover);
                color: white;
            }

        .pts-subnav-link {
            font-family: var(--f-ui);
            font-size: 12px;
            font-weight: 700;
            color: rgba(255,255,255,.65);
            text-decoration: none;
            padding: 4px 10px;
            border-radius: 4px;
            white-space: nowrap;
            transition: all .15s;
        }

            .pts-subnav-link:hover {
                color: white;
                background: rgba(255,255,255,.08);
            }

        .pts-subnav-sep {
            width: 1px;
            height: 14px;
            background: rgba(255,255,255,.1);
            margin: 0 4px;
        }

        .pts-subnav-phone {
            margin-left: auto;
            font-family: var(--f-ui);
            font-size: 12px;
            font-weight: 800;
            color: rgba(255,255,255,.6);
            display: flex;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
        }

            .pts-subnav-phone i {
                color: rgba(255,255,255,.35);
                font-size: 11px;
            }

        /* ── KATEGORİ DROPDOWN (Departments) override ── */
        .pts-cats-wrap {
            position: relative;
        }

        .pts-cats-dropdown {
            position: absolute;
            top: calc(100% + 4px);
            left: 0;
            min-width: 240px;
            background: var(--white);
            border: 1.5px solid var(--line);
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            z-index: 700;
            padding: 6px 0;
            opacity: 0;
            pointer-events: none;
            transform: translateY(6px);
            transition: all .2s;
        }

            .pts-cats-wrap:hover .pts-cats-dropdown,
            .pts-cats-dropdown.open {
                opacity: 1;
                pointer-events: all;
                transform: translateY(0);
            }
            /* CategoryMenu bileşenini override et */
            .pts-cats-dropdown ul,
            .pts-cats-dropdown .sidebar-links__item {
                list-style: none;
                margin: 0;
                padding: 0;
            }

            .pts-cats-dropdown a {
                display: flex;
                align-items: center;
                gap: 8px;
                padding: 9px 16px;
                font-family: var(--f-ui);
                font-size: 13px;
                font-weight: 600;
                color: var(--ink-3);
                text-decoration: none;
                transition: all .12s;
                border-left: 3px solid transparent;
            }

                .pts-cats-dropdown a:hover {
                    background: var(--red-light);
                    color: var(--red);
                    border-left-color: var(--red);
                }

        /* ── MOBİL HEADER ── */
        .pts-mob-header {
            display: none;
            background: var(--white);
            border-bottom: 1px solid var(--line);
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 500;
        }

        .pts-mob-inner {
            height: 56px;
            padding: 0 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .pts-mob-menu-btn {
            width: 38px;
            height: 38px;
            border-radius: 6px;
            background: var(--surface);
            border: 1.5px solid var(--line);
            color: var(--ink);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            flex-shrink: 0;
            font-size: 16px;
        }

        .pts-mob-logo {
            flex: 1;
            text-align: center;
            font-family: var(--f-display);
            font-size: 20px;
            font-weight: 900;
            color: var(--ink);
            text-decoration: none;
        }

            .pts-mob-logo span {
                color: var(--red);
            }

            .pts-mob-logo img {
                max-height: 32px;
            }

        .pts-mob-actions {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
        }

        .pts-mob-action-btn {
            width: 36px;
            height: 36px;
            border-radius: 6px;
            background: none;
            border: none;
            color: var(--ink-3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 17px;
            text-decoration: none;
            position: relative;
            transition: all .15s;
        }

            .pts-mob-action-btn:hover {
                background: var(--surface);
                color: var(--ink);
            }

        .pts-mob-cart-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            background: var(--red);
            border: none;
            border-radius: 6px;
            padding: 7px 12px;
            color: white;
            font-family: var(--f-ui);
            font-size: 12px;
            font-weight: 800;
            text-decoration: none;
            position: relative;
            transition: background .15s;
        }

            .pts-mob-cart-btn:hover {
                background: var(--red-hover);
                color: white;
            }

        .pts-mob-search-bar {
            padding: 8px 16px;
            background: var(--surface);
            border-bottom: 1px solid var(--line);
            position: relative;
        }

        .pts-mob-search-form {
            display: flex;
            border: 1.5px solid var(--line);
            border-radius: 6px;
            overflow: hidden;
            background: var(--white);
        }

        .pts-mob-search-inp {
            flex: 1;
            border: none;
            outline: none;
            padding: 8px 12px;
            font-family: var(--f-ui);
            font-size: 13px;
            color: var(--ink);
            background: transparent;
        }

        .pts-mob-search-btn {
            background: var(--red);
            border: none;
            padding: 0 14px;
            color: white;
            font-size: 13px;
            cursor: pointer;
        }

        /* ── MOBİL DRAWER ── */
        .pts-drawer-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(13,27,46,.55);
            z-index: 800;
        }

            .pts-drawer-overlay.open {
                display: block;
            }

        .pts-drawer {
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            width: 280px;
            background: var(--white);
            z-index: 810;
            transform: translateX(-100%);
            transition: transform .3s cubic-bezier(.4,0,.2,1);
            overflow-y: auto;
            padding: 0 0 20px;
            box-shadow: 4px 0 24px rgba(13,27,46,.15);
        }

            .pts-drawer.open {
                transform: translateX(0);
            }

        .pts-drawer-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 16px;
            border-bottom: 1px solid var(--line);
            margin-bottom: 6px;
        }

        .pts-drawer-logo {
            font-family: var(--f-display);
            font-size: 20px;
            font-weight: 900;
            color: var(--ink);
            text-decoration: none;
        }

            .pts-drawer-logo span {
                color: var(--red);
            }

        .pts-drawer-close {
            width: 30px;
            height: 30px;
            border-radius: 4px;
            background: var(--surface);
            border: none;
            color: var(--muted);
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .pts-drawer-close:hover {
                background: var(--red-light);
                color: var(--red);
            }

        .pts-drawer-nav a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            font-family: var(--f-ui);
            font-size: 14px;
            font-weight: 700;
            color: var(--ink-3);
            text-decoration: none;
            transition: all .12s;
            border-left: 3px solid transparent;
        }

            .pts-drawer-nav a:hover {
                color: var(--red);
                background: var(--red-light);
                border-left-color: var(--red);
            }

            .pts-drawer-nav a i {
                width: 18px;
                text-align: center;
                color: var(--muted-2);
                font-size: 14px;
            }

            .pts-drawer-nav a:hover i {
                color: var(--red);
            }

        .pts-drawer-sep {
            height: 1px;
            background: var(--line);
            margin: 6px 16px;
        }

        .pts-drawer-cats-title {
            font-family: var(--f-ui);
            font-size: 10px;
            font-weight: 800;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--muted);
            padding: 10px 20px 4px;
        }
        /* CategoryMenu içindeki linkleri drawer'da stilize et */
        .pts-drawer-catmenu a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 20px;
            font-family: var(--f-ui);
            font-size: 13px;
            font-weight: 600;
            color: var(--ink-3);
            text-decoration: none;
            transition: all .12s;
            border-left: 3px solid transparent;
        }

            .pts-drawer-catmenu a:hover {
                color: var(--red);
                background: var(--red-light);
                border-left-color: var(--red);
            }

        .pts-drawer-catmenu ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        /* ── CONTENT WRAPPER ── */
        .pts-content {
            min-height: 60vh;
            background: var(--surface);
        }

        /* ── FOOTER ── */
        .pts-footer {
            background: var(--ink);
        }

        .pts-footer-top {
            max-width: 1400px;
            margin: 0 auto;
            padding: 48px 24px 36px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 48px;
        }

        .pts-footer-brand-text {
            font-family: var(--f-display);
            font-size: 26px;
            font-weight: 900;
            color: white;
            letter-spacing: -.02em;
            margin-bottom: 10px;
        }

            .pts-footer-brand-text span {
                color: var(--red);
            }

        .pts-footer-brand-desc {
            font-family: var(--f-ui);
            font-size: 13px;
            color: rgba(255,255,255,.45);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .pts-footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-family: var(--f-ui);
            font-size: 13px;
            color: rgba(255,255,255,.6);
            margin-bottom: 8px;
        }

            .pts-footer-contact-item i {
                color: var(--red);
                font-size: 12px;
                margin-top: 2px;
                width: 14px;
                flex-shrink: 0;
            }

        .pts-footer-col-title {
            font-family: var(--f-ui);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: rgba(255,255,255,.4);
            margin-bottom: 16px;
        }

        .pts-footer-link {
            display: block;
            font-family: var(--f-ui);
            font-size: 13px;
            font-weight: 600;
            color: rgba(255,255,255,.6);
            text-decoration: none;
            margin-bottom: 8px;
            transition: color .12s;
        }

            .pts-footer-link:hover {
                color: white;
            }

        .pts-footer-trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--f-ui);
            font-size: 12px;
            color: rgba(255,255,255,.55);
            margin-bottom: 10px;
        }

            .pts-footer-trust-item i {
                color: var(--red);
                width: 14px;
            }

        .pts-footer-bottom {
            border-top: 1px solid rgba(255,255,255,.06);
            padding: 16px 24px;
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }

        .pts-footer-copy {
            font-family: var(--f-ui);
            font-size: 12px;
            color: rgba(255,255,255,.35);
        }

        .pts-footer-ssl {
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: var(--f-ui);
            font-size: 12px;
            color: rgba(255,255,255,.35);
        }

            .pts-footer-ssl i {
                color: var(--green);
            }

        .pts-footer-payments img {
            max-height: 24px;
            opacity: .7;
        }

        /* ── BREADCRUMB override ── */
        .breadcrumb {
            background: var(--white);
            border-bottom: 1px solid var(--line);
            padding: 10px 24px;
            margin: 0;
            border-radius: 0;
        }

        .breadcrumb-item a {
            color: var(--muted);
            font-family: var(--f-ui);
            font-size: 12px;
            font-weight: 600;
            text-decoration: none;
        }

            .breadcrumb-item a:hover {
                color: var(--red);
            }

        .breadcrumb-item.active {
            color: var(--red);
            font-family: var(--f-ui);
            font-size: 12px;
            font-weight: 700;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: var(--muted-2);
        }

        /* ── BOOTSTRAP PRIMARY OVERRIDE ── */
        .btn-primary {
            background: var(--red);
            border-color: var(--red);
            font-family: var(--f-ui);
            font-weight: 700;
        }

            .btn-primary:hover {
                background: var(--red-hover);
                border-color: var(--red-hover);
            }

        .text-primary {
            color: var(--red) !important;
        }

        .bg-primary {
            background: var(--red) !important;
        }

        .border-primary {
            border-color: var(--red) !important;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 1100px) {
            .pts-topbar {
                display: none;
            }

            .pts-navbar {
                display: none;
            }

            .pts-subnav {
                display: none;
            }

            .pts-mob-header {
                display: block;
            }
        }

        @media (max-width: 768px) {
            .pts-footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
                padding: 32px 16px 24px;
            }

            .pts-footer-bottom {
                padding: 12px 16px;
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
        }

        @media (max-width: 480px) {
            .pts-footer-top {
                grid-template-columns: 1fr;
            }
        }

        /* ── LIVE SEARCH ── */
        .search-suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: var(--white);
            z-index: 9999;
            border: 1.5px solid var(--line);
            border-top: none;
            box-shadow: var(--shadow-lg);
            max-height: 360px;
            overflow-y: auto;
            border-radius: 0 0 8px 8px;
            display: none;
        }

        .search-suggestion-item {
            padding: 10px 14px;
            border-bottom: 1px solid var(--line-2);
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--ink);
            transition: background .12s;
            background: var(--white);
            gap: 12px;
        }

            .search-suggestion-item:hover {
                background: var(--surface);
            }

/* ═══════════════════════════════════════════════
   PARTSAVM — Genel Yardımcı Stiller
   ═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════
   PARTSAVM — site.css
   _Layout.cshtml içindeki :root değişkenleri
   burada da geçerlidir.
═══════════════════════════════════════ */

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    padding: 0;
    background: var(--surface);
}

/* Bootstrap focus override */
.btn:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem rgba(200,34,12,.35);
}

/* Form select stilizasyonu */
.form-control, .form-select {
    border: 1.5px solid var(--line);
    border-radius: 6px;
    font-family: var(--f-ui);
    font-size: 14px;
    color: var(--ink);
    background: var(--white);
    transition: border-color .15s;
}

    .form-control:focus, .form-select:focus {
        border-color: var(--red);
        box-shadow: 0 0 0 3px rgba(200,34,12,.08);
    }

/* Container max-width */
.container {
    max-width: 1400px;
}

/* Owl Carousel override */
.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
    background: var(--red);
}

.owl-dots .owl-dot span {
    background: var(--line);
}

/* ── ÜRÜN KARTLARI (global, tüm sayfalarda) ── */
.pts-product-card {
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .22s;
    position: relative;
    height: 100%;
}

    .pts-product-card:hover {
        border-color: var(--red-border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-3px);
    }

    .pts-product-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--red);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .22s;
    }

    .pts-product-card:hover::after {
        transform: scaleX(1);
    }

.pts-pc-img-wrap {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border-bottom: 1px solid var(--line-2);
    padding: 16px;
    position: relative;
    overflow: hidden;
}

    .pts-pc-img-wrap img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
        transition: transform .3s;
    }

.pts-product-card:hover .pts-pc-img-wrap img {
    transform: scale(1.04);
}

.pts-pc-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pts-pc-badge {
    font-family: var(--f-ui);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 3px;
    display: inline-block;
}

    .pts-pc-badge.new {
        background: var(--navy);
        color: white;
    }

    .pts-pc-badge.hot {
        background: var(--red);
        color: white;
    }

    .pts-pc-badge.stock {
        background: var(--green);
        color: white;
    }

    .pts-pc-badge.sale {
        background: #f59e0b;
        color: white;
    }

.pts-pc-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--line);
    color: var(--muted-2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    opacity: 0;
    transition: all .2s;
    z-index: 2;
}

.pts-product-card:hover .pts-pc-fav {
    opacity: 1;
}

.pts-pc-fav:hover, .pts-pc-fav.active {
    color: var(--red);
    border-color: var(--red-border);
    background: var(--red-light);
}

.pts-pc-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pts-pc-code {
    font-family: var(--f-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.pts-pc-name {
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 38px;
    text-decoration: none;
    margin-bottom: 8px;
}

    .pts-pc-name:hover {
        color: var(--red);
    }

.pts-pc-social {
    margin-top: auto;
    margin-bottom: 10px;
    min-height: 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 3px;
}

.pts-pc-social-view {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--f-ui);
    font-size: 11px;
    font-weight: 600;
    color: var(--red);
}

.pts-pc-social-cart {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--f-ui);
    font-size: 11px;
    font-weight: 600;
    color: #b45309;
}

.pts-pc-social-trust {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--f-ui);
    font-size: 11px;
    font-weight: 600;
}

    .pts-pc-social-trust.original {
        color: var(--green);
    }

    .pts-pc-social-trust.warranty {
        color: var(--navy);
    }

@keyframes pulse-red {
    0%,100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .7;
        transform: scale(1.02);
    }
}

.animate-pulse i {
    animation: pulse-red 2s infinite ease-in-out;
}

.pts-pc-footer {
    border-top: 1px solid var(--line-2);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.pts-pc-price {
    font-family: var(--f-display);
    font-size: 20px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: -.02em;
    line-height: 1;
}

.pts-pc-add-btn {
    width: 36px;
    height: 36px;
    border-radius: 7px;
    background: var(--red);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all .15s;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(200,34,12,.25);
}

    .pts-pc-add-btn:hover {
        background: var(--red-hover);
        transform: scale(1.08);
    }

/* ── SECTION HEADER ── */
.pts-sec-hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.pts-sec-kicker {
    font-family: var(--f-ui);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 4px;
}

.pts-sec-title {
    font-family: var(--f-display);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -.02em;
    line-height: 1;
}

.pts-see-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 800;
    color: var(--red);
    text-decoration: none;
    border: 1.5px solid var(--red-border);
    border-radius: 5px;
    padding: 6px 14px;
    background: var(--red-light);
    transition: all .15s;
    white-space: nowrap;
}

    .pts-see-all:hover {
        background: var(--red);
        color: white;
        border-color: var(--red);
    }

/* Slider ok butonları (owl override) */
.arrow__button {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: var(--surface);
    border: 1.5px solid var(--line);
    color: var(--ink-3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all .15s;
}

    .arrow__button:hover {
        background: var(--red);
        color: white;
        border-color: var(--red);
    }

/* Modal */
.modal-content {
    border-radius: 12px;
    border: none;
    overflow: hidden;
}

.modal-header.pts-modal-hd {
    background: var(--red);
    color: white;
    border-bottom: none;
    padding: 16px 20px;
}

    .modal-header.pts-modal-hd .modal-title {
        font-family: var(--f-display);
        font-size: 20px;
        font-weight: 800;
    }

    .modal-header.pts-modal-hd .pts-modal-close {
        background: none;
        padding: 0;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: .85;
        border: 1px solid rgba(255,255,255,.3);
        border-radius: 6px;
        cursor: pointer;
        transition: opacity .15s, background .15s;
    }
    .modal-header.pts-modal-hd .pts-modal-close:hover {
        opacity: 1;
        background: rgba(255,255,255,.15);
    }
    .modal-header.pts-modal-hd .pts-modal-close svg {
        width: 14px;
        height: 14px;
        stroke: white;
        stroke-width: 2.5;
    }

/* ══════════════════════════════════════════════
   CUSTOM TOAST BİLDİRİM SİSTEMİ
══════════════════════════════════════════════ */
.pts-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(calc(100% + 28px));
    background: var(--ink);
    color: white;
    border-radius: 8px;
    border-left: 3.5px solid var(--red);
    padding: 0;
    z-index: 9999;
    display: flex;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 20px 60px rgba(13,27,46,.35), 0 6px 20px rgba(13,27,46,.2);
    transition: transform .38s cubic-bezier(.34, 1.56, .64, 1), opacity .25s ease;
    opacity: 0;
    pointer-events: none;
    min-width: 300px;
    max-width: 420px;
    overflow: hidden;
}

.pts-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.pts-toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    flex-shrink: 0;
    color: var(--red);
}

.pts-toast-icon svg {
    display: block;
}

.pts-toast-body {
    flex: 1;
    padding: 14px 4px 10px 0;
    min-width: 0;
}

.pts-toast-title {
    font-family: var(--f-ui);
    font-size: 13.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, .95);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 7px;
}

.pts-toast-progress {
    height: 2.5px;
    width: 100%;
    border-radius: 2px;
    background: var(--red);
    opacity: .7;
}

.pts-toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .35);
    cursor: pointer;
    padding: 0 14px;
    font-size: 12px;
    flex-shrink: 0;
    transition: color .15s;
    display: flex;
    align-items: center;
}

.pts-toast-close:hover {
    color: rgba(255, 255, 255, .8);
}
