@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.cdnfonts.com/css/poppins');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css?family=ABeeZee|Varela+Round');


:root {
    --anaRenk: #a78050;
}


::-webkit-scrollbar {
    width: 11px;
}



::-webkit-scrollbar-thumb {
    background: #cccccc;
}

::-webkit-scrollbar-thumb:hover {
    background: #cccccc;
}



body {
    font-family: "IBM Plex Sans", sans-serif;
}


.bl-banner {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}


.bl-banner::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.250);
    z-index: 4;
    content: "";
}

.bl-banner-bottomArrow {
    position: absolute;
    bottom: 10rem;

    width: 100%;
    pointer-events: none;
    user-select: none;
    animation: bounceDown 2s infinite;
    display: flex;
    justify-content: center;
}

@keyframes bounceDown {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(6px);
    }

    60% {
        transform: translateY(3px);
    }
}

.bl-banner-bottomArrow svg {
    height: 27px;
    width: auto;
    background: #ffffffc2;
    border-radius: 50%;
    color: black;
    backdrop-filter: blur(15px);
}


.bl-banner-col {
    height: 100vh;
    width: 100%;
}




.bl-banner-col.left {
    background-position: center !important;
    background-size: cover !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bl-banner-col-left-content {
    width: 60%;

}

.bl-banner-col-left-content b {
    color: white;
    font-weight: 300;
    font-size: 3rem;
}

.bl-banner-col-left-content span {
    display: block;
    color: rgba(255, 255, 255, 0.673);
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 1rem;
}

.bl-banner-col-left-content p {
    color: white;
    font-weight: 350;
    margin: 0;
    margin-top: 1rem;

}

.bl-banner-col-left-content a {
    background-color: white;
    text-decoration: none;
    color: black;
    padding: 9px 18px;
    margin-top: 2rem;
    display: block;
    width: max-content;
    transition: .25s;
}

.bl-banner-col-left-content a:hover {
    opacity: .5;
}


.bl-banner-col.right {}


.bl-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
    height: 60px;
    transition: .25s;

}

.bl-nav.bl-hover {
    background-color: white;
}

.bl-nav.bl-hover .bl-nav-main {
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.bl-nav-main {

    height: 60px;
    display: flex;
    justify-content: center;
    padding: 15px 32px;
    position: relative;
    align-items: center;
    border-top: 1px solid transparent;

}

.bl-nav-logo {
    position: absolute;
    height: 100%;
    padding: 16px 0;
}

.bl-nav-logo img {
    height: 100%;
}

.bl-nav-leftul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.4rem;
    height: 100%;
    align-items: center;

}

.bl-nav-leftul li {
    list-style: none;
}

.bl-nav-ads {
    background-color: white;
    display: flex;
    justify-content: center;
    height: 30px;
    align-items: center;
    transition: .15s;
}

.bl-nav.bl-hover .bl-nav-ads {
    background-color: black;
}

.bl-nav.bl-hover .bl-nav-ads span {
    color: white;

}

.bl-nav-ads span {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 450;
    transition: .15s;
    color: #2b2b2b;
}

.bl-nav-leftul a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    transition: .15s;

}

.bl-nav-leftul a:hover {
    opacity: .5;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;

    position: relative;
    white-space: nowrap;
}

.marquee {
    display: inline-block;
}

.marquee-content {
    display: inline-flex;
    gap: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    white-space: nowrap;
}

.marquee-content span {
    flex-shrink: 0;
}







.bl-banner-bottom-scrolltext {


    width: 100%;
    pointer-events: none;
    user-select: none;



}


.bl-scroll-text-content {

    color: #2c2c2c;
    font-size: 98px;
    padding: 0 1rem;
    font-weight: 550;

}


.bl-nav-searchForm {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid white;
    border-radius: 50px;
}

.bl-nav.bl-hover .bl-nav-searchForm {
    border: 1px solid rgb(231, 231, 231);

}


.bl-nav-searchForm svg {
    height: 72%;
    position: absolute;
    left: 5px;
    top: 4px;
    color: rgb(255, 255, 255);
    width: auto;
}

.bl-nav.bl-hover .bl-nav-searchForm svg {
    color: black;
}

.bl-nav-searchForm input {
    background-color: transparent;
    outline: none;
    border: 0;
    font-size: 14px;
    font-weight: 300;


    width: 17rem;
    padding-left: 1.95rem;
}

.bl-nav-searchForm input::placeholder {
    font-weight: 300;
    color: rgb(255, 255, 255);
    font-size: 14px;
}

.bl-hover .bl-nav-searchForm input::placeholder {
    color: rgb(116, 116, 116);

}

.bl-rightnav-icons {
    transition: .15s;
}

.bl-rightnav-icons:hover {
    opacity: .5;
}


.bl-rightnav-icons svg {
    color: white;
    height: 20px;
    width: auto;
}

.bl-hover .bl-rightnav-icons svg {
    color: black;
}

.bl-nav-righticons-flex {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
}



.bl-nav-urunbul-btn a {
    color: white;
    opacity: 1 !important;
}

.bl-arama-onerileri {
    position: absolute;
    width: 40rem;
    background-color: white;
    right: 0;
    margin-top: 15px;
    padding: 10px;
    display: none;
    border: 1px solid #ececec;
    animation: opacity .35s;
}

.bl-arama-urun-list {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #eaeaea;
    transition: .15s;
    cursor: pointer;
}

.bl-arama-urun-list:hover {
    border: 1px solid black;
}

.bl-arama-urun-list img {
    height: 100%;
    height: 15rem;
}

.bl-arama-swiper {
    height: 100%;
    overflow: hidden;
}

.bl-arama-oneri-title {
    display: block;
    padding: 0 8px;
    color: black;
    margin-bottom: 10px;
    width: max-content;

}

.bl-arama-swiper .swiper-button-next:after {
    font-size: 16px;
    color: black;

}

.bl-arama-swiper .swiper-button-prev:after {
    font-size: 16px;
    color: black;

}

.bl-arama-urun-list b {
    font-weight: 300;
    font-size: 14px;
    color: black;
}

.bl-arama-urun-list-buttonFlex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
    padding-bottom: 5px;
    margin-top: 7px;
}

.bl-arama-urun-list-buttonFlex a {
    text-decoration: none;
    background-color: var(--anaRenk);
    color: white;
    font-size: 13px;
    color: white;
    padding: 0 10px;
}


@keyframes opacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


.bl-ic-rules {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.bl-ic-rules p {
    margin: 0;
    color: rgb(71, 71, 71);
    font-size: 15px;
}

.bl-ic-rules img {
    height: 55px;
    width: auto;
}

.bl-acilir-menu {
    position: fixed;
    width: 400px;
    height: calc(100% - 80px);
    background-color: #f7f7f7d4;
    z-index: 999999;
    left: 10px;
    top: 70px;
    backdrop-filter: blur(10px);
    transform: translateX(-110%);
    border: 1px solid #efefef;
    transition: transform 0.4s cubic-bezier(0.85, 0, 0.15, 1);
    border-bottom: 9px solid black;
}


.bl-acilir-menu-close {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    z-index: 50;
    cursor: pointer;
    transition: .15s;
}

.bl-acilir-menu-close:hover {
    opacity: .3;
}

.bl-arama-swiper a {
    text-decoration: none;
}


.bl-home-coksatanlar {
    position: relative;
}



.bl-home-coksatanlar img {
    width: 100%;
    height: 680px;
    object-fit: cover;
}

.favKaldir {
    position: absolute;
    right: 9px;
    top: 6px;
    z-index: 5;
    color: black;
    background: white;
    padding: 2px 6px;
    text-decoration: none;
    transition: .5s;
}

.favKaldir:hover{
    opacity: .5;
}

.bl-home-coksatanlar.fav img {
    width: 100%;
    height: 540px;
    object-fit: cover;
}

.bl-homebasic-title {
    font-size: 28px;

}


.bl-homeurun-swiper .swiper-button-next:after {
    font-size: 13px;
    color: black;
    background: #ffffffc9;
    height: 41px;
    width: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: .15s;
}

.bl-homeurun-swiper .swiper-button-next:hover::after {
    transform: scale(1.11);
}


.bl-homeurun-swiper .swiper-button-prev:hover::after {
    transform: scale(1.11);
}


.bl-homeurun-swiper .swiper-button-prev:after {
    font-size: 13px;
    color: black;
    background: #ffffffc9;
    height: 41px;
    width: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .15s;
    border-radius: 50%;

}

.bl-homeurun-swiper .swiper-button-next {
    width: 40px;
    height: 40px;
}

.bl-homeurun-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
}

.bl-homeurun-swiper a {
    text-decoration: none;
}


.bl-home-coksatanlar:hover b,
.bl-home-coksatanlar:hover p {
    transform: translateX(5px);
    opacity: .7;
}

.bl-home-coksatanlar b {
    color: black;
    font-size: 15px;
    margin-top: 1rem;
    display: block;
    font-weight: 400;
    transition: .15s;

}

.bl-home-coksatanlar p {
    margin: 0;
    color: black;
    font-size: 15px;
    transition: .15s;
    margin-top: 0.55rem;
}


.bl-home-coksatanlar-imagecont {
    position: relative;
    overflow: hidden;
}


.bl-home-coksatanlar:hover .bl-home-coksatanlar-imagecont::before{
    opacity: 1;
}

.bl-home-coksatanlar-imagecont::before{
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.070);
    content: "";
    top: 0;
    left: 0;
    opacity: 0;
    transition: .25s;
}


.bl-home-coksatanlar:hover .bl-coksatanlar-cont-hoverdiv {
    transform: translateY(0%);

}


.bl-coksatanlar-cont-hoverdiv {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: max-content;
    background-color: #6c6c6c5e;
    backdrop-filter: blur(9px);
    display: flex;
    align-items: end;
    left: 0;
    justify-content: space-around;
    padding: 1rem;
    transform: translateY(100%);
    transition: .6s;
}

.bl-coksatanlar-cont-hoverdiv button {
    flex: 1; 
    border: 0;
    outline: none;
    background-color: black;
    color: white;
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    transition: .15s;

}

.bl-coksatanlar-cont-hoverdiv button svg {
    height: 20px;
    width: auto;
    position: absolute;
    right: 1rem;
}

.bl-coksatanlar-cont-hoverdiv button:hover {
    opacity: .5;
}

.bl-coksatanlar-cont-hoverdiv button:last-child {
    color: rgb(255, 255, 255);
}


.bl-home-serit-bg {
    height: 100vh;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
}


.bl-home-serit-bg-content {
    position: absolute;
    left: 3rem;
    bottom: 3rem;
    width: 700px;
}

.bl-home-serit-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(54deg, rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0));
    /* çapraz geçişli siyah */
    z-index: 0;
    /* içerik arkada kalsın */
    pointer-events: none;
    /* tıklanabilirliği bozmasın */
}


.bl-home-serit-bg-content b {
    font-size: 3rem;
    color: white;
    font-weight: 300;
}


.bl-home-serit-bg-content p {
    color: white;
    font-weight: 400;
    font-size: 15px;
    margin: 0;
    margin-top: 1rem;
    margin-bottom: 3rem;

}

.bl-home-serit-bg-content a {

    background-color: white;
    text-decoration: none;
    color: black;
    padding: 9px 18px;
    margin-top: 2rem;
    display: block;
    width: max-content;
    transition: .25s;



}

.bl-home-serit-bg-content a:hover {
    opacity: .5;
}

.bl-home-coksatanlar.kategori-cont:hover .bl-homeslid-kategori-content {
    transform: translateY(0rem);
}

.bl-home-coksatanlar.kategori-cont:hover p {
    opacity: 1 !important;
}

.bl-home-coksatanlar.kategori-cont:hover button {
    opacity: 1;
}

.bl-homeslid-kategori-content button:hover {
    opacity: .5 !important;
}


.bl-home-coksatanlar.kategori-cont:hover {
    backdrop-filter: blur(20px);
}

.bl-home-coksatanlar.kategori-cont:hover .bl-homeslid-kategori-content {
    backdrop-filter: blur(14px);
}

.bl-homeslid-kategori-content {
    position: absolute;
    bottom: 0;
    left: 0;

    padding: 2rem;
    z-index: 2;
    transform: translateY(10rem);
    transition: .6s;
}

.bl-homeslid-kategori-content b {
    font-size: 3rem;
    color: white;
    font-weight: 600;
    opacity: 1 !important;
    transform: translateX(0) !important;

}

.bl-homeslid-kategori-content p {
    color: white;

    transform: translateX(0) !important;
    margin-top: 2rem;
    opacity: 0 !important;
    transition: .25s;

}

.bl-homeslid-kategori-content button {
    background-color: white;
    text-decoration: none;
    color: black;
    padding: 9px 18px;
    margin-top: 2rem;
    opacity: 0;

    transition: .25s;
    border: 0;
}





.bl-home-coksatanlar.kategori-cont {
    position: relative;


}


.bl-home-coksatanlar.kategori-cont::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(54deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0));
    /* çapraz geçişli siyah */
    z-index: 1;
    /* içerik arkada kalsın */
    pointer-events: none;
    /* tıklanabilirliği bozmasın */
}




.bl-homeurun-cat-swiper .swiper-button-next:after {
    font-size: 13px;
    color: black;
    background: #ffffffc9;
    height: 41px;
    width: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: .15s;
}

.bl-homeurun-cat-swiper .swiper-button-next:hover::after {
    transform: scale(1.11);
}


.bl-homeurun-cat-swiper .swiper-button-prev:hover::after {
    transform: scale(1.11);
}


.bl-homeurun-cat-swiper .swiper-button-prev:after {
    font-size: 13px;
    color: black;
    background: #ffffffc9;
    height: 41px;
    width: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .15s;
    border-radius: 50%;

}

.bl-homeurun-cat-swiper .swiper-button-next {
    width: 40px;
    height: 40px;
}

.bl-homeurun-cat-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
}


.bl-acilir-menu-icerik {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    font-weight: 350;

    position: relative;
    height: 100%;
}


.bl-ac-mn-title:hover svg {
    transform: scale(1.4);
}

.bl-ac-mn-title svg {
    transition: .15s;
}

.bl-ac-mn-title:hover {
    padding-left: 5px;
}


.bl-acilir-menu-kategori {
    width: 100%;
    cursor: pointer;
    max-height: 45.44px;
    overflow: hidden;
}

.bl-ac-mn-title {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    transition: .15s;
    padding: 0.67rem 0;
}


.bl-acilir-menu-kategori.active {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: white;
    left: 0;
    top: 0;
    max-height: initial !important;
    padding: 4rem 2rem;
    overflow: visible;
}

.bl-acilir-menu-kategori.active .bl-ac-mn-title svg {
    transform: rotate(180deg);
}

.bl-acilir-menu-kategori.active .bl-ac-mn-title {
    padding-left: 0px !important;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #d3d3d3;
    /* background: #f3f3f3; */
    padding: 0.67rem 1rem !important;
}

.bl-acilir-menu .accordion button {
    padding: 10px 10px !important;
    border: 0 !important;
    box-shadow: none !important;
    font-size: 14px;
    border-radius: 0 !important;
}


.bl-acilir-menu .accordion-item {
    border: 0 !important;
}

.bl-acilir-menu-alt-kategoriler {
    padding: 0 0.7rem;
}


.bl-acilir-menu .accordion .accordion-button:not(.collapsed) {
    background-color: #f3f3f3;
}

.bl-acilir-menu .accordion .accordion-button::after {
    width: 14px;
    height: 14px;

    background-size: 14px;

}

.bl-acilirmenu-katresimler {
    visibility: hidden;
}

.bl-acilir-menu-kategori.active .bl-acilirmenu-katresimler {
    visibility: visible;
}






.bl-acilirmenu-katresimler-swiper {
    position: absolute;
    height: 70%;
    width: max-content;
    background: white;
    left: 399px;
    top: 4rem;

    animation: opacity .5s;
    border: 7px solid #efefef;
    background-color: #efefef;
    user-select: none !important;
}

.bl-acilirmenu-katresimler img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bl-acilirmenu-katresimler-swiper .swiper-slide {
    width: 200px;
    height: 200px;
}

.bl-acilirmenu-a-flex {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bl-acilirmenu-a-flex a {
    font-size: 15px;
    text-decoration: none;
    color: black;
    transition: .15s;
}

.bl-acilirmenu-a-flex a:hover {
    opacity: .5;
}


.bl-acilirmenu-acildiktansonra-bg {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #00000057;
    z-index: 999998;
    backdrop-filter: blur(9px);
    animation: opacity .5s;
    display: none;
}

.bl-acilirmenu-rotatetext {
    position: absolute;
    font-size: 4rem;
    color: white;
    left: 231px;
    bottom: 11rem;
    transform: rotate(90deg);
    width: max-content;
    font-weight: 100;
    transition: .25s;
    visibility: hidden;
    user-select: none;
    pointer-events: none;

}

.bl-acilirmenu-kategoribazli-coksatan b {
    font-weight: 400;
    font-size: 14px;
    color: gray;
}

.bl-acilirmenu-kategoribazli-coksatan a:hover img {
    border: 1px solid rgb(53, 53, 53);

}

.bl-acilirmenu-kategoribazli-coksatan img {
    width: 100%;
    transition: .15s;
    border: 1px solid #dadada;
    margin-top: 0.3rem;

}

.row.bl-acilirmenu-kategoribazli-coksatan {
    border-bottom: 1px solid #d3d3d3;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}


.bl-footer {
    background-color: #f6f6f6;
    padding: 1.6rem;
}

.bl-footer-logo {
    width: 130px;
}

.bl-footer-ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-left: 1px solid #dddddd;
    padding-left: 28px;
    position: relative;
    margin-left: 2rem;
    height: 100%;
}

.bl-footer-ul::before {
    position: absolute;
    height: 9px;
    width: 9px;
    content: "";
    background-color: black;
    left: -5px;
    top: -10px;
    transform: rotate(45deg);
}

.bl-fotul-before-sirala .col-3:nth-child(even) .bl-footer-ul::before {
    bottom: -10px;
    top: initial !important;
}


.bl-footer-ul li {
    list-style: none;
    font-size: 15px;
    transition: .15s;
}


.bl-footer-ul li:hover {
    opacity: .5;
}

.bl-footer-ul li:first-child {

    opacity: 1 !important;
    margin-bottom: 10px;
    color: rgb(23, 23, 23);
}

.bl-footer-ul li a {
    text-decoration: none;
    color: rgb(122, 122, 122);
}

.ft-Footer_Socials {
    display: flex;
    gap: 1.3rem;
    margin-left: 8px;
}

.ft-Footer_Socials svg {
    color: #ffffff;
    height: 30px;
    width: auto;
    background: black;
    padding: 7px;
    border-radius: 50%;
}

.util-ScreenReaderOnly {
    display: none;
}


.bl-footer-copyright {
    color: rgb(122, 122, 122);
    font-weight: 350;
    margin-left: 10px;
}

.bl-footer-odeme-svg {
    display: flex;
    gap: 0.75rem;
}

.bl-footer-odeme-svg svg {
    width: 50px;
    height: auto;
}

.ft-Footer_Social {
    transition: .15s;
}

.ft-Footer_Social:hover {
    opacity: .5;
}

.bl-footer-cerceve {
    background: white;
    padding: 3rem 0;
    border-bottom: 8px solid black;
    padding-bottom: 4rem;
    overflow: hidden;
}


.bl-footerustu-maddeler {

    background-color: #f6f6f6;
}

.bl-footerustu-maddecontent {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    height: 100px;
    /* border-top: 1px solid #dcdcdc; */
    /* border-bottom: 1px solid #dcdcdc; */
    background: white;
    transition: .15s;
}

.bl-footerustu-maddecontent b {
    color: rgb(39 39 39);
    font-weight: 500;
}

.bl-footerustu-maddecontent p {
    color: rgb(65, 65, 65);
    font-weight: 350;
}

.egerİletisim {
    height: 19rem;
    display: flex;
    align-items: center;
    background-color: #f6f6f6 !important;
    padding-top: 2rem;
    margin-top: 5rem;
}

.egerContent h5 {
    font-weight: 550;
    font-size: 33px;
    font-family: Poppins;
    padding: 0;
    margin: 0;
}

.egerContent span {
    font-weight: 300;
    font-size: 33px;
    padding: 0;
    margin: 0;
    font-family: Poppins;
}

.egerContent input {
    border: 0;
    position: relative;
    outline: none;
    border: 1px solid #cfcfcfcf;
    width: 100%;
    padding: 15px 25px;
}

.aboneOl {
    position: absolute;
    color: white !important;
    right: 0;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 4rem;
    text-decoration: none;
    top: 0;
}

.egerContent p {
    color: gray;
    margin-top: 10px;
    font-size: 13px;
    margin-left: 5px;
}


.bl-footerustu-maddecontent.bir {
    border-left: 3px solid black;
    /* Daha canlı pastel pembe – ruj, allık */
}

.bl-footerustu-maddecontent.iki {
    border-left: 3px solid black;
    /* Daha canlı pastel pembe – ruj, allık */
}

.bl-footerustu-maddecontent.üc {
    border-left: 3px solid black;
    /* Daha canlı pastel pembe – ruj, allık */
}

.bl-footerustu-maddecontent:hover {
    border-left-width: 12px;
}


.loader {
    background: #f9f9f9;
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s;
    display: none;



}

.loader img {
    opacity: 0;
    transition: .5s;
}

.loader-inner {
    bottom: 0;
    height: 60px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    transition: .5s;
    top: 0;
    width: 100px;
}

.loader-line-wrap {
    animation:
        spin 2000ms cubic-bezier(.175, .885, .32, 1.275) infinite;
    box-sizing: border-box;
    height: 50px;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    transform-origin: 50% 100%;
    width: 100px;
}

.loader-line {
    border: 4px solid transparent;
    border-radius: 100%;
    box-sizing: border-box;
    height: 100px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
}

.loader-line-wrap:nth-child(1) {
    animation-delay: -50ms;
}

.loader-line-wrap:nth-child(2) {
    animation-delay: -100ms;
}

.loader-line-wrap:nth-child(3) {
    animation-delay: -150ms;
}

.loader-line-wrap:nth-child(4) {
    animation-delay: -200ms;
}

.loader-line-wrap:nth-child(5) {
    animation-delay: -250ms;
}

.loader-line-wrap:nth-child(1) .loader-line {
    border-color: #1a1a1a;
    /* siyah */
    height: 90px;
    width: 90px;
    top: 7px;
}

.loader-line-wrap:nth-child(2) .loader-line {
    border-color: #3a3a3a;
    /* koyu gri */
    height: 76px;
    width: 76px;
    top: 14px;
}

.loader-line-wrap:nth-child(3) .loader-line {
    border-color: #5c5c5c;
    /* füme gri */
    height: 62px;
    width: 62px;
    top: 21px;
}

.loader-line-wrap:nth-child(4) .loader-line {
    border-color: #7a5c3c;
    /* koyu kahverengi */
    height: 48px;
    width: 48px;
    top: 28px;
}

.loader-line-wrap:nth-child(5) .loader-line {
    border-color: #a38c74;
    /* açık kahve-gri karışımı */
    height: 34px;
    width: 34px;
    top: 35px;
}


@keyframes spin {

    0%,
    15% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bl-acilir-menu-kategori.active .bl-ac-mn-title span {
    display: inline-block;

}


.bl-ac-mn-title span {
    font-size: 12px;
    display: none;
    font-weight: 300;
}




.bl-acilir-menu-kategori.active .bl-ac-mn-title:hover {
    padding-right: 1.5rem !important;
}

.bl-hover-logo {
    display: none;
}

.bl-hover .bl-main-logo {
    display: none;
}

.bl-hover .bl-hover-logo {
    display: block;
}


.ttr-logo {
    position: absolute;
    bottom: 24px;
    width: 100%;
    display: flex;
    justify-content: center;
    left: 0;
    font-size: 12px;
    align-items: center;
    color: gray;
    font-weight: 300;
    gap: 7px;
}

.ttr-logo a {
    text-decoration: none;
    color: gray;

}

.ttr-logo img {
    height: 22px;
    opacity: .4;
}

.no-interaction {
    pointer-events: none;
    /* Etkileşimi kapatır */
    user-select: none;
    /* Seçimi engeller */
    display: block;
    width: 100%;
    /* İsteğe bağlı olarak boyutlandır */
    height: auto;
}


.bl-hamb {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bl-hamb div {
    width: 30px;
    height: 2px;
    background-color: white;
}

.bl-hover .bl-hamb div {
    background-color: black;
}

.bl-hamb.active div:nth-child(2) {
    display: none;
}

.bl-home-coksatanlar.kategori-cont:hover img {

    display: none;
}

.bl-home-coksatanlar.kategori-cont:hover video {
    display: block;
}

.bl-home-coksatanlar.kategori-cont video {
    width: 100%;
    height: 680px;
    display: none;
    object-fit: cover;
}

.bl-footer-anim-text {
    font-size: 8vw;
    font-weight: bolder;
    color: black;
    letter-spacing: -1rem;
    display: block;
    text-align: end;
    position: absolute;
    right: 2rem;
    bottom: 5px;

}



.bl-footer-socicons-position {
    position: relative;
    top: 4rem;
    padding-left: 31px !important;
}

.hover-word {
    display: flex;
    justify-content: center;
    gap: 5px;

    font-weight: bold;
    line-height: 1;
}

.hover-word>span {
    display: inline-block;
    color: #575757;
}

.hover-word>span>span {
    display: inline-block;
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

/* Hover olan harf */
.hover-word>span.hovered>span {
    transform: scaleY(1.4);
}

/* Komşu harf */
.hover-word>span.neighbor>span {
    transform: scaleY(1.2);
}

/* Küçük ve orta boyutlu laptoplar için */
@media screen and (max-width: 1366px) {
    html {
        zoom: 80%;
    }
}

/* Daha küçük laptoplar (örneğin netbooklar) */
@media screen and (max-width: 1024px) {
    html {
        zoom: 80%;
    }
}


.bl-home-slogan {
    display: flex;
    justify-content: center;
    padding: 6rem 0;
    padding-top: 9rem;
}


.bl-home-slogan p {
    font-family: "Playfair Display", serif;
    font-size: 35px;
    width: 800px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.bl-home-slogan-tırnak {
    position: relative;
}

.bl-tirnak-div {
    position: absolute;
    width: 100%;
    left: 6rem;
    display: flex;
    top: -64px;
}

.bl-home-slogan-tırnak svg {
    height: 8rem;
    width: auto;
    color: #e3e3e3;
}

.bl-nokta {
    height: 15px;
    width: 15px;
    background-color: black;
    display: inline-block;
    border-radius: 50%;
    position: relative;
    bottom: -1px;
}

.bl-sepet {
    position: fixed;
    top: 70px;
    right: 10px;
    z-index: 99999999;
    width: max-content;
    display: flex;
    justify-content: end;
    transform: translateX(110%);
    transition: transform 0.4s cubic-bezier(0.85, 0, 0.15, 1);
    height: calc(100% - 80px);
}

.bl-sepet-bg {
    width: 500px;
    height: 100%;
    background-color: #ffffffd1;
    position: relative;
    overflow-y: auto;
    padding: 4rem 2rem;
}


.bl-sepet-close {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    transition: .5s;
    cursor: pointer;
}

.bl-sepet-close:hover {
    opacity: .4;
}

.bl-sepet-header b {
    font-size: 14px;
    font-weight: 400;
    color: black;
}

.bl-sepet-header {
    text-align: center;
    border-top: 1px solid rgb(201, 201, 201);
    border-bottom: 1px solid rgb(201, 201, 201);
    padding: 1rem 0;
}

.bl-sepet-items {
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
    overflow: auto;
    height: 70%;
    padding-right: 1rem;
}

.bl-sepet-item {
    display: flex;
    border-bottom: 1px solid rgb(201, 201, 201);
    padding-bottom: 1rem;
}

.bl-sepet-item img {
    height: 90px;
    width: 90px;
}

.bl-sepet-item-left {
    margin-right: 1rem;

}

.bl-sepet-item-right {
    position: relative;
    width: 100%;
}

.bl-sepet-item-right i {
    position: absolute;
    right: 10px;
    top: 0px;
    font-size: 13px;
}

.bl-sepet-item-right span {
    position: absolute;
    left: 0px;
    bottom: 0px;
    font-weight: 550;
    text-decoration: underline;
    font-size: 13px;
    cursor: pointer;
}

.bl-sepet-item-right b {
    font-weight: 500;
    max-width: 210px;
    display: block;
    font-size: 13px;
}

.bl-sepet-adetsec {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.bl-sepet-adetsec label {
    font-size: 13px;
    margin-right: 10px;
}

.bl-sepet-adetsec select {
    background: #ffffffc7;
    border: 0;
    outline: none;
    padding: 2px 10px;
}

.bl-sepet-items .bl-sepet-item:last-child {
    border-bottom: 0px;
}


.bl-sepet-bg a {
    background-color: #1e1e1e;
    width: 100%;
    display: block;
    color: white;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    margin-top: 2rem;
    font-size: 13px;
    transition: .5s;
}

.bl-sepet-bg a:hover {
    opacity: .7;
}


.kurumPage {
    padding-top: 60px;
}

.c-row {
    display: flex;
    flex-direction: column;
    margin: 12px 0;
}

.address-title {
    font-weight: 200;
    margin-bottom: 20px;
    font-size: 31px;
    color: #1c1c1c;
}


.c-row label {

    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 400;
    color: #3f3f3f;
}



.c-row input {
    outline: none;
    border: 0;
    background-color: #fafafa;
    padding: 8px;
    border: 1px solid #dedede;
    border-left: 2px solid #3c3835;
}

.c-row textarea {
    outline: none;
    border: 0;
    background-color: #fafafa;
    padding: 8px;
    border: 1px solid #dedede;
    border-left: 2px solid #3c3835;
    min-height: 200px;
}

.c-row select {
    outline: none;
    border: 0;
    background-color: #fafafa;
    padding: 8px;
    border: 1px solid #dedede;
    border-left: 2px solid #3c3835;
}

.sifrmUnut {
    color: black;
    font-size: 14px;
    text-align: right;
    margin-top: 10px;
    margin-bottom: 10px;
}

.filtreleBtn {
    background: #3c3835 !important;
    border: 0;
    color: white;
    padding: 6px 0;
    font-size: 16px;
}

.filtreleBtn.maxwidth {
    width: max-content;
    padding: 6px 11px;
}

.frmContact {
    width: 100%;
    padding: 1rem 4rem;
    border: 1px solid #e8e8e8;
    border-top: 0;
    background: #fefefe;
    padding-bottom: 3rem;
}

.frmContact.sifre{
       border-top: 1px solid #e8e8e8;
       width: 500px;

}

.frmContact.profil{
    padding: 20px !important;
    border: 0 !important;
    padding-top: 0 !important;
    padding-left: 0 !important;
}

.kurumpageTitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 1rem;
    display: block;
    margin-top: 1rem;
}



.kurumpageTitle.yeni {
    font-size: 40px;
}





.uyeOlList {
    font-size: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: rgb(66, 66, 66);
}

.kurumPageResim {
    height: 40rem;
    object-fit: cover;
}


.uyegirspadngt {
    padding-top: 35px;
}



.frmTitleUyeol {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.bl-textsayfa-title {
    font-size: 24px;
    text-align: center;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Playfair Display';
}

.bl-arama-sonuc {
    display: flex;
    justify-content: center;
    font-size: 31px;
    font-weight: 250;
    color: gray;
    flex-wrap: wrap;

}


.bl-arama-sonuc i {
    margin-right: 1rem;
    text-transform: uppercase;
    color: black;

}


.bl-aramasayfa-inp {
    width: 100%;
    display: flex;
    position: relative;
    margin-top: 2rem;
    flex-direction: column;
    align-items: center;
}

.bl-aramasayfa-inp svg {
    position: absolute;
    right: 0;
    height: 100%;
    width: auto;
    top: 0;
    background: black;
    color: white;
    padding: 8.5px;
    cursor: pointer;
    transition: .25s;
}

.bl-aramasayfa-inp svg:hover {
    padding: 12px;
}

.bl-hirasxas {
    position: relative;
    width: 70%;

}

.bl-aramasayfa-inp input {
    width: 100%;
    border: 0;
    outline: none;
    background-color: #fbfbfb;
    border: 1px solid #e7e7e7;
    padding: 10px 10px;

}


.bl-kategori-title {
    display: flex;
    justify-content: center;
    font-size: 40px;
    font-weight: 100;
    margin-top: 2rem;
    font-family: 'Playfair Display';
    color: rgb(36, 36, 36);
}


.bl-kategori-filtre {
    border: 1px solid #dddddd;
    padding: 1rem 15px;
}

.filters-toolbar__input {
    border: 0;
    outline: none;
}

.bl-kategori-filtre span {
    font-size: 12px;
    text-transform: uppercase;
}

.bl-kat-uruncount {
    position: absolute;
    right: 15px;
    top: 20px;
}

.c-faq__answer {
    position: absolute;
    opacity: 0;
    z-index: -1;
}


.section__headline {
    font-size: 62px;
    font-weight: light;
    color: #3d3d3d;
    padding-left: 15px;
}

.c-faqs__headline {

    text-align: left;
    padding-left: 15px;
    font-size: 1.5em;
    margin-top: 1.5em;
    font-weight: 400;
}

.c-faqs {
    margin: 15px 0;
    padding: 0 15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
}

.c-faq {

    list-style: none;
    margin: 10px 0 5px;
}

.c-faq__title {
    cursor: pointer;
    font-weight: 300;
    background: white;
    z-index: 10;
    position: relative;
    font-size: 1.1em;
}

.c-faq__title:hover {
    text-decoration: underline;
}

.c-faq__title::after {
    white-space: nowrap;
    font-weight: 300;
    padding-left: 5px;
    opacity: 0;
    transform-origin: 11px;
    transform: rotateZ(90deg);
    display: none;
    content: ">";
}

.c-faq--active .c-faq__title {
    color: #2a2a2a;
    font-weight: 500;
}

.c-faq--active .c-faq__title::after {
    opacity: 1;
    transform: rotateZ(90deg);
    display: inline-block;
}

.c-faq__answer {
    font-weight: normal;
    margin-top: -10%;
    transition: all 0.1s;
    z-index: 1;
    font-size: 0.9em;
    color: #505050;
}

.c-faq--active .c-faq__answer {
    opacity: 1;
    position: relative;
    top: 0;
    left: 0;
    font-weight: 300;
    margin-top: 5px;
    margin-bottom: 10px;
    transition: all 0.2s;
    border-radius: 3px;
    border: 1px solid #f1f2f3;
    border-top: 1px solid #1e88e5;
    padding: 20px;
}

@media (min-width: 780px) {
    .c-faqs {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        height: auto;
    }

    .c-faqs::before {
        opacity: 0.2;
    }

    .c-faq {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .c-faq .c-faq__title {
        width: 50%;
        padding-right: 40px;
        display: inline-block;
    }

    .c-faq .c-faq__title::after {
        display: none;
    }

    .c-faq .c-faq__answer {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 50%;
        width: 50%;
        border-left-color: #000000;
        border-top-color: #f1f2f3;
        background: #fcfcfc;
    }
}

.c-note {
    font-size: 0.8em;
    padding-left: 15px;
    opacity: 0.5;
    transition: opacity 0.2s ease-in-out;
}

.c-note:hover {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

.c-note a {
    color: #1e88e5;
}


.bl-urundetayleft img.first {
    height: calc(100vh - 100px);
    object-fit: cover;
    margin-top: 10px;

}

.bl-urundetayleft img.first:first-child{
    margin-top: 0px;
}


.bl-urundetay-otherfoto {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
    /* aralık */
    margin-top: 10px;
}

.bl-urundetay-otherfoto img {
    width: calc(50% - 5px);
    /* boşlukları telafi eder */
    height: 520px;
    object-fit: cover;
}


.bl-urun-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;

    position: sticky;
    top: 2rem;
}

.bl-urun-content b {
    font-size: 2.6rem;
    font-family: "Playfair Display", serif;
    font-weight: 100;
    color: #4f4f4f;
    text-align: center;
    max-width: 500px;
}

.bl-urun-content p{
    font-size: 15px;
    font-weight: 300;
    color: gray;
    text-align: center;
    max-width: 400px;
    margin: 1rem 0;

}

.bl-urun-content a.urnsiparisbtn{
        background: #2b2b2b;
    display: block;
    width: 60%;
   
    padding: 9px 19px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    display: flex
;
    justify-content: space-between;
    margin-top: 3rem;
    transition: .15s;
}

.bl-urun-content a.urnsiparisbtn:hover{
    padding: 9px 25px;
}

.bl-urunAciklama {
    width: 80%;
    margin-top: 3rem;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 1rem;
}

.bl-urunAciklama-title {
    border-bottom: 1px solid #d8d8d8;
}

.bl-urunAciklama-title span {
    border-bottom: 2px solid black;
    height: 100%;
    display: block;
    width: max-content;
    padding-bottom: 13px;
}

.bl-urunAciklama p {
    max-width: initial;
    text-align: left;
    color: #4e4e4e;
}


.bl-destekurundty{
    margin-top: 2rem;
    color: rgb(87, 87, 87);
    font-weight: 400;
}

.bl-destekurundty a{
    font-weight: 500;
    color: black;
}

.bl-urundetay-oneri-title {
    display: flex;
    justify-content: center;
    font-size: 30px;
    font-weight: 300;
    margin-top: 6rem;
    
}

.bl-profiltitle{
    font-family: "Playfair Display", serif;
    font-weight: 100;
    text-transform: uppercase;
    color: rgb(53, 53, 53);
}

.sepet_item {
    border-bottom: 1px solid #cccccc;
    margin-bottom: 2rem;
}

.sepetTitleEnBas {
    font-weight: 500;
    background: #f3f3f3;
    padding: 9px;
    font-size: 13px;
    display: block;
}

.odemetable {
    font-size: 13px;
    font-weight: 400;
}

.cart-table thead tr {
    background-color: #d9d0ba;
    border-color: #bbbbbbb5;
    color: #fff;
}

.sepet_item th {
    background-color: #343434;
    color: white;
    border: 1px solid #343434;
    font-weight: 500;

}

.sepet_item td {
    background-color: white;
    color: black;
    border: 1px solid white !important;
}

td.priceItmsf {
    font-weight: 600;
    letter-spacing: 1px;
}


.sepetitemhe {
    max-height: 525px;
    padding-right: 1rem;
    overflow: auto;
}

#adresAccordion{
    padding: 0 19px;
}

#adresAccordion .accordion-button {
    border-radius: 0 !important;
    font-size: 14px;
    padding-top: 12px;
    padding-bottom: 12px;
    color: #282828;
    font-weight: 300;
}


#adresAccordion .accordion-button:focus{
    border: 0;
    box-shadow: none !important;
}

#adresAccordion .accordion-button:not(.collapsed) {
    background-color:#343434;
    color: white;
}

#adresAccordion .accordion-button::after{
    display: none;
}


.accordion-item{
    border-radius: 0 !important;
}

.cksyaplg{
    color: black;
    font-size: 15px;
}


.bl-sifremiunuttum {
    height: 40vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 89px;
}


#iletisimTab .nav-link{
    color: rgb(158, 158, 158);
}

#iletisimTab .nav-link.active{
    color: black;
}

#urunDetayResimCol{
    position: relative;
    overflow: auto;
    height: calc(100vh - 100px);
}


.urunDetayAnimasyon{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    transition: .4s;
}


.urunDetayAnimasyonNotAbsolute{
    opacity: 0;
    user-select: none !important;
    pointer-events: none !important;
}

.bl-urunlist-ciftbuton{
    display: flex;
    width: 50%;
}


.bl-urunlist-ciftbuton button:first-child{
    background-color: rgb(53, 53, 53);
}

.aramizaKatil-bl{
    border: 0;
    background-color: transparent !important;
    text-decoration: underline;
    cursor: pointer;
}


.bl-uyeOlPopUp {
    position: fixed;
    right: 0;
    width: 700px;
    height: 100%;
   
    z-index: 500;
    padding-top: 60px;
     background-color: #ffffffe6;
    backdrop-filter: blur(9px);
    border-left: 1px solid #ebebeb;
    transform: translateX(100%);
 transition: transform 0.4s cubic-bezier(0.85, 0, 0.15, 1);

   
}

.bl-uyeOlPopUp form{
 background-color: transparent !important;
 border: 0 !important;
    
}

.bl-uyeolkapat {
    position: absolute;
    right: 3rem;
    top: 4rem;
    cursor: pointer;
    transition: .5s;
}

.bl-uyeolkapat:hover{
    opacity: .5;
}

.frmContact.mainUyeGirisForm{
    border: 0;
}


.profilTableUfakResim{

}

.sepet_item .img-fluid {
    height: 40px;
    border: 1px solid #d3d3d3;
    width: 40px !important;
}


.bl-urunDetay-flexbutons{
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.bl-urunDetay-flexbutons a{
    color: black;
    transition: .2s;
}

.bl-urunDetay-flexbutons button{
    color: black;
    border: 0;
    background: none !important;
    text-decoration: underline;
     transition: .2s;
}

.bl-urunDetay-flexbutons a:hover{
    opacity: .5;
}

.bl-urunDetay-flexbutons button:hover{
    opacity: .5;
}

.price-box {
  display: flex;
  align-items: flex-end; /* fiyatları alt hizaya getirir */
  gap: 25px;
  margin-top: 5px;
}

.old-price {
  text-decoration: line-through;
  color: #aaa;        
  font-size: 17px;
}

.new-price {
  color: #171817;     
  font-weight: 500;
  font-size: 17px;     
}

.discount {
  background: #000000;
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;  
  margin-bottom: 4px;      
}


.favorite-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  border: none;
  border-radius: 50%;
  padding: 6px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

.favorite-btn svg {
  width: 30px;
  height: 25px;
  color: #aaa; 
}

.favorite-btn:hover svg {
  color: #db112f; 
}

.favorite-btn:active svg {
  transform: scale(1.1);
}