#style-switcher {
            left: -205px;
            background: transparent;
            border: none;
            box-shadow: none;
            -webkit-box-shadow: none;
            transition: left 0.5s ease;
            transform: translateY(-50%);
        }


        #style-switcher.vertical-buttons {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            /* Butonlar arasındaki boşluk */
        }

        .vertical-button {
            display: block;
            width: 130px;
            /* Varsayılan genişlik */
            padding: 10px 15px;
            background-color: #333;
            color: #fff;
            text-align: center;
            text-decoration: none;
            border-radius: 5px;
            opacity: 0.7;
            transition: all 0.3s ease;
            /* Animasyon efekti */
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .vertical-button:hover,
        .vertical-button.active {
            /* Hover veya active durumunda */
            width: 150px;
            /* Genişlik artırılır */
            opacity: 1;
            /* Tam görünür hale gelir */
            background-color: #555;
            /* Renk değişikliği */
            cursor: pointer;
        }

        .vertical-button:active {
            transform: scale(1.05);
            /* Tıklandığında küçük bir büyüme efekti */
        }

        .banner-button.active {
            font-weight: bold;
            /* Aktif olan banner butonuna vurgulu bir stil */
            text-decoration: underline;
        }

        #style-switcher .all {
            background-color: rgba(0, 176, 240, 0.8);
        }

        #style-switcher .now {
            background-color: rgba(249, 183, 63, 0.8);
        }

        #style-switcher .always {
            background-color: rgba(228, 101, 154, 0.8);
        }

        #style-switcher .soon {
            background-color: rgba(35, 56, 135, 0.8);
        }

        .list_carousel .item {
           /* border-right: 1px solid #ededed;*/
           box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
           padding: 12px !important;
        }
        
       .list_carousel .item img.hover {
            /*display: none;
            position: absolute;
            top: 0;
            left: 0;
            */
            }

            .list_carousel .item:hover img.normal {
            display: none;
            }

            .list_carousel .item:hover img.hover {
            display: block;
            }

        .now .image-card {
            position: relative;
            overflow: hidden;
            border-radius: 0.5rem;
        }

        .now .image-card img {
            width: 100%;
            height: auto;
            display: block;
        }

        .now .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
            z-index: 1;
        }

        .now .text-overlay {
            position: absolute;
            top: 5%;
            left: 10%;
            color: white;
            z-index: 2;
        }

        .now .altyazi .text-overlay {
            position: absolute;
            top: 70%;
            left: 10%;
            color: white;
            z-index: 2;
        }

        .now .text-overlay h5 {
            font-size: 2rem;
            /*font-weight: bold;
            font-family: "Gochi Hand", cursive;*/
            font-family: 'Hugtophia', sans-serif;
            color: white;
        }

        .now .text-overlay p {
            font-size: 1rem;
            margin-top: 0.5rem;
        }
        .now h1 {
            font-size: 5rem;
            font-family: 'Hugtophia', sans-serif;
            color: #ffc000;
        }
        .experience-item {
            position: relative;
            width: 200px;
            height: 200px;
            overflow: hidden;
            margin: 0 auto;
            padding: 0px;
            box-sizing: border-box;
        }
    
        .experience-item a {
            display: flex;
            width: 100%;
            height: 100%;
            align-items: center;
            justify-content: center;
            position: relative;
        }
    
        .experience-item img,
        .experience-item img.hover {
            position: absolute;
            max-width: 90%;
            max-height: 90%;
            width: auto !important;
            height: auto !important;
            object-fit: contain;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: opacity 0.3s ease;
        }
    
        .experience-item img.hover {
            opacity: 0;
            z-index: 2;
        }
    
        .experience-item:hover img.hover {
            opacity: 1;
        }
    
        .experience-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #f5f5f5;
            z-index: 1;
            transition: opacity 0.3s ease;
        }
    
        .experience-item.loaded::before {
            opacity: 0;
        }
        .product-title a {
            display: block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            max-width: 100%;
        }
        
        /* Opsiyonel: Hover durumunda tooltip gösterimi için */
        .product-title a {
            position: relative;
            cursor: pointer;
        }
        
        .product-title a:hover::after {
            content: attr(title);
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 100%;
            padding: 5px 10px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            border-radius: 4px;
            font-size: 14px;
            white-space: normal;
            max-width: 200px;
            z-index: 1000;
        }
        .thumbnail-container {
            position: relative;
            margin: 0 0 30px 0;
            box-shadow: none;
            padding: 0;
            box-shadow: 0 0 20px 0 rgba(0, 0, 0, .07);
            border-radius: 4px;
            overflow: hidden;
        }

        .thumbnail-container .product-image {
            position: relative;
            display: flex;
            height: 200px; /* Sabit bir yükseklik belirliyoruz */
            overflow: hidden; 
        }

        .thumbnail-container .product-image .product-thumbnail {
            display: inline-block;
            width: 100%;
            text-align: center;
            height: 100%;
        }
        .thumbnail-container .product-image img {
           /* width: 100%;
            height: 100%;
            object-fit: cover; 
            object-position: center;*/
        }

        .thumbnail-container img {
            margin: auto;
        }

        .thumbnail-container .product-meta {
            background-color: #fff;
            padding: 18px 30px 30px;
        }

        .thumbnail-container .category-default {
            margin-bottom: 10px;
        }

        .category-default a {
            color: #969ba1;
            font-weight: 400;
            font-size: 14px;
            line-height: 18px;
            text-transform: none;
            display: inline-flex;
            align-items: center;
        }

        .category-default a::before {
            content: "\ea33";
            font-family: fontello;
            font-size: 16px;
            margin-right: 6px;
        }

        .thumbnail-container .product-title {
            margin-bottom: 16px;
            margin: 0;
            padding: 0;
        }

        .thumbnail-container .product-title a {
            display: block;
            overflow: hidden;
            text-overflow: ellipsis;
            /*display: -webkit-box;*/
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            color: #2a2a2a;
            font-size: 18px;
            line-height: 26px;
            font-weight: 600;
            padding-bottom: 12px;
            max-height: 56px;
        }

        .thumbnail-container .wr-price-reviews .nb-revews {
            display: none;
        }

        .thumbnail-container .wr-price-reviews {
            display: -webkit-box;
            display: -moz-box;
            display: box;
            display: -webkit-flex;
            display: -moz-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -moz-box-pack: justify;
            box-pack: justify;
            -webkit-justify-content: space-between;
            -moz-justify-content: space-between;
            -ms-justify-content: space-between;
            -o-justify-content: space-between;
            justify-content: space-between;
            -ms-flex-pack: justify;
            align-items: center;
            padding-bottom: 20px;
            margin-bottom: 20px;
            border-bottom: 1px solid #eaeaea;
        }

        .thumbnail-container .btn_detail a {
            display: inline-flex;
            align-items: center;
            font-size: 14px;
            line-height: 24px;
            font-weight: 600;
            transition: 0.2s all;
            color: #afabab;
        }

        .thumbnail-container .btn_detail a span {
            position: relative
        }

        .thumbnail-container .btn_detail a span::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: auto;
            right: 0;
            width: 0;
            height: 1px;
            background-color: #002248;
            transition: 0.25s all
        }

        .thumbnail-container .btn_detail a::after {
            width: 20px;
            height: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-left: 8px;
            border-radius: 50px;
            /* background-color: #00b1f0; */
            content: "\e89f";
            font-family: "fontello";
            font-size: 20px;
            line-height: 20px;
            color: #afabab;
            transition: 0.2s all;
        }

        .thumbnail-container .btn_detail a::after {
            content: "\e89f"
        }

        .thumbnail-container .btn_detail a:hover {
            color: var(--link-color)
        }

        .thumbnail-container .btn_detail a:hover::after {
            color: #000;
        }

        .thumbnail-container .btn_detail a:hover span::before {
            width: 100%;
            left: 0;
            right: auto
        }

        .thumbnail-container:hover .functional-buttons {
            opacity: 1;
            -ms-opacity: 1;
            -o-opacity: 1;
            -moz-opacity: 1;
            -webkit-opacity: 1;
            filter: alpha(opacity=100);
            visibility: visible
        }

        .thumbnail-container .leo-list-product-reviews {
            margin-top: 0;
        }

        .leo-list-product-reviews-wraper {
            display: inline-block;
        }

        .leo-list-product-reviews .star_content,
        .leo-list-product-reviews .star,
        .review_author .star_content,
        .review_author .star,
        .product-rating .star_content,
        .product-rating .star,
        #leo_product_reviews_block_extra .star_content,
        #leo_product_reviews_block_extra .star {
            cursor: default;
        }

        .thumbnail-container .wr-price-reviews .star {
            font-size: 14px;
            line-height: normal;
            overflow: hidden;
            float: left;
            margin: 0 2px;
            cursor: pointer;

        }

        div.star.star_on:before,
        div.star.star_hover:before {
            content: "\ea99";
            display: inline-block;
            color: #ffc000 !important;
            font-family: fontello;
        }

        div.star:before {
            content: "\ea99";
            color: #d5d5d5;
            font-family: fontello;
            display: inline-block;
        }

    .dondur-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px auto;
  }

  .cember {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #a09f9f; /* Dış çember çizgisi */
    border-radius: 50%;
  }

  .ic-cember {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    border: 1px solid #a09f9f; /* İç çember çizgisi */
    border-radius: 50%;
  }

  .dondur-svg {
    width: 100%;
    height: 100%;
    animation: rotate-text 10s linear infinite;
    padding: 10px;
  }
  .dondur-svg textPath{font-size: 7px;}

  @keyframes rotate-text {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

  .sabit-ok {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: black;
    z-index: 10;
  }

        #always .section-always {
            background-image: url(img/allways.webp);
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            background-color: #f1f6ff;
        }

        .allways .thumbnail-container {
            display: flex;
            flex-wrap: wrap;
            padding: 20px;
            border-radius: 4px;
            box-shadow: 0 0 20px rgba(0, 0, 0, .07);
            background-color: #fff
        }

        @media (max-width: 767px) {
            .allways .thumbnail-container {
                max-width: 100%
            }
        }

        .allways .thumbnail-container .product-image {
            width: 47%
        }

        .allways .thumbnail-container .product-image img {
            min-height: 194px;
            object-fit: cover;
            border-radius: 4px
        }

        .allways .thumbnail-container .product-meta {
            width: 53%;
            padding: 10px 0 0 20px
        }

        .rtl .allways .thumbnail-container .product-meta {
            padding: 10px 20px 0 0
        }

        @media (max-width: 480px) {
            .allways .thumbnail-container .product-image {
                width: 100%
            }

            .allways .thumbnail-container .product-meta {
                width: 100%;
                padding: 20px 0 0 0
            }

            .rtl .allways .thumbnail-container .product-meta {
                padding: 20px 0 0 0
            }
        }

        .allways .thumbnail-container .product-title a {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical
        }

        .allways .thumbnail-container .product-description-short {
            margin-top: 16px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            font-size: 14px;
            line-height: 18px;
            color: #585c63
        }

        .allways .thumbnail-container .wr-reviews {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px
        }

        .allways .thumbnail-container .nb-revews {
            display: none
        }

        .allways .thumbnail-container .leo-list-product-reviews {
            margin-top: 0
        }

        .allways .thumbnail-container .leo-list-product-reviews .star {
            font-size: 14px;
            line-height: normal
        }

        .allways .thumbnail-container .product-price-and-shipping {
            margin-top: 0
        }

        .allways .thumbnail-container .wr-price {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding-top: 16px;
            margin-top: 16px;
            border-top: 1px solid #eaeaea
        }

        .allways .thumbnail-container .btn_detail a {
            display: inline-flex;
            align-items: center;
            font-size: 14px;
            line-height: 24px;
            font-weight: 600;
            transition: 0.2s all
        }

        .allways .thumbnail-container .btn_detail a span {
            position: relative
        }

        .allways .thumbnail-container .btn_detail a span::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: auto;
            right: 0;
            width: 0;
            height: 1px;
            background-color: #002248;
            transition: 0.25s all
        }

        .allways .thumbnail-container .btn_detail a::after {
            width: 20px;
            height: 20px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            margin-left: 8px;
            border-radius: 50px;
            background-color: var(--theme-color-second);
            content: "\f105";
            font-family: "Fontawesome 6 Pro";
            font-size: 12px;
            line-height: 20px;
            color: #fff;
            transition: 0.2s all
        }

        .rtl .allways .thumbnail-container .btn_detail a::after {
            margin-right: 8px;
            margin-left: inherit
        }

        [dir] .allways .thumbnail-container .btn_detail a::after {
            content: "\f104"
        }

        .allways .thumbnail-container .btn_detail a:hover {
            color: var(--link-color)
        }

        .allways .thumbnail-container .btn_detail a:hover::after {
            background-color: var(--theme-color-default)
        }

        .allways .thumbnail-container .btn_detail a:hover span::before {
            width: 100%;
            left: 0;
            right: auto
        }

        .cancel,
        .star {
            overflow: hidden;
            float: left;
            margin: 0 2px;
            cursor: pointer;
            font-size: 11px;
            line-height: 11px;
        }

        .product-flags {
            margin: 0;
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 14px;
            z-index: 1;
            text-transform: none;
            line-height: 18px;
            pointer-events: none;
            font-weight: 500;
            padding: 0;
        }

        .allways .product-flags .product-flag.discount {
            color: #fff;
            background: #c27993;
        }

        .product-flags li.product-flag {
            margin-right: 6.5px;
            padding: 2px 6px;
            border-radius: 4px;
            text-align: center;
            display: inline-block;
        }
        .product-description-short{
            display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
            }
        .section-one {
      position: relative;
    background-image: url(../img/i-m-g-9024.webp);
    background-size: cover;
    background-position: center;
    /* height: 100vh; */
    color: white;
    display: flex;
    background-transition: .3s;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    flex-direction: column;
    }
    .section-one .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
    }
    .section-one .content {
      position: relative;
      z-index: 1;
      text-align: center;
      padding-top: 30%;
    }
    /* İkinci Bölüm (Ortadaki Zamanlayıcı Bölüm) */
    .section-two {
    /*background-color: #fff; */
    text-align: center;
    padding: 0;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    display: flex
;
    flex-direction: column;
    position: absolute;
    top: 12%;
    left: 40%;
    }
    .section-two img {
      width: 100%;
    max-width: 350px;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: none;
    height: auto;
    }
    
    /* Üçüncü Bölüm */
    .section-three {
    background-color: #f2f6ff;
    background-image: url(img/H1-png-3-1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5rem 0;
    display: flex;
    --background-transition: .3s;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    flex-direction: column;
    }
    .section-three .text-content {
      text-align: center;
      padding: 2rem;
    }

   .soon .category-default a::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #838ebb;
    margin-right: 6px;
}
.soon .category-default a {
    text-transform: uppercase;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    color: #838ebb;
    display: inline-flex;
    align-items: center;
}
.soon .thumbnail-container .product-title a {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.soon .thumbnail-container .product-meta {
    
    padding: 0px;
}
.soon .thumbnail-container {
    position: relative;
    margin: 0px;
    box-shadow: none;
    padding: 0;
    /*box-shadow: 0 0 20px 0 rgba(0, 0, 0, .07);*/
    /*border-radius: 4px;*/
    overflow: hidden;
}
.soon .thumbnail-container .category-default {
    margin-top: 10px;
    margin-bottom: 10px;
}
.soon .thumbnail-container .wr-price-reviews{
    border:none;
}
.soon .wr-price-reviews p{
overflow: hidden; /* taşanları gizle */
    white-space: nowrap; /* alt satıra hiç inme */
    text-overflow: ellipsis; /* eğer uzunsa üç nokta koy */
}
.soon .product-title a{
    overflow: hidden; /* taşanları gizle */
        white-space: nowrap; /* alt satıra hiç inme */
        text-overflow: ellipsis; /* eğer uzunsa üç nokta koy */
    }
.soon .hbrimage{
    height: 100%;
    position: relative;
}
.soon .hbrimage a{display: inline-block;
    width: 100%;padding: 0 18px;}
.soon .hbrimage a img{
        vertical-align: middle;
        display: inline-block;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    transition: 0.25s all;
    max-width: 100%;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}    
.soon .blog_item_content {
    position: absolute;
   bottom: 60px;
    left: 40px;
    right: 30px;
    width: auto !important;
    display: flex;
}
.soon .h2-altav{margin: 0px 0px 10px 0px;
    padding: 4px 8px 4px 8px;
    background-color: #ffffff;
    border-radius: 4px 4px 4px 4px;}
    .soon .h2-altav h2{margin: 0px;}
.soon .h2-altav a{color: #002248;font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 18px;}   
    .soon .h2-altav a::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #3685fb;
    margin-right: 6px;
}
.soon .card-con{
    height: 100%;
    padding: 0 0px 60px;}
.soon .card {
    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin-bottom: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border: none;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}
    

  .soon  .card-content {
      position: absolute;
      bottom: 30px;
      left: 0;
      width: 100%;
      /*background: rgba(0, 0, 0, 0.6); */
      color: white;
      padding: 15px;
    }

   .soon .category {
      position: absolute;
    bottom: 167px;
    left: 15px;
    background: #ffc000;
    color: #111111;
    font-size: 0.8rem;
    padding: 5px 10px;
    /* border-radius: 20px; */
    font-weight: bold;
    text-transform: uppercase;
    }

    .soon .card-title {
      font-size: 1.5rem;
      margin: 0 0 10px;
      color: white;
      background-color: #4f609f;
      padding: 10px 10px;
    }

    .soon .card-meta {
        font-size: 0.9rem;
        color: #fbfbfb;
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgb(0 0 0 / 31%);
        padding: 10px 10px;
    }
    

   .soon .card-meta i {
      margin-right: 5px;
    }
    #soon section.section-always {
            background-image: url(img/allways.webp);
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            background-color: #f1f6ff;
        }
    .soon section .thumbnail-container {
            display: flex;
            flex-wrap: wrap;
            padding: 20px;
            border-radius: 4px;
            box-shadow: 0 0 20px rgba(0, 0, 0, .07);
            background-color: #fff;
            margin: 0 0 30px 0;

        }
    @media (max-width: 767px) {
            .soon section .thumbnail-container {
                max-width: 100%
            }
        }
    .soon section .thumbnail-container .product-image {
            width: 47%
        }

        .soon section .thumbnail-container .product-image img {
            min-height: 194px;
            object-fit: cover;
            border-radius: 4px
        }

        .soon section .thumbnail-container .product-meta {
            width: 53%;
            padding: 10px 0 0 20px
        }
@media (max-width: 480px) {
            .soon section .thumbnail-container .product-image {
                width: 100%
            }

            .soon section .thumbnail-container .product-meta {
                width: 100%;
                padding: 20px 0 0 0
            }

            .rtl .soon section .thumbnail-container .product-meta {
                padding: 20px 0 0 0
            }
        }

        .soon section .thumbnail-container .product-title a {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical
        }

        .soon section .thumbnail-container .product-description-short {
            margin-top: 16px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            font-size: 14px;
            line-height: 18px;
            color: #585c63
        }

        .soon section .thumbnail-container .wr-reviews {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px
        }

        .soon section .thumbnail-container .nb-revews {
            display: none
        }

        .soon section .thumbnail-container .leo-list-product-reviews {
            margin-top: 0
        }

        .soon section .thumbnail-container .leo-list-product-reviews .star {
            font-size: 14px;
            line-height: normal
        }

        .soon section .thumbnail-container .product-price-and-shipping {
            margin-top: 0
        }

        .soon section .thumbnail-container .wr-price {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding-top: 16px;
            margin-top: 16px;
            border-top: 1px solid #eaeaea
        }

        .soon section .thumbnail-container .btn_detail a {
            display: inline-flex;
            align-items: center;
            font-size: 14px;
            line-height: 24px;
            font-weight: 600;
            transition: 0.2s all
        }

        .soon section .thumbnail-container .btn_detail a span {
            position: relative
        }

        .soon section .thumbnail-container .btn_detail a span::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: auto;
            right: 0;
            width: 0;
            height: 1px;
            background-color: #002248;
            transition: 0.25s all
        }

        .soon section .thumbnail-container .btn_detail a::after {
            width: 20px;
            height: 20px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            margin-left: 8px;
            border-radius: 50px;
            background-color: var(--theme-color-second);
            content: "\f105";
            font-family: "Fontawesome 6 Pro";
            font-size: 12px;
            line-height: 20px;
            color: #fff;
            transition: 0.2s all
        }

        .rtl .soon section .thumbnail-container .btn_detail a::after {
            margin-right: 8px;
            margin-left: inherit
        }

        [dir] .soon section .thumbnail-container .btn_detail a::after {
            content: "\f104"
        }

        .soon section .thumbnail-container .btn_detail a:hover {
            color: var(--link-color)
        }

        .soon section .thumbnail-container .btn_detail a:hover::after {
            background-color: var(--theme-color-default)
        }

        .soon section .thumbnail-container .btn_detail a:hover span::before {
            width: 100%;
            left: 0;
            right: auto
        }

        

        .soon section .product-flags .product-flag.discount {
            color: #fff;
            background: #838ebb;
        }  
        .experience-card {
            /*height: 100%;*/
            display: flex;
            flex-direction: column;
        }
    
        .experience-card > div {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 250px; /* Sabit bir yükseklik belirleyin */
            overflow: hidden;
        }
    
        .experience-card img {
            object-fit: contain; /* Resmi orantılı şekilde sığdırır */
            max-height: 100%;
            width: auto;
            max-width: 100%;
        }   
        .mobile-filter-buttons {
            display: flex;
            width: 100%;
            background: #fff;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .mobile-filter-button {
            flex: 1;
            padding: 10px 5px;
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s ease;
            text-align: center;
            border: none;
            margin: 0;
            position: relative;
            transform-origin: bottom; /* Transform'un alt kısmı sabit kalacak */
        }
        
        /* Buton renkleri */
        .mobile-filter-button.all {
            background: rgb(0, 176, 240);
        }
        
        .mobile-filter-button.now {
            background: rgb(228, 101, 154);
        }
        
        .mobile-filter-button.always {
            background: rgb(35, 57, 135);
        }
        
        .mobile-filter-button.soon {
            background: rgb(249, 184, 63);
        }
        
        /* Active buton için yeni stil */
        .mobile-filter-button.active {
            transform: scaleY(1.1); /* Sadece yukarı doğru uzama */
        }
        
        /* Hover efekti */
        .mobile-filter-button:hover {
            transform: scaleY(1.1);
            color: #fff;
        }
        
        @media (max-width: 767px) {
            .mobile-filter-button {
                font-size: 14px;
            }
        }