.product-category-tab-wrapper {
    width: 100%;
    padding: 6px;
    border: 1px solid #ececec;
    border-radius: 22px;
    background: #fff;
    box-shadow:
            0 8px 24px rgba(17, 24, 39, 0.05),
            0 1px 2px rgba(17, 24, 39, 0.04);
}

.product-category-tabs {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
.widget-tab-3{
    gap:0px;
}
.product-category-tabs .nav-tab-item {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
    padding: 0;
}

/* Dikey ayırıcı çizgiler */
.product-category-tabs .nav-tab-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 0;
    bottom: 20px;
    width: 1px;
    background: #eceff2;
    z-index: 2;
}

.product-category-tabs .nav-tab-item > a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 71px;
    padding: 8px 10px 9px 10px;
    border: 0;
    border-radius: 16px;
    background: transparent;
    color: #262b33;
    text-decoration: none;
    transition:
            background-color 180ms ease,
            color 180ms ease,
            box-shadow 180ms ease;
}

.product-category-tabs .nav-tab-item > a:hover {
    background: #f8f8f8;
}

/* Aktif sekme */
.product-category-tabs .nav-tab-item > a.active {
    background: linear-gradient(
            135deg,
            #fff5ee 0%,
            #fff9f5 100%
    );
    color: #f2711c;
    box-shadow: inset 0 0 0 1px rgba(242, 113, 28, 0.05);
}

/* Aktif sekmede ayırıcı gösterilmesin */
.product-category-tabs .nav-tab-item:has(> a.active)::after {
    opacity: 0;
}

.category-tab-icon {
    flex: 0 0 79px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px !important;
    height: 52px;
    margin-right: 13px;
    border-radius: 14px;
    background: #fff0e6;
    color: black;
    transition: background-color 180ms ease, color 180ms ease;
}

.category-tab-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.product-category-tabs a.active .category-tab-icon {
    background: linear-gradient(135deg, #ff8c27 0%, #ffffff 100%);
    color: #fff;
}

.category-tab-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
    line-height: 1.25;
}

.category-tab-content strong {
    display: block;
    overflow: hidden;
    margin: 0 0 5px;
    color: #2c3138;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 180ms ease;
}

.category-tab-content small {
    display: block;
    overflow: hidden;
    color: #8a9099;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-category-tabs a.active .category-tab-content strong {
    color: #f2711c;
}

.product-category-tabs a.active .category-tab-content small {
    color: #b9784e;
}

/* Sağ ok */
.category-tab-arrow {
    position: absolute;
    top: 50%;
    right: 17px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #adb3ba;
    border-right: 2px solid #adb3ba;
    transform: translateY(-50%) rotate(45deg);
    transition:
            border-color 180ms ease,
            right 180ms ease;
}

.product-category-tabs a:hover .category-tab-arrow {
    right: 14px;
}

.product-category-tabs a.active .category-tab-arrow {
    border-color: #f2711c;
}

.product-category-tabs .nav-tab-item > a:focus-visible {
    outline: 2px solid #ff7417;
    outline-offset: -2px;
}
@media (max-width: 1399.98px) {
    .product-category-tab-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: thin;
    }

    .product-category-tabs {
        width: max-content;
        min-width: 100%;
    }

    .product-category-tabs .nav-tab-item {
        flex: 0 0 230px;
    }
}

@media (max-width: 767.98px) {
    .product-category-tab-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: visible !important;
        padding: 5px;
        border-radius: 18px;
    }

    .product-category-tab-navigation {
        display: grid;
        grid-template-columns: 40px minmax(0, 1fr) 40px;
        align-items: center;
        gap: 7px;
        width: 100%;
        min-width: 0;
    }

    .product-category-tab-scroll {
        width: 100%;
        min-width: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .product-category-tab-scroll::-webkit-scrollbar {
        display: none;
    }

    .product-category-tabs {
        display: flex;
        align-items: stretch;
        width: 100% !important;
        min-width: 100% !important;
        margin: 0;
        padding: 0;
        gap: 0 !important;
    }

    /*
     * Mobilde her sekme görünür alanın tamamını kaplar.
     * Böylece sağdaki diğer sekmenin ikonu görünmez.
     */
    .product-category-tabs .nav-tab-item {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .product-category-tabs .nav-tab-item > a {
        width: 100%;
        min-height: 61px;
        padding: 6px 8px 6px 6px !important;
        border-radius: 12px;
    }

    .category-tab-icon {
        flex: 0 0 45px;
        width: 45px !important;
        height: 45px;
        margin-right: 10px;
        border-radius: 11px;
    }

    .category-tab-icon img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: 100%;
        padding: 5px;
        object-fit: contain;
    }

    .category-tab-content {
        overflow: hidden;
        min-width: 0;
    }

    .category-tab-content strong {
        font-size: 13px;
    }

    .category-tab-content small {
        font-size: 11px;
    }

    .category-scroll-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        align-self: center;
        width: 40px;
        min-width: 40px;
        height: 61px;
        padding: 0;
        border: 1px solid #e6e6e6;
        border-radius: 12px;
        background: #fff;
        color: #252932;
        cursor: pointer;
        box-shadow: 0 5px 15px rgba(17, 24, 39, 0.08);
        transition:
                color 180ms ease,
                border-color 180ms ease,
                background-color 180ms ease,
                opacity 180ms ease;
    }

    .category-scroll-btn:hover:not(:disabled) {
        border-color: #ff8c27;
        background: #fff6ef;
        color: #f2711c;
    }

    .category-scroll-btn:disabled {
        opacity: 0.25;
        cursor: default;
        box-shadow: none;
    }

    .product-category-tab-wrapper > .tab-content {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
    }

    .product-category-tab-wrapper > .tab-content > .tab-pane {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }
}
.category-tab-icon img{
    padding:5px;
}
#tab-kavurma .wrap-carousel .nav-prev2-slider{
    left:-20px !important;
    background: black;
    color: white;
}
#tab-kavurma .wrap-carousel .nav-next2-slider{
    right:-20px !important;
    background: black;
    color: white;
}
#tab-kavurma .wrap-carousel .nav-prev2-slider:hover{

    background: linear-gradient(135deg, #ff8c27 0%, #ffffff 100%);
    color: black;
}
#tab-kavurma .wrap-carousel .nav-next2-slider:hover{
    background: linear-gradient(135deg, #ff8c27 0%, #ffffff 100%);
    color: black;
}


#tab-kirmizi-etli .wrap-carousel .nav-prev2-slider{
    left:-20px !important;
    background: black;
    color: white;
}
#tab-kirmizi-etli .wrap-carousel .nav-next2-slider{
    right:-20px !important;
    background: black;
    color: white;
}
#tab-kirmizi-etli .wrap-carousel .nav-prev2-slider:hover{

    background: linear-gradient(135deg, #ff8c27 0%, #ffffff 100%);
    color: black;
}
#tab-kirmizi-etli .wrap-carousel .nav-next2-slider:hover{
    background: linear-gradient(135deg, #ff8c27 0%, #ffffff 100%);
    color: black;
}


#tab-karisik-etli .wrap-carousel .nav-prev2-slider{
    left:-20px !important;
    background: black;
    color: white;
}
#tab-karisik-etli .wrap-carousel .nav-next2-slider{
    right:-20px !important;
    background: black;
    color: white;
}
#tab-karisik-etli .wrap-carousel .nav-prev2-slider:hover{

    background: linear-gradient(135deg, #ff8c27 0%, #ffffff 100%);
    color: black;
}
#tab-karisik-etli .wrap-carousel .nav-next2-slider:hover{
    background: linear-gradient(135deg, #ff8c27 0%, #ffffff 100%);
    color: black;
}
.product-category-tab-navigation {
    position: relative;
    width: 100%;
    min-width: 0;
}

.product-category-tab-scroll {
    width: 100%;
    min-width: 0;
}

.category-scroll-btn {
    display: none;
}

/* Mobil */
@media (max-width: 767.98px) {

    /*
     * Bütün wrapper kaydırılmayacak.
     * Sadece .product-category-tab-scroll kaydırılacak.
     */
    .product-category-tab-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: visible !important;
    }

    .product-category-tab-navigation {
        display: grid;
        grid-template-columns: 38px minmax(0, 1fr) 38px;
        align-items: stretch;
        gap: 6px;
        width: 100%;
        min-width: 0;
    }

    .product-category-tab-scroll {
        position: relative;
        width: 100%;
        min-width: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;

        /* Scrollbar görünmesin */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .product-category-tab-scroll::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    .product-category-tabs {
        display: flex;
        align-items: stretch;
        width: max-content !important;
        min-width: 0 !important;
        margin: 0;
        padding: 0;
    }

    .product-category-tabs .nav-tab-item {
        flex: 0 0 210px;
        width: 210px;
        min-width: 210px;
        scroll-snap-align: start;
    }

    .category-scroll-btn {
        position: relative;
        z-index: 5;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        min-width: 38px;
        padding: 0;
        border: 1px solid #e8e8e8;
        border-radius: 12px;
        background: #ffffff;
        color: #252932;
        font-size: 13px;
        cursor: pointer;
        box-shadow:
                0 5px 15px rgba(17, 24, 39, 0.07),
                0 1px 2px rgba(17, 24, 39, 0.04);
        transition:
                background-color 180ms ease,
                color 180ms ease,
                border-color 180ms ease,
                opacity 180ms ease,
                transform 180ms ease;
    }

    .category-scroll-btn:active:not(:disabled) {
        transform: scale(0.94);
    }

    .category-scroll-btn:hover:not(:disabled) {
        border-color: #ff8c27;
        background: #fff5ee;
        color: #f2711c;
    }

    .category-scroll-btn:disabled {
        opacity: 0.28;
        cursor: default;
        box-shadow: none;
    }

    /*
     * İçerik alanı sekmelerin toplam genişliğinden
     * etkilenmemeli.
     */
    .product-category-tab-wrapper > .tab-content {
        display: block;
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .product-category-tab-wrapper > .tab-content > .tab-pane {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }
}
.product-category-tab-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    margin-bottom: 10px;
    padding: 15px 17px;
    border: 1px solid #eeeeee;
    border-radius: 17px;
    background:
            linear-gradient(
                    135deg,
                    #ffffff 0%,
                    #fffaf6 100%
            );
}

.product-category-tab-header::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 0;
    left: 18px;
    height: 1px;
    background: linear-gradient(
            90deg,
            transparent,
            #f1e4da,
            transparent
    );
}

.product-category-tab-header-icon {
    display: inline-flex;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(
            135deg,
            #ff8c27 0%,
            #ffb26d 100%
    );
    color: #ffffff;
    font-size: 18px;
    box-shadow: 0 7px 16px rgba(242, 113, 28, 0.18);
}

.product-category-tab-header-content {
    flex: 1 1 auto;
    min-width: 0;
}

.product-category-tab-eyebrow {
    display: block;
    margin-bottom: 3px;
    color: #f2711c;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.product-category-tab-title {
    margin: 0 0 4px;
    color: #252932;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
}

.product-category-tab-description {
    margin: 0;
    color: #818791;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
}

.product-category-tab-count {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 31px;
    padding: 6px 11px;
    border: 1px solid #ffe0ca;
    border-radius: 999px;
    background: #fff3e9;
    color: #df6819;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}
@media (max-width: 767.98px) {

    .product-category-tab-header {
        gap: 10px;
        margin-bottom: 8px;
        padding: 11px 12px;
        border-radius: 14px;
    }

    .product-category-tab-header-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 15px;
    }

    .product-category-tab-eyebrow {
        margin-bottom: 2px;
        font-size: 9px;
    }

    .product-category-tab-title {
        margin-bottom: 2px;
        font-size: 14px;
    }

    .product-category-tab-description {
        overflow: hidden;
        font-size: 10px;
        line-height: 1.35;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .product-category-tab-count {
        min-height: 27px;
        padding: 5px 8px;
        font-size: 9px;
    }
    .card-product .card-product-info div p{
        font-size: 11px !important;
    }
    .tab-content .card-product-info{
        padding-left: 2px !important;
        padding-right: 2px !important;
    }
    .tab-content{
        padding-left: 3px !important;
        padding-right: 3px !important;
    }
    .card-product.style-8 .card-product-info .tf-btn{
        font-size: 12px !important;
        line-height: 16px !important;
        font-weight: 500 !important;
    }
    .kvcustom{
        font-size:12px !important;
        display: inline-block;
        width: 100%;
    }
    .kvcustomtitle{
        margin-top: 0px !important;
        -webkit-line-clamp: 1 !important;
        -webkit-box-orient: inherit !important;
        overflow: hidden;
        text-align: center !important;
        font-size: 16px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1px !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .customporsiyon{
        font-size:13px !important;
    }
    .tf-sw-product-sell-kavurma .swiper-slide:nth-child(odd)  {
        padding-right: 0px !important;
    }
    .tf-sw-product-sell-kavurma .swiper-slide:nth-child(even)  {
        padding-left: 0px !important;
    }
    .custommainred:nth-child(odd)  {
        padding-right: 4px !important;
    }
    .custommainred:nth-child(even)  {
        padding-left: 4px !important;
    }
    .custommainwhite:nth-child(odd)  {
        padding-left: 4px !important;
    }
    .custommainwhite:nth-child(even)  {
        padding-right: 4px !important;
    }
    .customDirection{
        flex-direction:column !important; ;
    }
}
.customDirectionElse{
    flex-direction:row ;
    gap:10px !important;
    margin-top:10px;

}
@media (max-width: 420px) {
    .product-category-tab-count {
        display: none;
    }

}
@media only screen and (max-width: 767px) {
    .tf-banner-collection img {
        min-height: auto !important;
    }
    .mbm10{
        margin-bottom: 10px;
    }
    .mobileCalc{
        line-height: 22px;
    }
    .cm-calculator-wizard-button{
        width: 200px !important;
    }
    .cm-calculator-step h3{
        font-size: 18px !important;
        font-weight: 600 !important;
    }
}

.cm-portion-calculation {
    margin-top: -4px;
    font-size: 11px;
    line-height: 1.35;
    color: #d6caa8;
    text-align: center;
    font-weight: 700;
}
.cm-recommendation-state {
    margin-top: 2px;
}
.cm-recommendation-message {
    color: #cbd5e1;
    font-size: 10px;
    line-height: 1.4;
}
.cm-recommendation-status {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    color: #f8cf4d;
    font-size: 13px;
    font-weight: 800;
}
.cm-recommendation-status.is-match {
    color: #b8f08b;
}
.cm-recommendation-product {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 12px;
    color: inherit;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(248, 207, 77, 0.36);
    border-radius: 10px;
}
.cm-recommendation-product:hover {
    color: inherit;
    background: rgba(255, 255, 255, 0.13);
}
.cm-recommendation-product-media {
    display: flex;
    flex: 0 0 68px;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    overflow: hidden;
    color: #111111;
    font-size: 10px;
    font-weight: 800;
    background: #fff7df;
    border-radius: 8px;
}
.cm-recommendation-product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cm-recommendation-product-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
}
.cm-recommendation-product-title {
    overflow: hidden;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.cm-recommendation-product-meta {
    margin-top: 5px;
    color: #cbd5e1;
    font-size: 12px;
    line-height: 1.3;
}
.cm-recommendation-carousel {
    position: relative;
}
.cm-recommendation-track {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 1px 0 4px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.cm-recommendation-track::-webkit-scrollbar {
    display: none;
}
.cm-recommendation-track .cm-recommendation-product {
    flex: 0 0 calc(100% - 40px);
    scroll-snap-align: start;
}
.cm-recommendation-nav {
    position: absolute;
    top: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    color: #111111;
    background: #f8cf4d;
    border: 0;
    border-radius: 50%;
    transform: translateY(-50%);
}
.cm-recommendation-nav.is-prev {
    left: -8px;
}
.cm-recommendation-nav.is-next {
    right: -8px;
}
.countdown__label{
    color:black !important;
}
.tf-countdown.style-1 .countdown__timer .countdown__item .countdown__value, .tf-countdown.style-1 .countdown__timer .countdown__item .countdown__label{
    color:black !important;
}
.card-product .card-product-info .title {
    display: flex;
    flex-direction: column;
}