﻿
/* KT - CSS */
.product-categories-bar {
    position: fixed;
    z-index: 1000;
    right: 0;
    top: 204px;
    width: 105px;
    height: calc(100vh - 250px);
    box-shadow: 0px 0px 19.6px 0px #0000004D;
    border-bottom: 1px solid #FA7014;
}

    .product-categories-bar > .title {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-size: 20px;
        font-weight: 800;
        color: #00273A;
        gap: .5rem;
        padding: .75rem 0 .5rem 0;
        margin-bottom: -1px;
        background-color: #F6F5F5;
        box-shadow: inset 0 0 0 1px #FA7014;
        cursor: pointer;
    }

.category-item-list {
    height: calc(100% - 100px);
    overflow: auto;
    display: flex;
    flex-direction: column;
    width: calc(100% + 16px);
    margin-left: -1rem;
    padding-left: 1rem;
}

    .category-item-list::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }

    .category-item-list::-webkit-scrollbar-track {
        background-color: #F6F5F5;
    }

    .category-item-list::-webkit-scrollbar-thumb {
        background-color: #FA7014;
    }

    .category-item-list button {
        display: block;
        border: 1px solid #FA7014;
        background-color: #FFF;
        margin-bottom: -1px;
        padding: 5px;
        transition: all .2s ease;
        width: 100px;
        height: 100px;
    }

        .category-item-list button.active,
        .category-item-list button:hover {
            margin-left: -1rem;
            padding-left: calc(1rem + 5px);
            border-radius: 1rem 0 0 1rem;
            width: calc(100px + 1rem);
        }

        .category-item-list button .content span {
            display: block;
            font-size: 13px;
            line-height: 15px;
            padding-top: 4px;
            color: #00273A !important;
        }

        .category-item-list button .content img {
            width: 48px;
            height: 48px;
            object-fit: cover;
        }

.product-categories-bar .dropdown-menu {
    transform: none !important;
    top: 0 !important;
    left: auto !important;
    right: 0;
    margin: 0;
    padding: 0;
    width: 100vw;
    max-width: 715px;
    background-color: #FFF;
    border: .5px solid #FA7014;
    border-radius: 0;
}

.product-categories-bar.show {
    height: auto;
    box-shadow: none;
}

    .product-categories-bar.show > .title,
    .product-categories-bar.show > .category-item-list {
        display: none;
    }

.system-summary {
    display: flex;
}

    .system-summary > .header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        border-left: 1px solid #ddd;
        padding: 25px;
    }

        .system-summary > .header .title,
        .system-summary > .header .reset {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: .5rem;
        }

            .system-summary > .header .title span {
                writing-mode: vertical-rl;
                transform: rotate(180deg);
                display: inline-block;
                text-align: center;
                font-size: 20px;
                font-weight: 800;
                padding-bottom: .5rem;
                cursor: pointer;
            }

        .system-summary > .header .reset {
            flex-direction: column-reverse;
        }

            .system-summary > .header .reset span {
                writing-mode: vertical-rl;
                transform: rotate(180deg);
                display: inline-block;
                text-align: center;
                color: red;
                font-size: 20px;
                font-weight: 800;
                padding-top: .5rem;
                cursor: pointer;
            }

    .system-summary .content {
        flex-grow: 1;
        height: 65vh;
        overflow: auto;
        display: flex;
        flex-direction: column;
    }

        .system-summary .content::-webkit-scrollbar {
            width: 5px;
        }

        .system-summary .content::-webkit-scrollbar-track {
            background-color: #F6F5F5;
        }

        .system-summary .content::-webkit-scrollbar-thumb {
            background-color: #505050
        }

/* .system-summary .content .top-bar {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: .5rem;
    background-color: #FFF;
    padding: 1rem .5rem;
}

    .system-summary .content .top-bar span {
        display: flex;
        align-items: center;
        gap: .5rem;
        font-size: 14px;
        line-height: 1rem;
        font-weight: 400;
        cursor: pointer;
    }

        .system-summary .content .top-bar span svg {
            width: auto;
            height: 23px;
        } */

.system-summary-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    padding: 12px;
    margin: 12px 0;
    height: calc(100% - 214px);
    overflow: auto;
}

    .system-summary-list .list-item {
        width: calc(100% - 20px);
        position: relative;
        display: flex;
        align-items: center;
        background-color: #F2F2F2;
        border-radius: 5px;
        padding: 9px 8px;
        gap: .75rem;
    }

        .system-summary-list .list-item > small {
            width: 38px;
            font-size: 11px;
            text-align: center;
            font-weight: bold;
            color: #FA7014;
            white-space: nowrap;
        }

        .system-summary-list .list-item .image {
            flex-shrink: 0;
            width: 75px;
            height: 70px;
        }

            .system-summary-list .list-item .image img {
                width: 100%;
                height: 100%;
                max-width: 75px;
                max-height: 70px;
                object-fit: cover;
            }

        .system-summary-list .list-item .title {
            flex-grow: 1;
            display: block;
            font-size: 14px;
            line-height: 1rem;
            font-weight: 800;
        }

        .system-summary-list .list-item .price {
            display: block;
            white-space: nowrap;
            font-size: 18px;
            line-height: 1rem;
            font-weight: 700;
        }

        .system-summary-list .list-item .delete {
            position: absolute;
            right: -15px;
            top: -15px;
            border: none;
            background-color: transparent;
        }

.system-summary .content .summary {
    position: sticky;
    bottom: 0;
    background: #E2E2E22B;
    border: 0.5px solid #dddddd;
    border-bottom: none;
    border-right: none;
    padding: 10px 13px 20px 13px;
}

    .system-summary .content .summary .block {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .system-summary .content .summary .installments {
        display: flex;
        align-items: center;
        gap: .5rem;
        font-size: 14px;
        font-weight: 600;
        text-decoration: underline;
        color: #28282B;
        padding: 8px;
    }

    .system-summary .content .summary .price {
        display: flex;
        flex-direction: column;
        font-size: 40px;
        font-weight: 700;
        line-height: 46px;
        text-align: right;
    }

        .system-summary .content .summary .price small {
            font-size: 12px;
            line-height: 12px;
        }

    .system-summary .content .summary .add-cart {
        border: none;
        background: linear-gradient(90deg, #FFB121 0%, #FF7E08 21.5%, #FD872C 50.5%, #FF890D 81%, #FFB121 100%);
        box-shadow: 0 0 0 0.5px #BE191980;
        font-size: 20px;
        line-height: 20px;
        font-weight: 700;
        padding: 17px 12px;
        border-radius: 5px;
        width: 100%;
        max-width: 180px;
        min-width: 220px;
        color: #00273A !important;
    }

        .system-summary .content .summary .add-cart:hover {
            background: linear-gradient(90deg, #FD872C 0%, #FFB121 100%);
        }

.btn-itopya-system-filter {
    margin-bottom: 1rem;
}

.choose-buttons {
    display: flex;
    gap: 7px;
}

    .choose-buttons label {
        position: relative;
        display: flex;
        margin-bottom: 0;
        cursor: pointer;
    }

        .choose-buttons label input {
            position: absolute;
            left: 0;
            top: 0;
            opacity: 0;
        }

        .choose-buttons label > span {
            position: relative;
            display: flex;
            flex-direction: column;
            padding: 6px 30px 6px 6px;
            box-shadow: 0 0 0 0.5px #BE191980;
            border-radius: 5px;
            min-width: 130px;
        }

            .choose-buttons label > span small {
                font-size: 15px;
                color: #00273A;
                font-weight: 300;
            }

            .choose-buttons label > span strong {
                font-size: 15px;
                color: #00273A;
                font-weight: 700;
            }

            .choose-buttons label > span sup {
                position: absolute;
                right: 6px;
                top: 6px;
                width: 1rem;
                height: 1rem;
                border-radius: 1rem;
                display: flex;
                align-items: center;
                justify-content: center;
                line-height: 1rem;
                background-color: #D9D9D9;
            }

        .choose-buttons label:has(input:checked) {
            background-color: #F9DECB;
        }

.collect-computer-topbar {
    background-color: #F6F5F5;
    border-bottom: 1px solid #E8E8E8;
    padding: 12px 0 10px 0;
    margin: -20px 0 30px 0;
    top: 84px;
}

    .collect-computer-topbar .container-fluid {
        padding: 0;
    }

    .collect-computer-topbar-total {
        padding-right: 0;
    }

    .collect-computer-topbar-total .total {
        display: flex;
        align-items: center;
        font-size: 1rem;
        font-weight: 700;
        line-height: 18px;
        gap: 8px;
    }

        .collect-computer-topbar-total .total span {
            font-size: 25px;
            color: #F48221;
        }

.collect-computer-topbar-buttons {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-right: 30px;
}

.collect-computer-topbar .btn-icon {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 5px;
    box-shadow: 0 0 0 0.25px #B4B2B2;
    background-color: #FFFFFF;
    border-radius: 5px;
    color: #000;
}

    .collect-computer-topbar .btn-icon svg {
        width: auto;
        height: 18px;
    }

    .collect-computer-topbar .btn-icon span {
        font-size: 12px;
        font-weight: 400;
        line-height: 18px;
    }

.search-sortalbe {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.collect-computer-search {
    position: relative;
    display: flex;
    gap: .5rem;
}

    .collect-computer-search .collect-computer-search-input {
        position: relative;
    }

        .collect-computer-search .collect-computer-search-input svg {
            position: absolute;
            left: .5rem;
            top: 50%;
            transform: translateY(-50%);
        }

        .collect-computer-search .collect-computer-search-input .form-control {
            padding: .375rem .60rem .375rem 2.026rem;
            border-radius: 5px;
            font-size: 15px;
            line-height: 18px;
        }

    .collect-computer-search > button {
        box-shadow: 0 0 0 .5px #F48221;
        background-color: #FFE6D0;
        border-radius: 5px;
        min-width: 65px;
        font-size: 15px;
        font-weight: 400;
        border: none;
        color: #00273A !important;
    }

        .collect-computer-search > button:hover {
            box-shadow: 0 0 0 1px #F48221;
        }

.collect-computer-sortable {
    display: flex;
    align-items: center;
    gap: .5rem;
    white-space: nowrap;
}

    .collect-computer-sortable .form-control {
        width: auto;
        font-size: 15px;
        line-height: 18px;
        font-weight: 400;
    }

        .collect-computer-sortable .form-control:focus {
            border-color: #F48221;
        }


.alert-kt-warning {
    display: flex;
    align-items: center;
    gap: .5rem;
    border: none;
    color: #6F2D00;
    background-color: #FFB97E;
    box-shadow: inset 0 0 0 .5px #3F1900;
    border-radius: 5px;
    margin: 0;
    padding: 5px 1rem 5px 7px;
}

    .alert-kt-warning span {
        display: block;
        font-size: 15px;
        line-height: 18px;
        padding: 7px 0;
        color: #000;
    }


.kt-table thead tr th {
    background-color: #F3F0F0;
}

    .kt-table thead tr th .title {
        display: flex;
        align-items: center;
        gap: .75rem;
    }

        .kt-table thead tr th .title .action {
            display: flex;
            flex-direction: column;
        }

            .kt-table thead tr th .title .action span {
                display: block;
                line-height: 0;
                padding: 3px 4px;
                cursor: pointer;
            }

                .kt-table thead tr th .title .action span:hover svg path {
                    opacity: 1;
                }

.kt-table tbody tr td {
    position: relative;
    vertical-align: middle;
    border-bottom: 1px solid #21252933;
}

    .kt-table tbody tr td .title {
        display: flex;
        align-items: center;
        gap: .5rem;
        max-width: 450px;
    }

        .kt-table tbody tr td .title .image img {
            width: auto;
            height: auto;
            max-width: 75px;
            max-height: 70px;
            object-fit: cover;
        }

        .kt-table tbody tr td .title .text {
            display: flex;
            flex-direction: column;
        }

.kt-counter {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    text-align: center;
    border: 1px solid #BDBDBD;
    background-color: #EFEFEF;
    border-radius: 5px;
    overflow: hidden;
}

    .kt-counter button {
        border: none;
        line-height: 22px;
    }

    .kt-counter span {
        display: block;
        width: 24px;
        font-size: 12px;
        line-height: 22px;
        font-weight: 700;
        color: #FA7014;
        background-color: #FFF;
        border: 1px solid #BDBDBD;
        border-radius: 5px;
    }

.kt-table tbody tr:hover,
.kt-table tbody tr.active {
    background-color: #F8E0CB30;
    box-shadow: inset 0 0 0 1px #FA7014 ;
    cursor:pointer;
}

.kt-table tbody tr td .kt-counter {
    opacity: 0;
    margin: 10px 0 10px 10px;
}

.kt-table tbody tr.active td .kt-counter,
.kt-table tbody tr:hover td .kt-counter {
    opacity: 1;

}

.kt-table tbody tr td .kt-counter[disabled="true"] {
    opacity: 0;
}

.kt-table tr td[data-label="counter"] {
    max-width: 52px;
}

    .kt-table tr td[data-label="counter"] small {
        display: inline-block;
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        margin: 10px -4px 10px 7px;
        color: #fa7014;
        white-space: nowrap;
    }

.kt-filter {
    margin-bottom: 1.5rem;
}

    .kt-filter.kt-filter-inline {
        display: flex;
        justify-content: space-between;
    }


    .kt-filter strong {
        display: block;
        font-size: 1rem;
        line-height: 18px;
        color: #000;
        margin-bottom: 11px;
    }


    .kt-filter.kt-filter-inline strong {
        margin: 0;
    }


    .kt-filter .list {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: .5rem;
    }

        .kt-filter .list input {
            opacity: 0;
            position: absolute;
            left: 0;
            top: 0;
        }

        .kt-filter .list span {
            position: relative;
            display: flex;
            gap: .5rem;
            align-items: center;
            font-size: 15px;
            line-height: 18px;
            font-weight: 300;
            color: #00000090;
        }

        .kt-filter .list label {
            margin: 0
        }

            .kt-filter .list label span:before {
                content: "";
                display: block;
                width: 1rem;
                height: 1rem;
                background-color: #F9F9F9;
                border: 1px solid #BDBDBD;
                border-radius: 5px;
                margin-top: 2.5px;
            }

        .kt-filter .list input[type="checkbox"]:checked + span::after {
            content: '';
            position: absolute;
            left: 5px;
            top: 1px;
            width: 6px;
            height: 12px;
            border: 1px solid #FF9539;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

    .kt-filter .more,
    .kt-filter .less {
        display: flex;
        align-items: center;
        gap: 5px;
        border-bottom: 1px solid;
        cursor: pointer;
    }

        .kt-filter .more span,
        .kt-filter .less span {
            color: #000;
        }

    .kt-filter .price-range {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

        .kt-filter .price-range input {
            width: 100%;
            background-color: #F9F9F9;
            border: 1px solid #BDBDBD;
            border-radius: 5px;
            font-size: 14px;
            line-height: 1rem;
            text-align: center;
            padding: 5px 8px;
            margin-bottom: .75rem;
        }

    .kt-filter .null-check {
        position: relative;
        margin: 0;
    }

        .kt-filter .null-check input {
            position: absolute;
            left: 0;
            top: 0;
            opacity: 0;
        }

        .kt-filter .null-check span:after {
            content: attr(data-close);
            display: block;
            background-color: #F9F9F9;
            border: 1px solid #BDBDBD;
            border-radius: 5px;
            font-size: 14px;
            line-height: 1rem;
            text-align: center;
            padding: 5px 8px;
        }

        .kt-filter .null-check input[type="checkbox"]:checked + span:after {
            content: attr(data-open);
            background-color: #FF9539;
            border: 1px solid #FF9539;
        }

    .kt-filter .check-range {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

        .kt-filter .check-range .range {
            flex-grow: 1;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            background-color: #F9F9F9;
            border-radius: 5px;
            padding: 2px 3px;
        }

        .kt-filter .check-range label {
            flex-grow: 1;
            cursor: pointer;
            margin-bottom: 0;
        }

            .kt-filter .check-range label input {
                position: absolute;
                left: 0;
                top: 0;
                opacity: 0;
            }

                .kt-filter .check-range label input + span {
                    display: block;
                    border-radius: 5px;
                    font-size: 14px;
                    line-height: 1rem;
                    text-align: center;
                    padding: 8px;
                }

                .kt-filter .check-range label:hover input + span,
                .kt-filter .check-range label input:checked + span {
                    background-color: #FF9539;
                }

    .kt-filter sup {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 1rem;
        height: 1rem;
        line-height: 1rem;
        text-align: center;
        border-radius: 50%;
        background-color: #D9D9D9;
        color: #000;
    }

.kt-selected-products {
    position: relative;
    border: 1px solid #F48221;
    margin: .5rem 0 1.3rem 0;
    display: flex;
    align-items: center;
    padding: .75rem 1rem;
}

    .kt-selected-products > img {
        width: auto;
        height: 70px;
    }

    .kt-selected-products .content {
        display: flex;
        flex-direction: column;
        padding: .5rem 2.5rem .5rem .5rem;
    }

        .kt-selected-products .content strong {
            font-size: 1rem;
            line-height: 1.5;
            color: #212529;
        }

        .kt-selected-products .content span {
            font-size: 1.01rem;
        }

    .kt-selected-products .actions {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: .4rem;
        margin: 0;
    }

        .kt-selected-products .actions button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
        }




/* Eski kodlar */
.product {
    width: 20%;
}

.closeBtn {
    top: 30% !important;
}

#productList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    border: 1px solid #E8832D;
    border-radius: 20px 0px 20px 20px;
}

.form-control-sm {
    width: 100% !important;
}

.tblmemo {
    width: 100%;
    border: 1px solid #CCCCCC;
    text-align: center;
    border-collapse: collapse;
}

    .tblmemo tr td,
    .tblmemo tr th {
        border: 1px solid #cccccc;
    }

    .tblmemo tr th {
        padding: 10px 0px;
        font-size: 18px;
        font-weight: bold;
    }

    .tblmemo tr td {
        padding-top: 10px;
        padding-bottom: 10px;
    }

.prevent {
    cursor: not-allowed !important;
}

.deaktif {
    pointer-events: none;
    background-color: #cccccc;
}

listeyeEkleClass.dis {
    pointer-events: none;
    cursor: default;
    background-color: #ececec;
    border: 1px dashed #669933;
    text-decoration: none;
}

#accordion-itopya .card .card-header .title .eseo {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

header {
}

.sidenavyorum memo {
    top: calc(25vh + 75px) !important;
}

/* yeni kendin topla */
.main-flex {
    display: flex;
    margin-top: 20px;
}

.left-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    background: #fff;
    padding-bottom: 70px;
}

.left-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 64px;
    gap: 10px;
}

    .left-content img {
        width: 96px;
        margin-bottom: 12px;
    }

    .left-content h1 {
        font-size: 2.3rem;
        font-weight: bold;
        margin-bottom: 24px;
        margin-top: 0;
        color: #161616;
        letter-spacing: -1px;
    }

.compat-label {
    font-weight: 600;
    font-size: 1.07rem;
    margin-top: 12px;
}

.compat-toggle {
    display: flex;
    margin-bottom: 8px;
    background: rgb(246 246 246);
    padding: 3px;
    border-radius: 8px;
}

.toggle-btn {
    border: none;
    outline: none;
    padding: 7px 24px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    background: #ff8400;
    color: #000;
    transition: .2s;
}

    .toggle-btn.passive {
        background: rgb(246 246 246);
        color: #818181;
    }

.compat-desc {
    background: rgb(231 246 249);
    color: #000000;
    border-radius: 7px;
    padding: 6px 14px;
    font-size: 0.97rem;
    margin-bottom: 18px;
}

.main-btn {
    background: #ffa62a;
    color: #000;
    font-size: 1.15rem;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    padding: 12px 0;
    width: 100%;
    margin-top: 6px;
    box-shadow: 0 2px 8px 0 #0001;
    transition: .17s;
    font-weight: 900;
}

    .main-btn:hover {
        background: #ff8c00;
    }

.right-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 131, 45, 0.13);
    border: 1px solid #E8832D;
    border-radius: 20px 20px 0px 0px;
    border-bottom: 0;
}

.hardware-box {
    width: 370px;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .hardware-box h5 {
        font-weight: bold;
        font-size: 1.13rem;
        letter-spacing: .1px;
        margin-bottom: 8px;
        margin-top: 19px;
    }

.select-group {
    display: flex;
    margin-bottom: 16px;
    background: #dfdddc;
    padding: 3px;
    border-radius: 10px;
}

.select-card {
    min-width: 112px;
    background: #dfdddc;
    border-radius: 10px;
    padding: 8px 20px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    transition: border-color .18s, background .18s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
}

    .select-card svg {
        max-width: 60px;
    }

    .select-card.selected, .select-card:hover {
        border-color: #ffa62a;
        background: #fff8f0;
    }

    .select-card img {
        height: 28px;
        margin-right: 6px;
    }

@media (max-width: 900px) {
    .main-flex {
        flex-direction: column;
        align-items: center;
    }

    .left-panel, .right-panel {
        margin: 0;
        width: 100% !important;
        border-radius: 0 !important;
    }

    .left-content {
        margin-right: 0;
        width: 96vw;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .hardware-box {
        width: 98vw;
    }
}


/* Ekran 2: Ürün Listesi */
#urunEkran {
    display: block;
    background: #fff;
    min-height: 100vh;
    width: 96%;
}

.Filters-container {
    margin: 0;
}

.form-control {
    min-height: 40px;
}

.table-responsive {
}

.table td, .table th {
    border: 0;
}

.collect-yourself-table {
    background-color: #ffffff;
    border-collapse: collapse;
}

    .collect-yourself-table thead th {
        color: rgb(0 0 0);
        font-weight: 800;
        font-size: 13px;
        line-height: 18px;
        letter-spacing: 0.24px;
        background: #f3f0f0;
        border: 0;
    }

    .collect-yourself-table tbody tr {
        border-bottom: 1px solid rgba(33, 37, 41, 0.2);
        border-top: 1px solid transparent;
        border-right: 1px double transparent;
        border-left: 1px double transparent;
        cursor: pointer;
    }

        .collect-yourself-table tbody tr:last-child {
            border: 0 !important;
        }

.collect-yourself-row.active {
    background: rgb(253 248 243);
    border-top: 1px double #FF8400;
    border-right: 1px double #FF8400;
    border-bottom: 1px double #FF8400;
    border-left: 1px double #FF8400;
}

.collect-yourself-img {
    width: 60px;
    height: auto;
}

.collect-yourself-info {
    font-size: 13px;
    line-height: 1.4;
}

.collect-yourself-price {
    font-weight: bold;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#priceContainer {
    font-weight: bold;
    font-size: 16px;
    display: flex;
    margin-right: 20px;
    justify-content: center;
    align-items: center;
}

.clIndirimliFiyat {
    font-size: 18px;
}

.KT-product-desc {
    display: block;
    font-size: 11px;
    color: #cc4100;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 406px;
    font-weight: 200;
    text-align: start;
}

.collect-yourself-fixed-height {
}

.collect-yourself-product-cell {
    display: flex;
    gap: 10px;
}

.system-sidebar {
    position: absolute;
    left: -141px;
    text-align: center;
    top: 16%;
    color: white;
    cursor: pointer;
    transition: all ease 0.2s;
    overflow-y: auto;
    height: calc(100vh - 200px);
}

    .system-sidebar::-webkit-scrollbar {
        display: none;
    }

.sidebar-title {
    width: 99%;
    display: flex;
    justify-content: end;
}

.system-button {
    width: 70%;
    background-color: #f6f5f5;
    border: 1px solid rgba(244, 130, 33, 1);
    padding: 8px 0;
    color: #000000;
    text-align: center;
    transition: background 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(39px) scale(1.04);
}

    .system-button.active,
    .system-button:hover {
        background: #FFE6D0;
        color: rgba(0, 39, 58, 1);
        box-shadow: 2px 0 16px 0 rgb(244 130 33 / 12%);
        border-radius: 10px 0px 0px 10px;
        font-weight: 700;
        transform: translateX(0px) translatey(-1px);
        width: 100%;
    }


    .system-button i {
        font-size: 20px;
        display: block;
        margin-bottom: 5px;
    }

    .system-button span {
        font-size: 11px;
        width: 95%;
    }

.btn-search {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 230, 208, 1);
    border: .5px solid rgba(244, 130, 33, 1);
    padding: .375rem .75rem;
    border-radius: 4px;
}

/*#breadcrumbContainer {
    margin-bottom: 0 !important;
}*/

.sticky-top {
    position: sticky;
    top: 84px;
    z-index: 900;
    background: #f6f5f5;
    margin-bottom: 35px;
    width: 100%;
}

.icon-link-blue {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border: .25px solid rgba(180, 178, 178, 1);
    margin: 7px 0px 7px 5px !important;
    background: #fff;
    border-radius: 2px;
    min-height: 40px;
}

    .icon-link-blue .text {
        color: #000 !important;
        text-decoration: none;
    }

.collect-yourself-price {
    border: 0;
    padding: 0;
}

.sidenavurun .memo {
    text-align: center;
    color: #000000;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
    transition: all ease 0.2s;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
    border: 1px solid rgba(244, 130, 33, 1);
    flex-direction: column;
    background: #f6f5f5;
    width: 74%;
}

.mySidenavUrun_scroll {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
}


    .mySidenavUrun_scroll::-webkit-scrollbar {
        width: 4px;
    }

    .mySidenavUrun_scroll::-webkit-scrollbar-track {
        background: #444;
        border-radius: 2px;
    }

    .mySidenavUrun_scroll::-webkit-scrollbar-thumb {
        background-color: #ffe932;
        border-radius: 10px;
        min-height: 40px;
        border: 2px solid #444;
    }

.KT-system-summary-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.KT-summary-header {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
    margin-bottom: 12px;
}

    .KT-summary-header .fa-file-pdf {
        color: #e74c3c;
    }

.KT-summary-actions {
    display: flex;
    color: #000000;
    justify-content: start;
    align-items: center;
}

    .KT-summary-actions .fa-plus {
        color: #fd8900;
    }

    .KT-summary-actions .fa-share-alt {
        color: #fd8900;
    }

.KT-summary-title {
    font-size: 18px;
    font-weight: 700;
}

#KT-products-list {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #ffe932 #444;
    padding: 24px 18px 0px 18px;
}

.KT-product-card {
    display: flex;
    align-items: center;
    border-radius: 6px;
    background: #f2f2f2;
    padding: 16px;
    margin-bottom: 12px;
    position: relative;
}

    .KT-product-card:not(.KT-active) {
        border: 1.5px solid #eee;
        background: #f7f7f7;
    }

.KT-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

    .KT-product-image img {
        width: 48px;
        height: 48px;
        object-fit: contain;
    }

.KT-product-info {
    flex: 1;
}

.KT-product-title {
    font-weight: 600;
    font-size: 15px;
    color: #333;
    line-height: 1.25;
    margin-bottom: 0;
}

.KT-product-price {
    font-weight: 600;
    font-size: 18px;
    color: #232323;
    margin-left: 20px;
    white-space: nowrap;
}

.KT-remove-btn {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    position: absolute;
    top: -11px;
    right: -10px;
}

.KT-card-divider {
    border-bottom: 1px solid #ededed;
    margin: 12px 0;
}

.KT-summary-footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-wrap: wrap;
    padding: 24px 18px 25px 18px;
    margin-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.32);
    background: rgba(226, 226, 226, 0.17);
}

.KT-summary-footer-top {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.KT-total-label {
    font-size: 22px;
    font-weight: 700;
    color: #232323;
    letter-spacing: 1px;
}

.KT-total-price {
    font-size: 32px;
    font-weight: 700;
    color: #232323;
}

.KT-btn-sepete-ekle {
    height: 100%;
    width: 100%;
}

    .KT-btn-sepete-ekle:hover {
        background: #f57c00;
    }

.KT-options-row {
    margin: 18px 0 10px 0;
}

.KT-option-btn {
    border-radius: 8px;
    border: .5px solid rgba(190, 25, 25, 0.5);
    background: #f7f7f7;
    font-weight: 600;
    color: #232323;
    padding: 8px 11px;
    font-size: 13px;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 8px;
    transition: border .14s, background .14s;
    flex-direction: column;
    min-width: 114px;
}

.KT-option-text {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.KT-option-btn.KT-selected, .KT-option-btn:active {
    background: #F9DECB;
}

.KT-option-price {
    font-weight: 700;
    color: #000000;
    font-size: 15px;
}

.KT-note {
    font-size: 12px;
    color: #BE1919;
    margin: 6px 0 0 3px;
}

@media (max-width: 768px) {
    .KT-system-summary-container {
        padding: 10px 2px 0 2px;
    }

    .KT-summary-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .KT-btn-sepete-ekle {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }

    .KT-options-row {
        flex-direction: column;
        gap: 10px;
    }
}


.KTF-compliance-title {
    font-weight: 700;
    margin-bottom: 24px;
}

.KTF-compliance-switch-wrapper {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 32px;
}

.KTF-compliance-switch {
    background: #F6F6F6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 8px 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.KTF-compliance-btn {
    font-weight: 700;
    border: none;
    background: transparent;
    outline: none;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    padding: 10px 15px;
    cursor: pointer;
    color: #bdbdbd;
}

    .KTF-compliance-btn.active {
        background: #FF8832;
        color: #111;
    }

    .KTF-compliance-btn.disabled {
        color: #bdbdbd;
    }

.KTF-info-icon {
    background: rgba(217, 217, 217, 1);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000000;
    font-size: 1rem;
    margin-left: 12px;
}

.KTF-stock-status {
    font-weight: 700;
}

.KTF-stock-btn {
    border-radius: 7px;
    border: 2px solid rgba(189, 189, 189, 1);
    background: rgba(249, 249, 249, 1);
    color: #bdbdbd;
    font-weight: 600;
    padding: 6px 8px 8px;
}

    .KTF-stock-btn.aktif {
        background-color: #FF8832 !important;
        color: #111 !important;
    }


.KT-button-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-flex-text-container {
    margin: 100px 0px 50px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}

.main-flex-text-title {
    font-size: 41px;
    font-weight: 700;
}

.main-flex-text {
    font-size: 14px;
    font-weight: 300;
}

.proImage {
    max-width: 75px;
}

.custom-stepper {
    background: #f6f2ee;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #ccc;
    box-sizing: border-box;
    user-select: none;
    min-width: 24px;
    margin-right: 10px;
}

.stepper-btn {
    background: #f5f5f5;
    border: none;
    outline: none;
    font-size: 18px;
    color: #18191b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.1s;
    cursor: pointer;
    font-weight: 600;
    padding: 0;
}

    .stepper-btn:active {
        background: #ececec;
    }

.stepper-value {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #ff7000;
    margin: 0 0;
    width: 100%;
}

@media screen and (max-width: 575px) {

    .main-flex-text-title {
        font-size: 27px;
    }
}
