*{box-sizing: border-box;margin: 0;padding: 0;}
body{
    font-family: 'Inter', Arial, sans-serif;
    font-weight: normal;
    background: #fafafa;
}
ul,a{
    text-decoration: none;
    list-style: none;
}
.load {
    position: fixed;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #555536;
    z-index: 999;
}
.loader-container {
    width: 80%;
    max-width: 500px;
    height: 10px; /* YÃƒÂ¼kseklik ince ÃƒÂ§izgi olacak Ã…Å¸ekilde */
    background-color: #333; /* YÃƒÂ¼kleme arka planÃ„Â±nÃ„Â±n biraz daha aÃƒÂ§Ã„Â±k gri olmasÃ„Â± */
    border-radius: 5px;
    overflow: hidden;
}
.load.close {
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}
/* Beyaz ÃƒÂ§izgi */
.loader {
    height: 100%;
    width: 1%;
    background-color: white;
    animation: load 1.5s infinite;
}

/* Animasyon */
@keyframes load {
    0% {
        width: 1%;
    }
    50% {
        width: 50%;
    }
    100% {
        width: 100%;
    }
}
header.mainHeader {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: .5s;
}

header.mainHeader .headerTop {display: flex;justify-content: space-between;width: 100%;padding: 20px 80px;background: #555536;align-items: center;}
header.mainHeader .headerTop .logo {width: 170px;transition: .5s;}
header.mainHeader.fixed {
    position: fixed;
    z-index: 8;
    width: 100%;
}
header.mainHeader.fixed {
    transition: .5s;
}
header.mainHeader.fixed .headerTop .logo {
    transition: .5s;
    width: 170px;
}
header.mainHeader .headerTop .logo img {
    width: 100%;
}

header.mainHeader .headerTop .logo a {
    width: 100%;
    display: flex;
}
header.mainHeader .headerTop .headerItem {display: flex;gap: 20px;align-items: center;}

header.mainHeader .headerTop .headerItem .searchArea {
    display: flex;
    position: relative;
}
header.mainHeader .headerTop .headerItem .searchArea .searchInput input {
    outline: none;
    height: 100%;
    padding: 0 10px;
}
header.mainHeader .headerTop .headerItem .searchArea .searchInput {position: absolute;right: 33px;top: -5px;overflow: hidden;border-radius: 20px;height: 34px;display: flex;opacity: 0;visibility: hidden;transition: .5s;}
header.mainHeader .headerTop .headerItem .languageArea {
    position: relative;
    transition: .5s;
}
li.hasDropdown {
    position: relative;
}

li.hasDropdown ul.dropdown {
    visibility: hidden;
    position: absolute;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    left: -50%;
    width: 100%;
    gap: 0;
    background: #555536;
    border: 1px solid #fff;
    transform: translateX(50%);
    padding: 0;
    opacity: 0;
    transition: .2s;
}

li.hasDropdown ul.dropdown li a {padding-left: 31px;padding-top: 13px;padding-bottom: 13px;display: flex;color: #fff;transition: .5s;}

li.hasDropdown ul.dropdown li a:hover {
    transition: .5s;
    background: #E4632B;
}



li.hasDropdown:hover .dropdown {
    transition: .2s;
    opacity: 1;
    visibility: visible;
}
header.mainHeader .headerTop .headerItem .searchArea .searchInput.active {
    transition: .5s;
    opacity: 1;
    visibility: visible;
}
header.mainHeader .headerTop .headerItem .searchArea span.searchBtn {
    cursor: pointer;
}
header.mainHeader .headerTop .headerItem .searchArea .searchInput label {
    height: 100%;
}
header.mainHeader .headerTop .headerItem .sideMenuBtn {
    cursor: pointer;
}
header.mainHeader .headerTop .headerItem .languageArea a {
    color: #fff;
    font-size: 21px;
}

header.mainHeader .headerTop .headerItem .languageArea .langMenu {
    position: absolute;
    top: 36px;
    background: #555536;
    padding: 5px 10px;
    border-radius: 8px;
    left: -10px;
    z-index: 6;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}
header.mainHeader .headerTop .headerItem .languageArea:hover .langMenu {
    transition: .5s;
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}
.headerBottom ul {
    display: flex;
    gap: 35px;
    padding: 10px 0;
}

.headerBottom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.headerBottom ul a {
    color: #000;
    font-size: 16px;
    transition: .5s;
}
.headerBottom ul a:hover {
    transition: .5s;
    color: #E4632B;
}

.headerBottom ul a.active {
    color: #E4632B;
}
.homeBanner {
    background: #555536;
    position: relative;
    height: 83vh;
}

.homeBanner .swiper {height: 100%;}
.bannerSlider {
    height: 100%;
}
.bannerSlider .bannerImag .bannerImage video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bannerSlider .bannerImag {position: relative;height: 100%;}

.bannerSlider .bannerImag .bannerImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bannerSlider .bannerImag .bannerSpan {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.3478641456582633) 0%, rgba(0,0,0,0.3534663865546218) 50%, rgba(0,0,0,0.3478641456582633) 100%);
}

.bannerSlider .bannerImag .bannerSpan span {
    height: 100%;
    background: #000;
    display: flex;
    padding: 10px;
}
.bannerSlider .bannerContent {
    position: absolute;
    bottom: 138px;
    left: 290px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.bannerSlider .bannerContent p.bannerInfo {
    color: #fff;
    font-size: 56px;
}

.bannerSlider .bannerImag .bannerImage {
    height: 100%;
    width: 100%;
}

.bannerSlider .bannerContent a {
    padding: 13px 45px;
    border: 1px solid #fff;
    margin-top: 23px;
    color: #fff;
    transition: .5s;
}

.bannerSlider .bannerContent a:hover {
    transition: .5s;
    background: #fff;
    color: #000;
}
.custom-pagination {
    position: absolute;
    bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 5;
}
span.pagination-button {
    width: 12px;
    height: 12px;
    display: flex;
    background: #808080;
    position: relative;
    z-index: 1;
    border-radius: 100%;
    transition: .5s;
}

span.pagination-button.active {
    transition: .5s;
    width: 21px;
    border-radius: 10px;
    background: #E4632B;
}
.mainContainer {
    padding: 85px 85px 0px 85px;
}

h3.productTitle {
    margin-bottom: 50px;
    font-size: 34px;
    color: #555536;
}

.productContainer-two {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.productContainer {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

/*Ürün Kategorileri*/

.productContext-two {
    width: 31%;
    position: relative;
}

.producImageContainer-two::before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgb(85,85,54);
    background: linear-gradient(0deg, rgba(85,85,54,1) 0%, rgba(85,85,54,0) 100%);
    z-index: 1;
}

.productContext-two::before{

}

.productContext-two img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: .5s;
    /* aspect-ratio: 1; */
}

a.producImageContainer-two {
    position: relative;
    width: 100%;
    /* max-height: 250px;
    height: 250px; */
    display: flex;
    overflow: hidden;
}

.productContext-two .productName {
    margin-top: 15px;
    display: flex;
    color: #ffffff;
    font-size: 20px;
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

.highlights a.producImageContainer-two {
    height: auto;
    aspect-ratio: 1;
}
a.producImageContainer-two span {
    position: absolute;
    bottom: 33px;
    right: 40px;
    display: flex;
    z-index: 1;
    transition: .5s;
}

a.producImageContainer-two span svg path{
    fill: #fff;
}

a.producImageContainer-two:hover img {
    transition: .5s;
    transform: scale(1.1);
}

a.producImageContainer-two:hover span {
    transition: .5s;
    transform: translateX(20px);
}

@media screen and (max-width:767px) {
    .productContext-two{
        width: 100%;
    }
    .bannerSlider .bannerImag .bannerImage img{
        object-position: left;
    }
}



.productContext {
    width: 25%;
}

.bigProduct {
    width: 50%;
}

.productContext img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
    aspect-ratio: 1;
}

a.producImageContainer {
    position: relative;
    width: 100%;
    height: 395px;
    display: flex;
    overflow: hidden;
}
.highlights a.producImageContainer {
    height: auto;
    aspect-ratio: 1;
}
a.producImageContainer span {
    position: absolute;
    bottom: 33px;
    right: 40px;
    display: flex;
    z-index: 1;
    transition: .5s;
}

a.producImageContainer:hover img {
    transition: .5s;
    transform: scale(1.1);
}

a.producImageContainer:hover span {
    transition: .5s;
    transform: translateX(20px);
}
.productContext .productName {
    margin-top: 15px;
    display: flex;
    color: #000;
    font-size: 20px;
}

.productContext ul {
    display: flex;
    gap: 6px;
    margin-top: 13px;
}

.productContext ul li a {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    display: flex;
}

.productContext ul li a.color1 {
    border: 1px solid #555536;
    background: #fff;
}

.productContext ul li a.color2 {
    border: 1px solid #E4632B;
    background: #E4632B;
}

.productContext ul li a.color3 {
    border: 1px solid #0900FF;
    background: #0900FF;
}

.productContext ul li a.color4 {
    border: 1px solid #555536;
    background: #555536;
}
.showMoreBtn {
    margin-top: 33px;
    display: flex;
    justify-content: end;
}

.showMoreBtn a {
    padding: 15px 45px;
    border: 1px solid #000;
    color: #000;
    display: flex;
    gap: 9px;
    transition: .5s;
}

.showMoreBtn a svg * {
    fill: #000;
    stroke: #000;
    transition: .5s;
}

.showMoreBtn a:hover {
    transition: .5s;
    border: 1px solid #E4632B;
    background: #E4632B;
    color: #fff;
}

.showMoreBtn a:hover svg * {
    transition: .5s;
    fill: #fff;
    stroke: #fff;
}
.aboutUS {
    display: flex;
    align-items: center;
    gap: 85px;
    padding: 130px 0 0 85px !important;
    height: 700px;
}

.aboutUS .aboutLeft {
    width: 40%;
}

.aboutUS .aboutRight {
    width: 65%;
    height: 100%;
}

.aboutUS .aboutRight .testimination {
    background-size: cover;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.aboutUS .aboutRight .testimination .swiper {
    width: 100%;
    height: 100%;
}
p.aboutTitle {
    margin-bottom: 30px;
    font-size: 33px;
    font-weight: 100;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
p.aboutTitle span {
    font-weight: 900;
    font-size: 48px;
    color: #555536;
}

p.aboutInfo {
    margin-bottom: 30px;
    color: #000;
    font-weight: 300;
    font-size: 16px;
}

.aboutLeft a {
    padding: 10px 20px;
    border: 1px solid #E4632B;
    display: flex;
    width: max-content;
    color: #fff;
    background: #E4632B;
    transition: .5s;
}

.aboutLeft a:hover {
    transition: .5s;
    background: #fff;
    color: #E4632B;
}
.aboutUS .aboutRight .testimination .swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.aboutUS .aboutRight .testimination .swiper .swiper-slide .testi {
    width: 55%;
    padding-left: 100px;
    color: #fff;
    display: flex;
    gap: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: 300;
}

.aboutUS .aboutRight .testimination .swiper .swiper-slide .testi span.bottom {
    display: flex;
    align-items: end;
}
.highlightsSwiper .productContext {
    width: 100%;
}
h3.highlightsTitle {
    margin-bottom: 50px;
    font-size: 30px;
    color: #555536;
}
.highlightsSwiper .productContext img {
}
.productPromotion {
    margin-top: 120px;
    display: flex;
    height: 70vh;
}

.productPromotion .promotionLeft {
    flex: 1;
    background: #555536;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
}
.blogDetailMain {
    display: flex;
    gap: 2%;
}
.blogRecent {
    display: flex;
    flex-direction: column;
    width: 65%;
}
.blogDetailMain .blogDetailLeft {
    width: 69%;
}

.blogDetailMain .blogDetailRight{
  position: sticky;
  height: min-content;
  top: 150px;
}

.blogDetailMain .blogDetailLeft{
  position: relative;
} 

.blogDetailMain .blogDetailRight {width: 34%;display: flex;flex-direction: column;gap: 25px;}

.blogDetailMain .blogDetailLeft img {
    width: 100%;
    margin-bottom: 15px;
}
.blogDetailContainer {
    margin: 0 130px;
}
.blogDetailMain .blogDetailRight > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 20px;
    background: #f7f7f7;
    gap: 17px;
}

.blogDetailMain .blogDetailRight  h4.blogSideTitle {
    font-size: 21px;
}

.blogDetailMain .blogDetailRight .socialBlog ul {
    display: flex;
    gap: 20px;
}

.blogDetailMain .blogDetailRight .socialBlog ul li a {
    font-size: 23px;
    color: #000;
    background: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}
.blogDetailMain .blogDetailLeft h2 {
    margin: 10px 0;
}
.blogDetailMain .blogDetailLeft h3{
    margin: 10px 0;
}
.blogDetailMain .blogDetailLeft h4{
    margin: 10px 0;
}
.blogDetailMain .blogDetailLeft ul li{
    margin: 10px 0;
}
.recentBlog .blogContent {
    display: flex;
    gap: 11px;
    align-items: center;
    width: 100%;
}

.recentBlog .blogContent > a {
    width: 100px;
    height: 100px;
    border-radius: 13px;
}

.recentBlog .blogContent .date {
    margin-top: 0;
    margin-bottom: 3px;
    font-size: 12px;
}

.recentBlog .blogContent a.blogInfo {
    font-size: 15px;
    width: 100%;
}
.productPromotion .promotionRight {
    flex: 2;
}

.productPromotion .promotionRight img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.productPromotion .promotionLeft h4.promotionTitle {
    font-size: 26px;
    color: #fff;
    font-weight: 400;
}

.productPromotion .promotionLeft p {
    margin-top: 27px;
    margin-bottom: 26px;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}

.productPromotion .promotionLeft a {
    padding: 9px 20px;
    border: 1px solid #E4632B;
    background: #E4632B;
    color: #fff;
    width: max-content;
    font-size: 14px;
    transition: .5s;
}

.productPromotion .promotionLeft a:hover {
    transition: .5s;
    background: #fff;
    color: #E4632B;
}

.productContainer1 {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
}

.productContainer1 .productContext:first-child {
    flex: 2;
    width: 100%;
}

.productContainer1 .productContext {
    flex: 1;
}

.productContainer2 {
    display: flex;
    gap: 40px;
}

.productContainer2 .productContext {
    flex: 1;
}
footer {
    margin-top: 70px;
    background: #555536;
    position: relative;
}

.footerContainer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    width: 100%;
    padding:60px 153px 65px
}
.footerContact ul.footerSocial {
    display: flex;
    justify-content: right;
    gap: 16px;
    margin-top: 20px;
}
.footerContact {
    width: 300px;
}.footerBottom img {
    width: 113px;
}

.footerContact p.adderess {
    color: #fff;
    text-align: end;
}

.footerMenu ul li a {
    display: flex;
    justify-content: end;
    color: #fff;
    margin-bottom: 5px;
    transition: .5s;
}

.footerMenu ul li a:hover {
    transition: .5s;
    color: #E4632B;
}
.footerBottom {
    display: flex;
    background: #E4632B;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px;
    color: #fff;
    gap: 60px;
    align-items: center;
}
.banner {
    height: 400px;
    display: grid;
}

.bannerContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bannerContainer h2.bannerTitle {
    font-size: 60px;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    z-index: 2;
}

.bannerContainer::after {
    content: "";
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(0,0,0,0.5);
}
.hakkimizda .slogan p {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 65px;
    font-size: 40px;
    font-weight: bold;
    font-style: italic;
}
.hakkimizda h3 {
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 36px;
    color: #000;
}

.hakkimizda p {
    font-size: 24px;
    font-weight: 400;
}
.aboutUsBottom {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.aboutUsBottom .aboutVideo {
    flex: 2;
}

.aboutUsBottom .aboutInfo {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 45px;
}

.aboutUsBottom .aboutVideo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aboutUsGallery {
    margin-top: 65px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.aboutUsGallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutUsGallery .bottom {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

h3.blogTitle {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 80px;
}

h3.blogTitle span {
    font-weight: 700;
}
.blogTop {
    display: flex;
    gap: 30px;
    margin-bottom: 70px;
}

.blogTop .blogContent {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blogContent a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.blogContent .date {
    margin: 15px 0;
    display: flex;
    align-items: center;
    font-size: 15px;
    gap: 5px;
}

.blogContent a.blogInfo {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    display: flex;
    width: 49%;
    overflow: unset;
}
.blogContent a {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
}

.blogContent a:hover img {
    transition: .5s;
    transform: scale(1.1);
}
/*.blogTop .blogContent a img {*/
/*    height: 500px;*/
/*}*/
.blogBottom {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.blogBottom .blogContent {
    flex: 0 0 31%;
    display: flex;
    flex-direction: column;
}
.blogBottom .blogContent a.blogInfo {
    width: 85%;
    height: max-content;
}

.blogBottom .blogContent a img {
    width: 100%;
    /*height: 335px;*/
}

.blogShowMore {
    margin-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blogShowMore a {
    padding: 10px 0;
    width: 300px;
    border: 1px solid #E4632B;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    background: #E4632B;
    transition: .5s;
}

.blogShowMore a:hover {
    transition: .5s;
    background: #fff;
    color: #E4632B;
}
.contactCotainer {
    display: flex;
    gap: 100px;
}

.contactCotainer .left {
    flex: 1;
}

.contactCotainer .right {
    flex: 1;
    margin-bottom: 30px;
}

.contactCotainer .left h3 {
    font-size: 51px;
    color: #E4632B;
    margin-bottom: 39px;
}

.contactCotainer .left form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contactCotainer .left form .inputContainer input {
    height: 43px;
}

.contactCotainer .left form .inputContainer input , textarea {
    width: 100%;
    padding: 0 20px;
    border: 1px solid rgba(0,0,0,0.5);
    transition: .5s;
}

.contactCotainer .left form .inputContainer input:focus , textarea:focus {
    transition: .5s;
    border: 1px solid #E4632B;
    outline: none;
}

.contactCotainer .left form .inputContainer textarea {
    height: 170px;
    padding: 20px;
    resize: none;
}

.submiteBtn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.submiteBtn button {
    padding: 10px;
    width: 162px;
    outline: none;
    border: 1px solid #E4632B;
    background: #E4632B;
    color: #fff;
    transition: .5s;
    cursor: pointer;
}

.submiteBtn button:hover {
    transition: .5s;
    background: #fff;
    color: #E4632B;
}
.right .map iframe {
    width: 100%;
    height: 388px !important;
}

.contactInfo {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 50px;
    width: 90%;
}

.contactInfo a {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 18px;
    color: #000;
    transition: .5s;
}

.contactInfo a:hover {
    transition: .5s;
    color: #E4632B;
}
.contactInfo a span {
    font-size: 20px;
}
.contactInfo a svg{
    width: 20px;
}
.productDetailComponent {
    display: flex;
    gap: 85px;
    width: 100%;
    /* height: 90vh; */
}

.productDetailComponent .productImageGrid {flex: 1;display: flex;}

.productDetailComponent .productInfo {
    flex: 1;
}
.productDetailComponent .productImageGrid .productPaginationContainer {
    width: 30%;
}

.productDetailComponent .productImageGrid .mainProductSwiper {
    width: 70%;
}
.productDetailComponent .productImageGrid .productPaginationContainer img {
    /* width: 100%; */
    /* object-fit: cover; */
}

.productDetailComponent .productImageGrid .mainProductSwiper img {
    width: 400px;
    object-fit: cover;
}
.productDetailComponent .productImageGrid .mainProductSwiper a {
    width: 100%;
    display: flex;
    height: 100%;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2), -0px -2px 2px rgba(0, 0, 0, 0.1);
}
.productDetailComponent .productImageGrid .mainProductSwiper .productDetailSwiper {
    width: 100%;
}
.productDetailComponent .productImageGrid {
    display: flex;
    width: 35%;
    height: 100%;
    gap: 15px;
    align-items: center;
}
.productDetailComponent .productImageGrid .mainProductSwiper {
    width: 85%;
    height: 100%;
    overflow: hidden;
}
.productDetailComponent .productImageGrid .productPaginationContainer {
    width: 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: center;
    height: 570px;
}
.productDetailComponent .productImageGrid .productPaginationContainer .swiper.productPagination {
    height: 100%;
    padding: 10px 0;
    margin: -10px 0;
}
.productDetailComponent .productImageGrid .mainProductSwiper .swiper.productDetailSwiper {
    width: 100%;
    height: 100%;
}

.productDetailComponent .productImageGrid .mainProductSwiper .swiper.productDetailSwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1;
}
.detailItem.activeSlide {
    width: 62%;
}
.productDetailComponent .productImageGrid .productPaginationContainer .arrow {
    width: 20px;
    height: 20px;
    cursor: pointer;
    border: 1px solid #7a7a7a;
    background: #7a7a7a;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 27px;
    font-size: 17px;
    color: #fff;
}

.productDetailComponent .productImageGrid .productPaginationContainer .swiper.productPagination img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2), -0px -2px 2px rgba(0, 0, 0, 0.1);
}
.productDetailComponent .productImageGrid .productImageFlex .detailItem {
    height: 49%;
}
.producInfoTop {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.producInfoTop h2 {
    font-weight: 500;
    font-size: 26px;
}

.producInfoTop a {
    border: 1px solid #E4632B;
    width: 251px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #E4632B;
    color: #fff;
    transition: .5s;
}

.producInfoTop a:hover {
    transition: .5s;
    background: #ffff;
    color: #E4632B;
}
.productDetail .detailTab {
    display: flex;
    margin-bottom: 30px;
}

.productDetail .detailTab .tab {
    width: 50%;
    display: flex;
    justify-content: center;
    padding-bottom: 16px;
    position: relative;
    cursor: pointer;
    transition: .5s;
}

.productDetail .detailTab .tab::before {content: "";height: 1px;background: #030F2B;position: absolute;bottom: 0;left: 0;right: 0;}

.productDetail .detailTab .tab.active::after {
    content: "";
    transition: .5s;
    height: 1px;
    background: #E4632B;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
}
.detailTabMenu {
    position: relative;
    margin-bottom: 50px;
}

.tabMenu h2{
    margin: 10px 0;
}

.tabMenu h3{
    margin: 10px 0;
}

.detailTabMenu .tabMenu {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}

.detailTabMenu .tabMenu.active {
    transition: .5s;
    opacity: 1;
    visibility: visible;
}

.detailTabMenu .tabMenu.active p{
    text-align: justify;
}

.breadCramp {
    display: flex;
    gap: 11px;
    align-items: center;
}

.breadCramp a {
    color: #030F2B;
    transition: .5s;
    text-transform: uppercase;
}

.breadCramp span {
    width: 6px;
    height: 1px;
    background: #030F2B;
}

.breadCramp a:hover {
    transition: .5s;
    color: #E4632B;
}
.productsMain {
    display: flex;
    gap: 40px;
}

.productsForm {
    flex: 1;
}

.products{
  position: relative;
}
.productsForm{
  position: sticky;
  height: min-content;
  top: 160px;
} 

.products {
    flex: 3;
}

.products .produstsLabel {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* justify-content: center; */
}

.products .produstsLabel p{
    margin-bottom: 10px;
}

.products .produstsLabel .productContext {
    flex: 0 1 31%;
    display: flex;
    flex-direction: column;
}

.products .produstsLabel .productContext a.producImageContainer {
    height: auto;
    border-color: transparent;
    transition: .5s;
    aspect-ratio: 1;
}
.products .produstsLabel .productContext a.producImageContainer span {
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    padding: 10px;
    background: #E4632B;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}

.products .produstsLabel .productContext a.producImageContainer:hover span {
    transition: .5s;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.products .produstsLabel .productContext a.producImageContainer:hover {
    transition: .5s;
    border: 1px solid #E4632B;
}
.products .filter {
    display: flex;
    justify-content: end;
    gap: 30px;
    margin-bottom: 60px;
}
.formSection  span.closeForm {
    display: none;
}

.filterBtn {
    display: none;
}
.products .filter a {
    width: 160px;
    padding: 10px 0;
    background: #E4632B;
    display: flex;
    justify-content: center;
    color: #fff;
    border: 1px solid #E4632B;
    transition: .5s;
}

.products .filter a:hover {
    transition: .5s;
    background: #fff;
    color: #E4632B;
}
.productsForm form {
    border: 1px solid rgba(0,0,0,0.5);
    padding: 40px 30px;
}

.productsForm form .formSection p {
    margin-bottom: 30px;
    font-size: 19px;
    font-weight: 500;
}

.productsForm form .formSection .fromColorInput {
    padding: 0 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 21px;
    margin-bottom: 31px;
}

.productsForm form .formSection .fromColorInput label {
    width: 30px;
    height: 30px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background: red;
    cursor: pointer;
}

.productsForm form .formSection .fromColorInput label input {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    cursor: pointer;
}

.productsForm form .formSection .fromColorInput label span {
    opacity: 0;
    transition: .5s;
}

.productsForm form .formSection .fromColorInput label span.active {
    transition: .5s;
    opacity: 1;
}

.formMesure {
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    gap: 18px;
}

.formMesure .mesure {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 18px;
}

.formMesure .mesure label {
    position: relative;
    width: 25px;
    height: 25px;
}

.formMesure .mesure label input {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.formPrice {
    margin-bottom: 25px;
}

.formPrice label {
    height: 30px;
    display: flex;
    position: relative;
    width: 50%;
}

.priceFilter {
    display: flex;
    gap: 20px;
}

.formPrice label input[type="text"] {
    outline: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px;
    border: 1px solid rgba(0,0,0,0.5);
}

.formSection button {
    width: 100%;
}
.sideMenu {
    position: fixed;
    right: 0;
    bottom: 0;
    top: 0;
    background: #47472d;
    z-index: 9;
    width: 435px;
    padding: 50px;
    transform: translateX(100%);
    opacity: 0;
    overflow: hidden;
    transition: .5s;
}
.sideMenu.active {
    transition: .5s;
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
}
.sideMenu span.close {
    display: flex;
    justify-content: end;
    color: #fff;
    font-size: 21px;
    cursor: pointer;
    margin-bottom: 60px;
}

.sideMenu  ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sideMenu ul li a {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    transition: .5s;
    text-transform: uppercase;
}

.sideMenu ul li a:hover {
    transition: .5s;
    color: #E4632B;
}
.producInfoTop ul {
    display: flex;
    gap: 5px;
}

ul {}

.producInfoTop ul li {
    width: 20px;
    height: 20px;
}

.producInfoTop ul li a {
    width: 100%;
    height: 100%;
    border: transparent;
    border-radius: 20px;
}
li.menu.hasMenu {
    position: relative;
}

li.menu.hasMenu > ul.subMenu {
    visibility: hidden;
    position: absolute;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    /* left: -50%; */
    width: 180px;
    gap: 0;
    margin-top:9px;
    background: #555536;
    /* border: 1px solid #fff; */
    /* transform: translateX(50%); */
    padding: 0;
    opacity: 0;
    transition: .2s;
}

li.menu.hasMenu ul.subMenu a {padding-left: 8px;padding-top: 13px;padding-bottom: 13px;display: flex;color: #fff;transition: .5s;}

li.menu.hasMenu ul.subMenu a:hover {
    transition: .5s;
    background: #E4632B;
}

.subMenu li.menu.hasMenu  ul.subMenu {top: 0;left: 100%;margin: 0;}

ul.subMenu li.menu.hasMenu  ul.subMenu {
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}

ul.subMenu li.menu.hasMenu:hover  ul.subMenu {
    transition: .5s;
    opacity: 1;
    visibility: visible;
}

li.menu.hasMenu:hover  ul.subMenu {
    transition: .2s;
    opacity: 1;
    visibility: visible;
}
@media screen and (max-width:1440px) {
    .mainContainer{
        padding: 85px 50px 0px 50px;
    }
    p.aboutTitle {
        font-size: 27px;
    }
    .productsMain {
        gap: 40px;
    }

    .productsForm form {
        padding: 30px 20px;
    }

    .productsForm form .formSection .fromColorInput {
        gap: 10px;
        padding: 0 11px;
        justify-content: space-between;
    }
    .footerBottom p{
        font-size: 15px;
    }
}
@media screen and (max-width:1360px){
    .blogRecent {
        width: 63%;
        display: flex;
        flex-direction: column;
    }

    .recentBlog .blogContent a.blogInfo {
        font-size: 12px;
    }
    .blogDetailContainer {
        margin: 0 80px;
    }
}
@media screen and (max-width:1025px) {
    .headerBottom ul {
        gap: 9px;
    }

    .headerBottom ul a {
        font-size: 12px;
    }
    p.aboutTitle {
        font-size: 24px;
    }

    p.aboutTitle span {
        font-size: 30px;
    }

    .aboutUS.mainContainer {
        padding: 130px 0 0 44px !important;
        gap: 40px;
    }

    .aboutUS .aboutRight .testimination .swiper .swiper-slide .testi {
        width: 80%;
    }
    .productPromotion {
        height: 34vh;
    }

    .productPromotion .promotionLeft h4.promotionTitle {
        font-size: 20px;
    }

    .productPromotion .promotionLeft p {
        font-size: 14px;
    }
    .footerContainer {
        padding: 65px 30px 65px;
    }
    .blogContent a.blogInfo {
        font-size: 15px;
        width: 100%;
    }
    .contactInfo {
        width: 100%;
        margin-top: 30px;
    }

    .contactCotainer .left h3 {
        font-size: 33px;
    }

    .contactCotainer {
        gap: 32px;
    }

    .right .map iframe {
        height: 276px !important;
    }
    .productDetailComponent {
        flex-direction: column;
    }

    .productDetailComponent .productImageGrid {
        width: 100%;
    }
    .productDetailComponent {
        height: 100%;
    }
    .productDetailComponent .productImageGrid .mainProductSwiper a {
        /* height: 500px; */
    }
    .formMesure {
        padding: 0;
    }
    .blogDetailContainer {
        margin: 0;
    }
    .homeBanner {
        height: 44vh;
    }
    
    .bannerSlider .bannerContent {
        bottom: 100px;
        left: 95px;
        width: 74%;
    }
    
    .bannerSlider .bannerContent p.bannerInfo {
        font-size: 56px;
    }
    .products .produstsLabel {
        gap: 40px 20px;
    }
    
    .productContext .productName {
        font-size: 16px;
    }
}

@media screen and (max-width:990px){
    .headerBottom ul {
        display: none;
    }

    .homeBanner {
        /* padding: 65px 34px 91px; */
    }

    .bannerSlider .bannerContent p.bannerInfo {
        font-size: 40px;
        width: 81%;
    }

    .mainContainer {
        padding: 30px 30px 0 30px;
    }

    h3.productTitle {
        margin-bottom: 20px;
    }

    .aboutUS.mainContainer {
        padding: 94px 0 0 0!important;
        flex-direction: column;
        height: 100%;
    }

    .aboutUS .aboutLeft {
        width: 71%;
    }

    .aboutUS .aboutRight {
        width: 100%;
        height: 395px;
    }

    .aboutUS .aboutRight .testimination .swiper .swiper-slide .testi {
        padding: 0;
        width: 83%;
    }

    .aboutUS .aboutRight .testimination .swiper .swiper-slide {
        align-items: center;
    }
    a.producImageContainer {
        height: 200px;
    }

    .productContainer {
        flex-wrap: wrap;
    }

    .productContainer > productContext {
        flex: 1 0 30%;
    }

    .productContainer .productContext {
        flex: 1 0 30%;
    }

    a.producImageContainer span {
        bottom: 20px;
        right: 20px;
    }
    .productContainer1 .productContext:first-child {
        flex: 1;
    }
    .footerContainer {
        flex-direction: column;
        align-items: center;
        gap: 43px;
    }

    .footerMenu ul li a {
        justify-content: center;
    }

    .footerContact p.adderess {
        text-align: right;
    }
    .aboutUsBottom {
        flex-direction: column;
    }

    .aboutUsBottom .aboutInfo {
        gap: 29px;
    }
    header.mainHeader .headerTop {
        padding: 20px;
    }
    .productDetailComponent .productImageGrid {
        flex-direction: column-reverse;
        margin-bottom: 20px;
    }

    .productDetailComponent .productImageGrid .productPaginationContainer {
        width: 100%;
        height: 200px;
        flex-direction: row;
        justify-content: space-between;
    }
.productDetailComponent .productImageGrid .productPaginationContainer .swiper.productPagination{
    margin:0;
    width: 100%;
}
    .productDetailComponent .productImageGrid .mainProductSwiper {
        width: 100%;
    }

    .swiperDownArrow.arrow {}

    .productDetailComponent .productImageGrid .productPaginationContainer .arrow i {
        transform: rotate(-90deg);
    }

    .productDetailComponent .productImageGrid .productPaginationContainer .arrow i {}

    .productDetailComponent {
        margin-bottom: 35px;
    }
    .productsForm form {
        position: fixed;
        top: 0;
        left: 0;
        right: 331px;
        bottom: 0;
        background: #fff;
        z-index: 23;
        transform: translatex(-100%);
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }
    .productsForm {
        width: 0;
        display: flex;
        flex-direction: column-reverse;
        flex: 0;
    }

    .productsForm form.active {
        transition: .5s;
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    .productsForm form .formSection {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        gap: 37px;
    }
    .formSection  span.closeForm {
        display: flex;
        position: absolute;
        z-index: 2;
        top: 30px;
        right: 30px;
        font-size: 28px;
    }

    .productsForm form .formSection .fromColorInput label {
    }

    .productsForm form .formSection .fromColorInput {
        padding: 0 30px;
        gap: 10px 37px;
    }
    .filterBtn {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        color: #fff;
        font-size: 18px;
        background: #E4632B;
        border: 1px solid #E4632B;
    }
    .productsMain {
        gap: 0;
    }
    .products .filter {
        gap: 18px;
    }
}

@media screen and (max-width:768px){
    header.mainHeader .headerTop {
        padding: 20px;
    }
    .productPromotion {
        height: auto;
        flex-direction: column;
    }

    .productPromotion .promotionLeft {
        padding: 30px;
    }

    .productPromotion .promotionLeft h4.promotionTitle {
        font-size: 18px;
    }

    .productPromotion .promotionLeft p {
        font-size: 12px;
    }

    .productContainer1 {
        gap: 17px;
    }

    .mainContainer {
        padding: 45px 20px 0 20px;
        gap: 0;
    }

    h3.productTitle {
        font-size: 25px;
    }
    .aboutUS .aboutRight .testimination .swiper .swiper-slide .testi{
        font-size:15px;
    }

    header.mainHeader .headerTop {
        padding: 20px;
    }

    header.mainHeader .headerTop .logo {
        width: 110px;
    }

    .homeBanner {
        /* padding: 40px 20px 50px; */
        height: 45vh;
    }

    .bannerSlider {
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .bannerSlider .bannerContent p.bannerInfo {
        font-size: 28px;
        width: 100%;
        text-align: center;
    }

    .bannerSlider .bannerContent {
        bottom: 80px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .aboutUS .aboutLeft {
        width: 90%;
    }
    .sideMenu {
        width: 100%;
    }
    .hakkimizda .slogan p {
        font-size: 25px;
        margin-bottom: 36px;
    }
    .blogTop {
        flex-direction: column;
    }

    .blogBottom .blogContent {
        flex: 1 0 100%;
    }
    .contactCotainer.mainContainer {
        flex-direction: column;
    }
    .contactInfo a {
        gap: 14px;
        font-size: 14px;
    }
    .productDetailComponent .productImageGrid .productPaginationContainer {
        display: none;
    }
    .productsForm form .formSection .fromColorInput {
        padding: 0;
    }
    .products .filter {
        gap: 0;
        justify-content: space-between;
    }

    .products .filter a {
        width: 125px;
    }
    .footerContainer .map {
        display: none;
    }

    .footerContainer {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 30px 49px;
    }

    .footerContact {
        width: 100%;
    }

    .footerMenu ul li a {
        justify-content: end;
    }

    .footerMenu ul {
        display: flex;
        width: 100%;
        justify-content: end;
        gap: 0px 4px;
        flex-wrap: wrap;
    }

    .footerMenu ul li {
        width: 33%;
    }
    .productPromotion .promotionRight {
        display: none;
    }
    h3.blogTitle {
        margin-bottom: 36px;
    }
    /*.blogTop .blogContent a img {*/
    /*    height: 200px;*/
    /*}*/

    /*.blogBottom .blogContent a img {*/
    /*    height: 300px;*/
    /*}*/
    .blogDetailMain {
        flex-direction: column;
        gap: 30px;
    }

    .blogDetailMain .blogDetailLeft {
        width: 100%;
    }

    .blogDetailMain .blogDetailRight {
        width: 100%;
    }
    .productsPage .blogContent {
        width: 47%;
    }
}
@media screen and (max-width:440px){
    .productsForm form {
        right: 0;
    }

    .productsForm form .formSection {
        gap: 0;
    }

    .productsForm form .formSection .fromColorInput {
        gap: 20px;
    }
    .bannerContainer h2.bannerTitle {
        font-size: 40px;
    }

    .aboutUsGallery {
        margin-top: 40px;
        gap: 15px;
    }

    .aboutUsGallery .bottom {
        flex-direction: column;
        gap: 15px;
    }

    .aboutUsGallery a {
        width: 100%;
        height: 122px;
        display: flex;
    }
    .footerContainer .map {
        display: none;
    }

    .footerContainer {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 30px 12px;
    }

    .footerContact {
        width: 100%;
    }

    .footerMenu ul li a {
        justify-content: end;
    }
    .footerContainer .logo {
        width: 32%;
    }

    .footerContainer .footerMenu {
        width: 47%;
    }

    .footerMenu ul {
        flex-wrap: nowrap;
        flex-direction: column;
    }

    .footerMenu ul li {
        width: 100%;
    }
}


.onlineCatalog {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 65px 22px;
}

.onlineCatalog button {
    width: 252px;
    height: 338px;
    position: relative;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 158px 0 45px 0;
    align-items: center;
}

.onlineCatalog button > svg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.onlineCatalog button .name {
    font-size: 26px;
}

.onlineCatalog button .view svg {
    position: relative;
    stroke: #555536;
    width: 20px;
    height: 20px;
}

.onlineCatalog button .view {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.onlineCatalog button > svg * {transition: .5s;}

.onlineCatalog button:hover > svg * {
    transition: .5s;
    stroke: #000;
}

.orderby {
    width: 250px;
    padding: 10px;
    font-size: 14px;
    color: #333; /* YazÃƒâ€žÃ‚Â± rengi */
    background: #fff; /* Arka plan */
    border: 1px solid #ccc; /* ÃƒÆ’Ã¢â‚¬Â¡erÃƒÆ’Ã‚Â§eve */
    border-radius: 5px; /* KÃƒÆ’Ã‚Â¶Ãƒâ€¦Ã…Â¸eleri yuvarla */
    transition: all 0.3s ease; /* Hover animasyonu */
    border-radius: inherit;
    border: 1px solid rgba(0,0,0,0.5);
}

.orderby:focus {
    outline: none; /* Focus sÃƒâ€žÃ‚Â±rasÃƒâ€žÃ‚Â±nda ÃƒÆ’Ã‚Â§erÃƒÆ’Ã‚Â§eve kaldÃƒâ€žÃ‚Â±rÃƒâ€žÃ‚Â±lÃƒâ€žÃ‚Â±r */
    border-color: #007bff; /* Mavi ÃƒÆ’Ã‚Â§erÃƒÆ’Ã‚Â§eve */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Hafif mavi gÃƒÆ’Ã‚Â¶lge */
}

.orderby option {
    padding: 5px 10px; /* Dropdown iÃƒÆ’Ã‚Â§indeki seÃƒÆ’Ã‚Â§enekler iÃƒÆ’Ã‚Â§in boÃƒâ€¦Ã…Â¸luk */
}


.featured-card {
    margin-top: 50px!important;
    background-color: #555536; /* Siyah arka plan */
    color: #fff; /* Beyaz yazÃƒâ€žÃ‚Â±lar */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Hafif gÃƒÆ’Ã‚Â¶lge */
    text-align: center;
    max-width: 600px; /* Maksimum geniÃƒâ€¦Ã…Â¸lik */
    margin: 0 auto; /* Ortala */
}

/* Logo */
.featured-card img {
    max-width: 100%; /* Logo boyutunu container'a gÃƒÆ’Ã‚Â¶re ayarla */
    height: auto;
    margin-bottom: 20px;
    width: 200px;

}

/* BaÃƒâ€¦Ã…Â¸lÃƒâ€žÃ‚Â±k */
.featured-card h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

/* AÃƒÆ’Ã‚Â§Ãƒâ€žÃ‚Â±klama */
.featured-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #e2e2e2; /* AÃƒÆ’Ã‚Â§Ãƒâ€žÃ‚Â±k gri metin */
}

/* Arama Kutusu */
.featured-card input[type="text"] {
    width: 100%; /* GeniÃƒâ€¦Ã…Â¸lik tÃƒÆ’Ã‚Â¼m container */
    max-width: 400px; /* Maksimum geniÃƒâ€¦Ã…Â¸lik */
    padding: 10px 15px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #555; /* Gri ÃƒÆ’Ã‚Â§erÃƒÆ’Ã‚Â§eve */
    border-radius: 5px;
    background-color: #222; /* Koyu gri arka plan */
    color: #fff; /* Beyaz yazÃƒâ€žÃ‚Â± */
    margin: 0 auto 20px;
    display: block;
}

/* Input Hover ve Focus */
.featured-card input[type="text"]:hover,
.featured-card input[type="text"]:focus {
    border-color: #fff;
    outline: none;
}

/* Buton */
.featured-card button {
    background-color: #333; /* Koyu gri */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Buton Hover */
.featured-card button:hover {
    background-color: #555; /* AÃƒÆ’Ã‚Â§Ãƒâ€žÃ‚Â±k gri */
}

/* Responsive TasarÃƒâ€žÃ‚Â±m */
@media (max-width: 768px) {
    .featured-card {
        padding: 20px;
    }

    .featured-card h4 {
        font-size: 20px;
    }

    .featured-card p {
        font-size: 14px;
    }

    .featured-card input[type="text"] {
        font-size: 14px;
    }

    .featured-card button {
        font-size: 14px;
        padding: 8px 15px;
    }
    .footerBottom {
        flex-direction: column-reverse;
        gap: 17px;
        padding: 20px 0;
    }
    
    .footerCopy p {
        text-align: center;
        font-size: 10px;
    }
}
@media (max-width: 598px) {
    .products .produstsLabel {
        display: flex;
        flex-wrap: wrap;
        gap: 18px!important;
        justify-content: unset;
    }
    .productContext .productName {
        margin-top: 16px;
        display: flex;
        color: #000;
        font-size: 16px!important;
        margin-bottom: 20px;
    }
    .products .produstsLabel .productContext{
        flex: 0 1 47%;
    }
.bannerSlider .bannerImag .bannerImage video {
    /* width: 75%; */
}

.bannerSlider .bannerImag .bannerImage {
    display: flex;
    justify-content: center;
    align-items: center;
}
.homeBanner {
    height: 29vh;
}

.custom-pagination {
    bottom: 20px;
}

.bannerSlider .bannerContent {
    bottom: 58px;
}

.bannerSlider .bannerContent p.bannerInfo {
    font-size: 25px;
    width: 67%;
}

.bannerSlider .bannerContent a {
    margin-top: 20px;
    font-size: 14px;
}
.footerBottom {
    font-size: 12px;
    align-items: center;
    text-align: center;
}
.showMoreBtn a {
    width: 100%;
    justify-content: center;
}
.breadCramp {
    gap: 6px;
    font-size: 13px;
    align-items: center;
    padding: 45px 13px 0 13px;
    flex-wrap: wrap;
}
.banner {
    height: 25vh;
}
.blogDetailMain .blogDetailLeft img {
    height: 100%;
    object-fit: cover;
}
}
.sideMenu li.menu.hasMenu ul.subMenu {
    border: none;
    position: unset !important;
    visibility: visible;
    width: 100%;
    height: 0px;
    margin-top: 0;
    transition: .2s;
    opacity: 1;
    overflow: hidden;
}

.sideMenu li.menu.hasMenu {
    overflow: hidden;
    transition: .5s;
}
.sideMenu li.menu.hasMenu.active ul.subMenu {
    transition: .2s;
    margin-top: 15px;
}

.sideMenu .menu.hasMenu > a {
}
.sideMenu .menu.hasMenu.active{
    transition: .5s;
}

li.page-item.active a.page-link 
 {
    background: #555536;
    padding: 10px;
    color: #fff;
    border-radius: 5px;
}
li.page-item a.page-link{
    color:#555536;
    background:#c7c7c7;
    padding:10px;
    border-radius:5px;
}

ul.pagination.justify-content-start {
    display: flex;
    gap: 10px;
}
.col-lg-12.mb-24.text-center {
    width: 100%;
}
.sideMenu .subMenu li.menu.hasMenu ul.subMenu {
    border: none;
    position: unset !important;
    margin-top: 0;
    margin-left: 20px !important;
    visibility: visible;
    height: 0px;
    transition: .2s;
    opacity: 1;
}

.sideMenu .subMenu li.menu.hasMenu.active ul.subMenu {
    margin-top: 0;
    transition: .2s;
    height: 100%;
}