/* custom css */

.custom-logo {
    display: flex;
    flex-direction: column;
    text-align: center;

    &:hover {
        p {
            color: var(--theme-color);
        }
    }

}

.custom-logo-detail {
    color: #222;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.03em;
    margin-top: 10px;
    margin-bottom: -5px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a.forget-password {
    text-transform: uppercase;
    color: var(--theme-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.paytr-area {
    width: 100%;
}

.paytr-area li {
    width: 100%;
    display: flex !important;
    justify-content: flex-end;
}

.paytr-area li img {
    width: 100%;
}

.validation-message {
    font-weight: 700;
    margin: 0 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.5;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/*

Product Tags

*/
.separator {
    border-top: 1px dashed #ddd !important;
    border-bottom: 1px dashed #ddd !important;
}

.product-tag-title {
    color: #777;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.03em;
    margin-top: 5px;
    margin-bottom: 5px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.product-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
    margin-bottom: -5px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding: 0 5px 0 5px;
}

.tag {
    color: var(--theme-color);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.03em;
    margin-top: 2px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;

}

/*
Product Tags End
*/

/*
Category area
 */

/* düz CSS: .category-card iç içe kurallar düzleştirildi */
.category-card .boxes {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    background-color: #f8f8f8;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    height: 200px; /* Yükseklik sabitlenerek hizalama sağlanır */
    position: relative;
    overflow: hidden; /* kutu içinde taşmayı gizle */
}
.category-card .boxes .img-sec {
    height: 9.375rem;
    width: 100%;
    overflow: hidden; /* görsel taşmasını gizle */
    border-radius: 6px 6px 0 0;
}
.category-card .boxes .img-sec img {
    border-radius: 6px 6px 0 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover; /* alanı doldur, kırp */
    display: block;
}
.category-card .boxes h4 {
    position: absolute;
    bottom: 0.625rem;
    color: #222;
    left: 0;
    right: 0;
    padding: 0 10px; /* yanlardan nefes */
    white-space: nowrap; /* tek satır */
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Kategori kaydırıcı: slide ve kart hizalama/normalize */
.vector-slide-8 .slick-slide > div {
    height: 100%;
}
.vector-slide-8 .category-card,
.vector-slide-8 .category-card > a,
.vector-slide-8 .category-card .boxes {
    display: block;
    width: 100%;
}

/* Kategori slaytında beklenmeyen (doğrudan img içeren) öğeler için fallback */
.vector-slide-8 .slick-slide > div > img {
    width: 100% !important;
    height: 9.375rem !important;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}


/*
Category area end
 */

/* new menu */

@media only screen and (min-width: 1141px) {
    .cs-menu {
        .pixelstrap {
            display: flex;
            gap: 0.9rem;

            li {
                a {
                    font-size: x-large;
                    margin-bottom: 0.625rem;
                }
            }
        }
    }
}

.cs-menu {
    #main-nav {
        max-width: 98.125rem;
        overflow: auto;
    }

    .pixelstrap {
        a {
            padding-right: 0 !important;
            padding-bottom: 4px !important;
        }

    }


}

.cs-mobile-menu {
    width: max-content;
}

/* new menu */

/*Search */
/* Modern Search Overlay Styles */
.search-overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

@supports (backdrop-filter: blur(8px)) {
    .search-overlay {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Overlay içerik alanı */
.overlay-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 2rem;
}

/* Container düzeni */
/*.container {*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*    padding: 2rem;*/
/*}*/

/* Arama formu */
.search-form {
    max-width: 680px;
    margin: 2rem auto;
    position: relative;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

/* Arama input alanı */
.search-input {
    width: 100%;
    padding: 1.2rem 3rem 1.2rem 1.5rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    background: #fff;
}

/* Arama butonu */
.search-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-btn:hover {
    color: #000;
}

/* Son aramalar bölümü */
.recent-searches {
    max-width: 680px;
    margin: 2rem auto;
}

.recent-searches h3 {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.recent-searches-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.recent-search-item {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.recent-search-item:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

/* Kapatma butonu */
.closebtn {
    position: absolute;
    right: 2rem;
    top: 2rem;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.closebtn:hover {
    color: #000;
    transform: scale(1.1);
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Search trigger stili */
.search-trigger {
    cursor: pointer;
    padding: 8px;
}

.search-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
}

.search-trigger:hover .search-icon {
    transform: scale(1.1);
}

/* Mobil responsive düzenlemeler */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .search-input {
        font-size: 1rem;
        padding: 1rem 2.5rem 1rem 1rem;
    }

    .closebtn {
        right: 1rem;
        top: 1rem;
        font-size: 1.5rem;
    }

    .recent-searches {
        margin: 1rem auto;
    }
}

/*Search */


/* Mobil responsive düzenlemeler */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .search-input {
        font-size: 1rem;
        padding: 1rem 2.5rem 1rem 1rem;
    }

    .closebtn {
        right: 1rem;
        top: 1rem;
        font-size: 1.5rem;
    }

    .recent-searches {
        margin: 1rem auto;
    }
}

/* Animasyon efektleri */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-overlay.active {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

/* Search trigger stili */
.search-trigger {
    cursor: pointer;
    padding: 8px;
}

.search-icon {
    width: 36px;
    height: 36px;
    transition: transform 0.2s ease;
}

.search-trigger:hover .search-icon {
    transform: scale(1.1);
}

/*Search */

/* scrollbar */

* {
    --sb-track-color: #ffffff;
    --sb-thumb-color: #075830;
    --sb-size: 10px;
}

*::-webkit-scrollbar {
    width: var(--sb-size)
}

*::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 15px;
}

*::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 15px;

}

@supports not selector(::-webkit-scrollbar) {
    * {
        scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
    }
}

/* scrollbar */

.cs-star {
    font-size: 0.975rem !important;
    color: #ffa200 !important;

    i.scale {
        transform: scale(1.2);
    }

    i {
        color: #ddd;

        &:hover {
            color: #ffa200 !important;
            cursor: pointer;
            transform: scale(1.2);
        }

        &:active {
            color: #ffa200 !important;
            cursor: pointer;
            transform: scale(1.2);
        }
    }
}

.cs-text-yellow-star {
    color: #ffa200 !important;
}

.cs-text-gray-star {
    color: #ddd !important;
}

label[for='review'] {
    span {
        font-size: 12px;
        font-weight: 400;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.5;
        letter-spacing: -.24px;
        color: #646464;
        margin-left: 5px;
    }
}

.cs-switch {
    align-items: center;
    gap: 0.625rem;

    input {
        padding: 10px 20px !important;
    }
}

.warring-comment-section {
    position: relative;
    width: 100%;
    height: max-content;
    padding: 10px;
}

.warring-comment {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;

    div {
        display: flex;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.9); /* Arka planı daha şeffaf ve açık renk yapalım */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Hafif gölge ekleyelim */
        width: 100%;
        max-width: 600px; /* Genişliği sınırlandıralım, daha şık görünmesi için */
        align-items: center;
        padding: 20px;
        border-radius: 10px;
        font-size: 18px;
        color: #333; /* Metin rengini daha koyu yapalım */
        text-align: center;
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: 0.03em;

        span {
            font-size: 24px;
            font-weight: 500;
            color: #FF5733; /* Uyarı simgesi ve metnini daha dikkat çekici yapalım */

            i {
                margin-right: 5px;
                font-size: 20px;
                font-weight: 700;
                color: #FF5733; /* Simgeyi uyarı rengi ile eşleştirelim */
            }
        }

        p {
            margin-top: 20px;
            font-size: 16px; /* Yazı boyutunu bir kademe büyütelim */
            font-weight: 400;
            color: #555; /* Yazının rengini daha kontrast hale getirelim */
            margin-bottom: 0;
        }
    }
}

.h-max-content-slider {
    height: max-content;
}

.home-slider, .home-slider .slick-list, .home-slider .slick-track {
    height: 100%;
}

.home-slider .slick-slide > div {
    height: 100%;
}


.lh32pc {
    height: 32pc;
}

.rh32pc {
    height: 32pc;
}

/* 256px ve altındaki cihazlar */
@media (max-width: 256px) {
    .lh32pc {
        height: calc(32pc - 21.5pc) !important;
    }

    .rh32pc {
        height: calc(32pc - 13.5pc) !important;
    }
}

/* 321px ve altındaki cihazlar */
@media (max-width: 321px) {
    .lh32pc {
        height: calc(32pc - 24.5pc) !important;
    }

    .rh32pc {
        height: calc(32pc - 16.5pc) !important;
    }
}

/* 768px ve altındaki cihazlar */
@media (max-width: 768px) {
    .container-fluid {
        height: auto !important;
    }

    .lh32pc {
        height: calc(32pc - 21.5pc);
    }

    .rh32pc {
        height: calc(32pc - 13.5pc);
    }
}

/* 768px ve 800px arası cihazlar */
@media (min-width: 768px) and (max-width: 800px) {
    .lh32pc {
        height: calc(32pc - 21.5pc);
    }

    .rh32pc {
        height: calc(32pc - 19.5pc);
    }
}


/* 800px ve 1024px arası cihazlar */
@media (min-width: 800px) and (max-width: 1024px) {
    .lh32pc {
        height: calc(32pc - 22.5pc);
    }

    .rh32pc {
        height: calc(32pc - 18.5pc);
    }
}

/* 1024px ve 1440px arası cihazlar */
@media (min-width: 1024px) and (max-width: 1440px) {
    .lh32pc {
        height: calc(32pc - 8pc);
    }

    .rh32pc {
        height: calc(32pc - 9pc);
    }
}

/* 4K çözünürlük (3840px ve üstü) */
@media (min-width: 3840px) {
    .lh32pc {
        height: calc(32pc - 1.5pc);
    }

    .rh32pc {
        height: calc(32pc - 1.5pc);
    }

}


.whatsapp-btn-container {
    padding: 10px;
    background-color: #f8f9fa;
    box-shadow: 9px 7px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.whatsapp-btn {
    display: block;
    width: 100%;
    padding: 3px;
    background-color: #25D366;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

.whatsapp-btn i {
    margin-right: 10px;
    font-size: 28px
}

@media (min-width: 768px) {
    .whatsapp-btn-container {
        display: none;
    }
}

.main-menu .menu-right .icon-nav .mobile-cart > div img {
    display: block !important;
}

.basket-img {
    width: 36px;
    color: #999;
}


/* Not found container */
.glv-not-found-container {
    min-height: 300px;
    padding: 4rem 1rem;
}

.glv-search-icon {
    width: 64px;
    height: 64px;
    fill: #6c757d;
    margin-bottom: 2rem;
}

.glv-not-found-title {
    margin-bottom: 1.5rem;
    letter-spacing: 0.031rem;
}

.glv-not-found-description {
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #6c757d;
    font-weight: 500;
}

.glv-not-found-description mark {
    background-color: rgba(25, 135, 84, 0.1);
    color: inherit;
    padding: 0.2em 0.4em;
    border-radius: 4px;
}

.glv-not-found-btn {
    transition: all 0.3s ease;
    background-color: #198754;
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 500;
    letter-spacing: 0.031rem;
}

.glv-not-found-btn:hover {
    background-color: #146c43;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .glv-not-found-container {
        min-height: 250px;
        padding: 2rem 1rem;
    }

    .glv-search-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1.5rem;
    }
}

/* Not found container */

/* halil custom css */

.footer-harici-butons {
    position: fixed;
    z-index: 999999;
    text-align: right;
    width: 100px;
    top: 40%;
    right: auto;
    bottom: auto;
    left: 0;
}

.footer-harici-sosyal-icons {
    max-width: 40px;
    float: right;
}

.footer-harici-sosyal-satir {
    width: 70%;
    transition: all linear 0.2s;
    border-radius: 0 90px 90px 0;
    margin-top: 3px;
    float: left;
}

.footer-harici-sosyal-satir:hover {
    transition: all linear 0.2s;
    width: 100%;
}

/* halil custom css */


/* Sepet sitili */


.show-div.shopping-cart {
    padding: 15px 15px;
    min-width: 270px;
    left: unset;
    right: 0
}

.show-div.shopping-cart li {
    position: relative;
    padding-bottom: 10px;
    width: 100%
}

.show-div.shopping-cart li:last-child {
    padding-bottom: 0
}

.show-div.shopping-cart li .media img {
    height: 90px
}

.show-div.shopping-cart li .media .media-body {
    align-self: center
}

.show-div.shopping-cart li .media .media-body h4 {
    color: #333
}

.show-div.shopping-cart li .media .media-body h4 span {
    color: #777;
    font-size: 16px
}

.show-div.shopping-cart li .close-circle {
    position: absolute;
    top: 0;
    right: 0
}

.show-div.shopping-cart li .close-circle i {
    color: #a1a1a1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.show-div.shopping-cart li .close-circle i:hover {
    color: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.show-div.shopping-cart li .total {
    border-top: 1px solid #f1f5f4;
    border-bottom: 1px solid #f1f5f4;
    padding-top: 10px;
    padding-bottom: 10px
}

.show-div.shopping-cart li .total h5 {
    text-transform: capitalize;
    margin-bottom: 0;
    color: #999
}

.show-div.shopping-cart li .total h5 span {
    float: right
}

.show-div.shopping-cart li .buttons a {
    font-size: 16px;
    color: #333;
    text-transform: capitalize;
    font-weight: 700
}

.show-div.shopping-cart li .buttons a:hover {
    color: var(--theme-color)
}

.show-div.shopping-cart li .buttons .checkout {
    float: right
}

/* Sepet sitili */

#main-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.main-menu {
    display: flex;
    align-items: center;
    padding: 70px 20px;
    height: 40px;
    gap: 20px;

    nav {
        flex: 1;
    }

    .cs-search-or-basket-area {
        width: max-content;
        flex-shrink: 0;
    }

    .product-full-page {
        z-index: 9999
    }

    .brand-logo {
        display: inline-block;
        padding-top: 35px;
        padding-bottom: 35px;
        flex-shrink: 0;
        width: max-content;
    }

    .menu-left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;

        .navbar {
            display: inline-block;
            padding: 40px 45px 40px 0
        }
    }
}

.main-menu .menu-left .navbar i {
    font-size: 28px;
    color: #222;
    cursor: pointer
}

.main-menu .menu-left .navbar.white-navbar i {
    color: #fff
}

.main-menu .menu-left.around-border .navbar > a {
    padding: 0
}

.main-menu .menu-left.category-nav-right .navbar {
    padding-right: 0;
    padding-left: 45px
}

.main-menu .menu-left.category-nav-right .navbar > a {
    padding: 0
}

.main-menu .menu-left.category-nav-right .navbar i {
    color: #938d8c
}

.main-menu .menu-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    float: right
}

.main-menu .menu-right .icon-nav {
    display: inline-block
}

.main-menu .menu-right .icon-nav li {
    padding-left: 20px
}

.main-menu .menu-right .icon-nav .delivery-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.main-menu .menu-right .icon-nav .delivery-area > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px;
    background-color: var(--theme-color);
    color: white;
    border-radius: 5px
}

.main-menu .menu-right .icon-nav .delivery-area i {
    margin-right: 5px;
    font-size: 16px
}

.main-menu .menu-right .icon-nav .delivery-area h6 {
    margin-bottom: 0;
    color: #fff;
    font-size: 16px
}


.main-menu .menu-right .icon-nav .onhover-div .show-div.setting {
    padding: 15px 20px 20px;
    min-width: 175px;
    right: 0;
    left: unset
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.setting h6 {
    font-size: 16px;
    text-transform: capitalize;
    color: #333;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 5px
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.setting h6:first-child {
    margin-top: 0
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.setting ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 0;
    padding-left: 17px;
    padding-top: 5px
}

.main-menu .menu-right .icon-nav .onhover-div .show-div.setting ul li a {
    color: #333;
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize
}

.main-menu .menu-right .icon-nav .onhover-div .show-div li {
    padding: 0
}

.main-menu .menu-right .icon-nav .onhover-div .show-div li .form-control {
    border-radius: 0
}

.main-menu .menu-right .icon-nav .onhover-div .show-div li .form-control:focus {
    border: 1px solid #ced4da;
    -webkit-box-shadow: none;
    box-shadow: none
}

.main-menu .menu-right .icon-nav .onhover-div .show-div li .search-btn {
    padding: 8px 12px;
    background-color: var(--theme-color);
    color: #fff
}

.main-menu .menu-right .icon-nav.white-icon .onhover-div img {
    -webkit-filter: brightness(5);
    filter: brightness(5)
}

.main-menu .menu-right .icon-nav.white-icon .onhover-div .show-div img {
    -webkit-filter: none;
    filter: none
}

/* checkout-form */

/* Ürün Listesi Stilleri */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
}

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

.product-info {
    flex: 1;
    font-size: 16px;
}

.price-info {
    text-align: right;
    min-width: 100px;
}

.discounted-price, .regular-price {
    color: #2e7d32;
    font-weight: 600;
    font-size: 16px;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
}

/* Ara Toplam ve Toplam Stilleri */
.summary-list, .total-list {
    list-style: none;
    padding: 15px 0;
    margin: 0;
    border-top: 1px solid #eee;
    font-size: 16px;
}

.summary-item, .total-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.summary-label, .total-label {
    font-weight: 500;
    color: #333;
    font-size: 16px;
}

.discounted-total-price, .regular-total-price {
    color: #2e7d32;
    font-weight: 700;
    font-size: 18px;
}

.original-total-price {
    text-decoration: line-through;
    color: #888;
    font-size: 16px;
}

.total-list {
    border-top: 1px solid #eee;
}

.total-label {
    font-weight: 600;
    font-size: 18px;
}

/* Kupon ve Buton Stilleri */
.coupon-box {
    margin-top: 20px;
}

.form-control {
    padding: 12px;
    border-radius: 4px;
    border: 1px solid #ddd;
    width: 100%;
    margin-bottom: 12px;
    font-size: 15px;
}

.btn-solid {
    background-color: #176137;
    color: white;
    border: none;
    padding: 10px 25px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
}

.contract-check {
    margin: 20px 0;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.form-check-input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.contract-link {
    color: #007bff;
    text-decoration: none;
}

.contract-link:hover {
    text-decoration: underline;
}

.btn-checkout {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 12px 25px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 15px;
}

/* Ana Konteyner Stilleri */
.order-box {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.title-box {
    border-bottom: 1px solid #ededed;
    padding-bottom: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 18px;
}

.qty {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* checkout form end */

/* Base slider container styling */
.home-slider-sc-height {
    overflow: hidden;
    margin-bottom: 2rem;
}

.h-max-content-slider {
    min-height: 300px;
}

/* Slider styling */
.slider-animate {
    position: relative;
    width: 100%;
}

/* Image styling for sliders */
.slider-animate img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
}

/* Desktop heights for sliders - preserve original proportions */
@media (min-width: 768px) {
    .lh32pc {
        height: auto; /* Let the left slider keep its natural height */
        min-height: 300px;
    }

    .rh32pc {
        height: auto; /* Let the right slider keep its natural height */
        min-height: 380px; /* Make the vertical slider taller */
    }
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    .home-slider-sc-height {
        padding: 1rem;
    }

    .h-max-content-slider {
        min-height: auto;
    }

    .slider-animate {
        height: auto;
        margin-bottom: 1rem;
    }

    /* Proper spacing between sliders on mobile */
    .col-12:first-child .slider-animate {
        margin-bottom: 1rem;
    }
}

/* Clear separator to prevent content overlapping */
.section-separator {
    clear: both;
    height: 2rem;
    width: 100%;
}


.font-weight-bold {
    font-weight: bold;
}


/* Değerlendirme görsel stilleri */

/* Yorum görselleri: minimum 250x250 (desktop) */
.comment-images-grid {
    margin-top: 1rem;
}

.comment-images-grid .comment-images-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.comment-images-grid .comment-image-item {
    flex: 0 0 auto;
}

.comment-images-grid .img-wrapper {
    position: relative;
    width: 252px;
    height: 252px;
    min-width: 252px;
    min-height: 252px;
    background: #f8f9fa;
    border: 1px solid #eef0f2;
    overflow: hidden;
    border-radius: 0!important;
}

.comment-images-grid .img-wrapper a {
    position: absolute;
    inset: 0;
    display: block;
}

.comment-images-grid .img-wrapper img {
    width: 250px!important;
    height: 250px!important;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
    border-radius: 0!important;
}

.comment-images-grid .img-wrapper img:hover {
    transform: scale(1.05);
}

/* Orta ekranlarda biraz küçült */
@media (max-width: 74.999rem) {
    .comment-images-grid .img-wrapper {
        width: 225px;
        height: 225px;
        min-width: 225px;
        min-height: 225px;
    }
}

/* Tablet */
@media (max-width: 61.999rem) {
    .comment-images-grid .img-wrapper {
        width: 200px;
        height: 200px;
        min-width: 200px;
        min-height: 200px;
    }
}

/* Küçük ekranlarda tam genişlik, kare oran koru */
@media (max-width: 47.999rem) {
    .comment-images-grid .comment-images-flex {
        gap: 16px;
    }

    .comment-images-grid .img-wrapper {
        width: 100%;
        min-width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 1/1;
    }
}

/* --- Marquee (Top Header) Styles --- */
.top-marquee {
    width: 100%;
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(17px, 1.2vw, 20px);
    line-height: 1.4;
    color: #fff;
    background: #0f8f34; /* tema yeşili */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.top-marquee--vertical {
    position: relative;
    overflow: hidden;
    height: calc(clamp(17px, 1.2vw, 20px) + 28px);
}

.top-marquee__viewport {
    height: 100%;
    overflow: hidden;
}

.top-marquee__track {
    display: flex;
    flex-direction: column;
    transition: transform .5s ease-in-out; /* kısa kaydırma animasyonu */
}

.top-marquee__item {
    height: calc(clamp(17px, 1.2vw, 20px) + 24px);
    display: flex;
    align-items: center;
    padding: 0 140px 0 20px; /* sağda 3 buton için boşluk */
    box-sizing: border-box;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: .3px; /* 0.2px -> 0.3px */
    font-weight: 700; /* daha belirgin */
    text-shadow: 0 1px 0 rgba(0,0,0,.08); /* kontrastı hafif artır */
}

.top-marquee--uppercase .top-marquee__item { text-transform: uppercase; }

.top-marquee__item a {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
}
.top-marquee__item a:hover { text-decoration: none; opacity: .95; }

.top-marquee__controls {
    position: absolute;
    top: 0; right: 0;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 8px;
    background: linear-gradient(90deg, rgba(15,143,52,0) 0%, rgba(15,143,52,.12) 100%);
}

.top-marquee__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px; width: 36px;
    min-width: 36px;
    border: 0; outline: 0;
    border-radius: 6px;
    background: rgba(0,0,0,.12);
    color: #fff; cursor: pointer;
    transition: background .2s ease, opacity .2s ease;
}
.top-marquee__btn:hover { background: rgba(0,0,0,.18); }

/* Tek duyuruda kontrol grubunu tamamen gizle ve sağ boşluğu normale çek */
.top-marquee--single .top-marquee__controls { display: none; }
.top-marquee--single .top-marquee__item { padding-right: 20px; }

/* Mobilde daha küçük ikon ve butonlar */
@media (max-width: 576px) {
    .top-marquee__btn { height: 32px; width: 32px; min-width: 32px; }
    .top-marquee__btn svg { width: 16px; height: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    .top-marquee__track { transition: none; }
}

/* MARKDOWN içerik için p tag reset */
.top-marquee__item p {
    font-size: inherit;  /* Üst elementten al */
    color: inherit;      /* Üst elementten al */
    line-height: inherit;
    margin: 0;           /* p'nin default margin'ini kaldır */
    padding: 0;
    display: inline;     /* p'yi inline yap, block davranışını kaldır */
}

/* MARKDOWN içindeki diğer elementler de inherit etsin */
.top-marquee__item strong,
.top-marquee__item b,
.top-marquee__item em,
.top-marquee__item i,
.top-marquee__item span {
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}
/* --- End Marquee Styles --- */

/* --- WhatsApp Support Button --- */
.whatsapp-button {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    background-color: #25d366;
    padding: 15px 5px;
    border-radius: 10px 0 0 10px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
    gap: 8px;
}

.whatsapp-button:hover {
    background-color: #000000;
}

.whatsapp-button img {
    width: 1.25rem;
    height: 1.25rem;
    transform: rotate(-90deg);
}

.whatsapp-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 1rem;
    letter-spacing: 0.047rem;
    font-weight: bold;
}
/* --- End WhatsApp Support Button --- */

/* --- Home Slider Height Controls --- */
:root {
    --home-left-slider-h: 500px;
    --home-right-slider-h: 500px;
}

/* Soldaki geniş slider ve sağdaki dar slider için sabit yükseklik */
#slider-animate-left.lh32pc { height: var(--home-left-slider-h) !important; }
#slider-animate-right.rh32pc { height: var(--home-right-slider-h) !important; }

/* Slick iç kapsayıcı ve slide öğelerini 100% yüksekliğe zorla */
#slider-animate-left,
#slider-animate-right,
#slider-animate-left .slick-list,
#slider-animate-left .slick-track,
#slider-animate-right .slick-list,
#slider-animate-right .slick-track,
#slider-animate-left .slick-slide > div,
#slider-animate-right .slick-slide > div { height: 100% !important; }

/* İçteki bağlantı blokları da tam yükseklik olsun */
#slider-animate-left a.d-block,
#slider-animate-right a.d-block,
#slider-animate-left .d-block,
#slider-animate-right .d-block { display: block; height: 100%; }

/* Görseller, alanı düzgün doldursun */
#slider-animate-left img,
#slider-animate-right img { width: 100%; height: 100% !important; object-fit: cover; display: block; }

/* Mobilde daha kısa: görünümü ferahlat */
@media (max-width: 768px) {
    :root {
        --home-left-slider-h: 320px;
        --home-right-slider-h: 280px;
    }
}
/* --- End Home Slider Height Controls --- */

