@font-face {
    font-family: 'FuturaMedium';
    src: url("../fonts/FuturaMedium.ttf") format('truetype');
}

@font-face {
    font-family: 'MachaBold';
    src: url("../fonts/MachaBold.ttf") format('truetype');
}

@font-face {
    font-family: 'MachaThin';
    src: url("../fonts/MachaThin.otf") format('opentype');
}

@font-face {
    font-family: 'DidotLHRoman';
    src: url("../fonts/DidotLHRoman.otf") format('opentype');
}

@font-face {
    font-family: 'FusePrintedDisplayLightFont';
    src: url("../fonts/FusePrintedDisplayLightFont.otf") format('opentype');
}

@font-face {
    font-family: 'MuliRegular';
    src: url("../fonts/MuliRegular.ttf") format('truetype');
}

@font-face {
    font-family: 'FuturaMedium';
    src: url("../fonts/FuturaMedium.ttf") format('truetype');
}


/* Universal */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

body {
    padding-right: 0 !important;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.active {
    color: #9EB87D !important;
}

.caf-orange {
    background: #ED8B5F;
}

.caf-green {
    background: #9EB87D;
}

.text-dark-custom {
    color: #727272;
}

.view-all-btn {
    background-color: transparent;
    border: 1px solid #9EB87D;
    color: #9EB87D;
    height: 45px;
    width: 210px;
    transition: color .2s ease, background-color .2s ease;
    font-size: 13px;
}

.view-all-btn a {
    color: #9EB87D;
    transition: color .2s ease, background-color .2s ease;
}

.view-all-btn:hover {
    background: #9EB87D;
    color: #fff;
}

.view-all-btn:hover a {
    color: #fff;
}

.col-md-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
    margin-bottom: 50px;
}

.op-0 {
    opacity: 0;
}
.logo{
    margin: 10px 0;
    width: auto;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    order: 2;
}
.logo img{
    max-height: 50px;
}


.mega-menu-container {
    top: 100%;
    background-color: white;
    border: 1px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mega-menu-container a {
    white-space: nowrap;
    padding: 8px 12px;
    display: inline-block;
    color: #333;
    font-weight: 500;
}

.mega-menu-container a:hover {
    color: #007bff;
    text-decoration: underline;
}

/* Genel */

.main-navbar {
    background: white;
    border-bottom: 1px solid #eee;
    height: 60px;
}

.main-menu > .menu-item {
    position: relative;
}

.menu-item{
    display: contents;
}

.dropdown-list h4{
    color: #797979;
    font-size: 1rem;
}

.dropdown-list h4:hover{
    color: #ED8B5F;
}

.main-menu > .menu-item > .submenu {
    display: none;
    position: absolute;
    top: 100%;
    background: white;
    padding: 10px 0;
    min-width: 180px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.menu-item:hover > .submenu {
    display: block;
}

.mobile-menu-header {
    border-bottom: 1px solid #ddd;
    height: 60px;
}

/* Hamburger */
.burger-icon {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.burger-icon span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.burger-icon.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-icon.open span:nth-child(2) {
    opacity: 0;
}

.burger-icon.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Masaüstü Alt Menü */
.menu-item:hover .submenu {
    display: block;
}

.submenu {
    display: none;
    top: 100%;
    left: 0;
    min-width: 200px;
    z-index: 999;
}

.submenu li a {
    display: block;
    padding: 5px 10px;
}

/* Hamburger Çizgi Menüsü */
.burger-toggle {
    width: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 22px;
}

.burger-toggle span {
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.main_navbar_user_menu_container {
    justify-content: space-between;
}

/* Mobil Menü */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 1rem;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-list,
.mobile-submenu,
.submenu {
    list-style: none;
    padding-left: 0;
}

.submenu li {
    display: flex;
    flex-wrap: wrap;
}

.mobile-menu-item {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.mobile-menu-list a {
    color: #797979;
}

.mobile-menu-list a:hover {
    color: #ED8B5F;
}

.mobile-submenu {
    display: none;
    padding-left: 0.5rem;
    padding-top: 5px;
}

.mobile-submenu li a:hover {
    padding-left: 1rem;
}

.mobile-submenu.show {
    display: block;
}
.padding{
    padding: .5rem 0;
}

.submenu-toggle {
    cursor: pointer;
    font-size: 1rem;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.submenu-toggle.open {
    transform: rotate(90deg);
}

#closeMenuBtn {
    font-size: 45px;
    cursor: pointer;
}

/* --- BURASI YENİ: Masaüstü Menü Açılır Kısım Tüm Ekran Genişliği --- */
.Grupdropdown.dropdown-content {
    position: absolute;
    top: 99%;
    left: 0;
    width: 100vw;
    background: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px 40px;
    z-index: 9999;
    display: none;
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.menu-item:hover .Grupdropdown.dropdown-content {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.Grupdropdown .dropdown-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.page_container {
    padding-top: 200px;
}

.page-image{
    height: 25vh !important;
    margin-top: 20vh !important;
    position: relative;
}

.page-image img{
    opacity: 0.5;
}

.page-title-banner{
    width: 100%;
    position: absolute;
    top: 40%;
    display: flex;
    justify-content: center;
    font-weight: bold;
    font-size: 30px;
    font-family: 'MuliRegular';
}

/* Navbar */
.whatsapp-container {
    position: fixed;
    bottom: 35px;
    z-index: 999;
    height: 70px;
    width: 70px;
    animation: slideInFromRight 0.5s ease-out;
    transition: .2s ease scale;
}

.whatsapp-container:hover {
    scale: 1.1;
}

.share-wp {
    margin-top: 40px !important;
}

#share-button {
    color: #ED8B5F;
}

.user_menu {
    display: flex;
}

.search_container {
    height: 45px;
    width: 400px;
    border-radius: 50px;
    background: #F5F5F5;
    border: none;
    padding-left: 15px;
}

.main_navbar_container {
    background: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.main_navbar_link_container {
    padding-bottom: 10px;
    border-bottom: 1px solid #F5F5F5;
    height: 50px;
    margin-top: 15px;
}

.main_navbar_link_container a {
    font-family: "MachaBold";
    color: #797979;
}

.main_navbar_link_container a:hover {
    color: #ED8B5F;
}

.main_navbar_link_left_container a {
    padding: 0 13px;
}

.main_navbar_link_right_container a {
    font-family: "MachaThin";
    padding-left: 25px;
    font-size: 12px;
    letter-spacing: 1px;
}

.navbar_campaign_banner span {
    font-size: 13px;
}

.search-container {
    padding: 20px 0;
}

.search-container .search-box {
    border: none;
    border-radius: 20px;
    padding: 5px 15px 5px 50px;
    height: 43px;
    width: 420px;
    background: url("../imgs/icons/search.svg") no-repeat 15px center, #F5F5F5;
    background-size: 30px 30px;
}

.icon-btn {
    color: #d57b5b;
    margin-left: 10px;
}

/* index - campaign */

.campaign_category a {
    margin: 0 15px;
    color: #505050;
}

.campaign-main-container {
    width: unset !important;
}

.campaign-header {
    padding-left: 50px !important;
    line-height: 0;
    padding: 15px 0;
}

.campaign-header h1 {
    font-family: 'DidotLHRoman';
    font-size: 3.8rem;
    font-weight: lighter;
    margin: 0;
}

.campaign-header span {
    font-size: 12px;
    font-weight: lighter !important;
}

/* index - new product */

.new_product_image {
    width: max-content;
}

.new_product_btn {
    font-family: "DidotLHRoman";
    font-size: 20px;
    height: 45px;
    width: 250px;
    border: none;
    background-color: #fff;
    transition: color .3s ease, background-color .3s ease;
}

.new_product_btn a {
    color: black;
    transition: color .3s ease, background-color .3s ease;
}

.new_product_btn:hover {
    background-color: #ED8B5F;
}

.new_product_btn:hover a {
    color: #fff;
}

.new_product_container {
    position: relative;
    background: #E7F0F4;
    margin-top: 40px;
    width: 100%;
    height: 750px;
}

.new_product_text {
    position: absolute;
    font-family: "DidotLHRoman";
    padding: 50px;
    text-align: left;
}

.new_product_text p,
.new_product_text span {
    font-family: "FusePrintedDisplayLightFont";
}

.new_product_text span,
.new_product_text h2,
.new_product_text p {
    color: #5F5F5F !important;
}

/* index - main-swiper */

.MainSwiper .swiper {
    width: 100%;
    height: 100%;
}

.MainSwiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.MainSwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* index - swiper */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.swiper_product_image{
    height: 95%;
    aspect-ratio: 1 / 1.8;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper_product_text{
    height: 5%;
}

.swiper_product_container {
    position: relative;
    padding: 0 80px;
    margin: 50px 100px;
}

.swiper_product {
    width: auto;
    height: 100%;
}

/*.swiper_product_image {
    height: 270px;
    padding: 20px;
}*/

.swiper_product_image:hover img {
    scale: 0.8;
}

.swiper_product_image img {
    transition: scale .4s ease;
    /*object-fit: contain !important;*/
}

.swiper-button-next,
.swiper-button-prev {
    color: #505050 !important;
}

.swiper_product_text {
    font-family: "MachaBold";
    color: #505050;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 30px !important;
    color: #ED8B5F;
}

/* index - trend */
.tooltip-container .highlight-icon {
    width: 40px;
    height: 40px !important;
    background: #9EB87D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
    z-index: 5;
}

.tooltip-effect {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: wave 1.5s infinite;
}

.sale-badge,
.preorder-badge {
    padding: 0 7px;
    color: #fff;
    font-size: 0.8rem;
    position: absolute;
    z-index: 99;
}

.sale-badge {
    background: #ED8B5F;
}

.preorder-badge {
    background: #8fbc8f;
}

.countdown-container {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.countdown-child {
    font-family: "MachaThin";
    letter-spacing: 1px;
    background: #ED8B5F;
    padding: 2px 0;
    width: 50px;
    height: max-content;
    color: #fff;
    text-align: center;
}

.countdown-child p {
    font-size: 11px;
    margin-bottom: 0;
}

.countdown div span {
    font-size: 20px;
}

.countdown .day,
.countdown .hour,
.countdown .min {
    display: inline-block;
}

.product-name {
    margin-bottom: 0;
    font-size: 1.2rem !important;
}

.product-header h5 {
    font-family: "MachaThin";
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 0;
}

.product-header h2 {
    font-family: "DidotLHRoman";
    font-weight: lighter;
    color: #585858;
    margin-bottom: 7rem;
}

.product-container-for-right .product-container {
    gap: unset !important;
    height: 100% !important;
}

.product-image {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.product-image img:first-child,
.product-image:hover img:nth-child(2) {
    opacity: 1;
    visibility: visible;
    position: absolute;
    top: 0;
    left: 0;
}

.product-image img {
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-hover-box {
    border-radius: 5px;
    width: 50px;
    height: 50px;
    background-color: #FFFFFF;
    text-align: center;
    color: #000;
    transition: .2s ease background-color, .2s ease color;
}

.product-hover-box:hover {
    background-color: #ED8B5F;
}

.product-hover-box:hover i {
    color: #fff;
}

.product-hover {
    position: absolute;
    top: 15px;
    right: -100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: right 0.3s ease;
}

.product-hover-box {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* index campaign products */
.campaign_product_header {
    margin-top: 150px;
    margin-bottom: 35px;
    border-bottom: 1px solid #D7DCDD;
}

.campaign_product_header h4 {
    color: #505050;
    font-family: "DidotLHRoman";
    font-size: 35px;
}

.campaign_product_container .product-container {
    gap: unset !important;
    height: 60vh !important;
}

.product-container {
    font-family: "MuliRegular" !important;
    overflow: hidden;
}

.yeni-koleksiyon-satis-page{
    flex-wrap: wrap;
}

.yeni-koleksiyon-satis-page > div:not(.error-title-text){
    /*min ve width değişti*/
    width: 20% !important;
    min-width: 20% !important;
    height: unset !important;
    aspect-ratio: 1 / 1.5 !important;
}

.yeni-koleksiyon-satis-page .product-container {
    height: 100% !important;
    gap: unset !important;
}

.product-container a {
    color: #000 !important;
}

.product-container s {
    color: #B2B2B2;
    font-size: 14px;
}

/* index - blog */

.main-blog-image {
    position: relative;
}

.main-blog img {
    width: 100%;
}

.blog-text span {
    font-family: "MachaThin";
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: bolder;
}

.blog-date {
    font-weight: 100;
    background: #fff;
    padding: 4px 8px;
    font-size: 0.8rem;
}

.blog-title {
    font-weight: bold;
    font-size: .9rem;
    letter-spacing: 2px;
    margin: 15px 0;
    line-height: 1.5rem;
}

.blog-desc {
    font-family: "FusePrintedDisplayLightFont";
    font-weight: lighter;
    letter-spacing: .5px;
}

.blog-read-more {
    color: #000;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    font-family: "FusePrintedDisplayLightFont";
}

.blog-category {
    letter-spacing: 3px;
    font-size: 12px;
    font-family: "MachaThin";
    font-weight: bolder;
}

.blog-container .d-flex.align-items-center img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-container .d-flex.align-items-center > div {
    width: 100%;
    max-width: 300px;
}

.blog-container .d-flex.align-items-center > div a {
    color: black;
    font-size: 13px;
}

/* index - social */

.social-images {
    overflow: hidden;
}

.social-img {
    overflow: hidden;
}

.social-img img {
    scale: 1;
    transition: scale .4s ease;
}

.social-img img:hover {
    scale: 1.1;
    z-index: 1 !important;
}

.social-container {
    width: unset !important;
}

.social-container-text-child {
    padding-bottom: 150px;
}

.social-container-text {
    font-family: "MachaThin";
    padding: 0 11% !important;
}

.social-container-text button {
    font-family: "DidotLHRoman";
    font-weight: lighter;
    color: #5A5B59;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 0;
    width: 400px;
    height: 50px;
    font-size: 19px;
}

.social-container-text button:hover {
    background: #fff;
}

.social-container-text p {
    font-size: 20px;
    line-height: 2;
    letter-spacing: .5px;
    font-weight: lighter;
}

.social-container-text p strong {
    font-weight: bold;
}

.social-container-text h6 {
    color: #5A5B59 !important;
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: 600;
}

.social-images-container {
    padding: 0 !important;
}

.social-section {
    background-color: #A4B97F;
    overflow: hidden;
}

.social-images div {
    position: relative;
}

.social-images img {
    width: 100%;
    height: auto;
    display: block;
    scale: 1.35;
    aspect-ratio: 2 / 3;
}

.instagram-logo {
    position: absolute;
    height: 25px !important;
    width: 30px !important;
    z-index: 30;
}

/* Footer */

.footer-img2{
    display: block;
    width: auto;
    height: auto;
    padding: 10px 0;
}
.footer-img2 img{
    width: auto;
    max-height: 50px;
}

.footer-list {
    line-height: 2;
}

.highlight-tooltip {
    display: none;
    position: absolute;
    bottom: 50px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.2s ease-out;
    z-index: 5;
}

.highlight-tooltip p {
    font-size: 14px;
}

.highlight-tooltip .product-hover-box {
    font-size: 17px;
}

.product-hover i {
    color: #ED8B5F;
}

.highlight-tooltip .product-image {
    height: 300px;
    width: 240px;
}

.highlight-tooltip.show {
    display: block;
    z-index: 999;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-5px);
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes wave {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes countdownAnimation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle::after {
    content: unset !important;
}

img.rotate {
    transform: rotate(180deg);
}

.dropdown-toggle h6 {
    margin-bottom: 0;
}

/*.dropdown-content {
    margin: 1.4rem 0;
}*/

.color-box {
    width: 30px;
    height: 30px;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
}

.color-box-container {
    font-size: 13px;
    font-weight: lighter;
}

.custom-card {
    width: 33% !important;
    padding: 0 5px !important;
}

.input-container input {
    width: 45%;
    border-radius: 0;
    border: 1px solid #D2CECA;
    padding: 5px;
}

.MainHoverBlogImage {
    overflow: hidden;
}

.MainHoverBlogImage img {
    transition: scale .4s ease;
}

.MainHoverBlog:hover .MainHoverBlogImage img {
    scale: 1.05;
}

.btn-custom {
    border-radius: 0 !important;
}

.col-md-1-5 {
    width: 10%;
}

/* Genel Footer Stili */
footer {
    background-color: #fff;
    /* Beyaz arka plan */
    color: #000;
    /* Siyah yazı rengi */
    padding: 50px 0;
    font-size: 14px;
}

/* Başlıklar */
footer h5,
footer h6 {
    font-weight: bold;
}

/* Email Input */
.email-input {
    border-radius: 0;
    border: 1px solid #ccc;
    padding: 10px 15px;
    width: 100%;
    outline: none;
}

/* Email Butonu */
.email-btn {
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
    margin-left: -40px;
}

/* Footer Linkleri */
.footer_main_container a {
    color: #000;
}

.footer_main_container a:hover {
    color: #ED8B5F;
}

.footer_main_container {
    padding: 0 12rem;
}

footer a {
    text-decoration: none;
    color: #000;
}

footer a:hover {
    text-decoration: underline;
}

/* Ödeme ve Sosyal Medya İkonları */
.box-advantage {
    background-color: #ED8B5F !important;
    color: #fff;
}

.payment-icons img {
    width: 35px;
    margin-left: 5px;
}

.social-icons img {
    width: 20px;
    margin-right: 10px;
}

.social-icons i {
    font-size: 19px;
}

.border_bottom_a {
    border-bottom: 1px solid #000;
}

.border_bottom_a:hover {
    border-bottom: 1px solid #ED8B5F;
}

.basket-register {
    background-color: #ED8B5F;
    color: white;
    border-radius: 0 !important;
}

.basket-register:hover {
    border-color: #ED8B5F;
    color: #ED8B5F;
}

.summary .btn-checkout {
    background-color: #ED8B5F;
    border-color: #ED8B5F;
    color: white;
}

.summary .btn-checkout:hover {
    background-color: white;
    border-color: #ED8B5F;
    color: #ED8B5F;
}

.swal2-styled.swal2-confirm{
    background-color: #ED8B5F !important;
    border-color: #ED8B5F  !important;
    color: white  !important;
}

.thema2cartTable {
    border-collapse: collapse;
    border-spacing: 0
}

/*.thema2cartTable td, .thema2cartTable th {*/
/*    border-width: 1px !important;*/
/*}*/

.thema2cartTable td, .thema2cartTable th {
    padding: 20px;
}

#guestUserAddressForm .form-check-input {
    width: 1em !important;
    height: 1em !important;
}

#guestUserAddressForm .form-check-input:checked {
    border-color: #ED8B5F !important;
    background-color: #ED8B5F !important;
}

.thema2cartTable col:nth-child(1) {
    width: 50%;
    min-width: 200px;
}

.thema2cartTable col:nth-child(2) {
    width: 20%;
}

.thema2cartTable col:nth-child(3) {
    width: 20%;
}

.thema2cartTable col:nth-child(4) {
    width: 10%;
}

.cart-product-container {
    display: flex;
    justify-content: left;
    align-items: center;
}

.cart-product-image {
    margin-right: 20px;
}
.sidebar-cartList li {
    padding: 10px;
    border-bottom: 1px solid #ED8B5F;
    border-radius: 0 !important;
}


.sidebar-cartList li .product .product-media {
    width: 30%;
}

.sidebar-cartList li .product .product-detail h3 {
    font-size: 0.9rem;
}

.sidebar-cartList li .product .product-detail {
    width: 60% !important;
}

.sidebar-cartList li .product .product-detail .product-qty {
    color: #000;
}

.sidebar-cartList li .product .product-detail .product-price {
    color: #ED8B5F !important;
}
.detail-favori-icon{
    display: block !important;
    right: 0;
    text-align: right;
    transform: translateY(-13px);
}
.detail-favori-icon .favori-ekle{
    width: 40px;
    height: 40px;
}
.detail-favori-icon svg{
    font-size: 20px !important;
}

/*.sidebar-cartList li {
    background: white;
    box-shadow: 0 5px 10px 5px #0000000a;
    border: 0 !important;
}*/

.sidebar-cartList li:last-child {
    border: 0 !important;
}

.sidebar-cartList li .product {
    align-items: center;
}

.summary-cart {
    background: #f6f6f6;
    padding: 40px;
}

.coupon-code-wrapper .coupon-checker {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -8px;
    color: #000;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.coupon-code-wrapper .coupon-checker svg {
    margin-left: 5px;
}

.coupon-code {
    background: white !important;
    border: 0;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    width: 100%;
}

.yeni-koleksiyon-satis-page div {
    overflow: hidden;
}

.urun-sayfa-container .breadcrumb1 {
    max-width: 1440px;
    margin: 0 auto;
    margin-bottom: 20px;
    display: flex;
    justify-content: left;
    /*align-items: center;*/
    column-gap: 10px;
}

.urun-sayfa-container .breadcrumb1 a {
    color: #707070;
    text-decoration: underline !important;
}

.urun-child-container {
    width: 100%;
    height: 100%;
    max-width: 1440px;
    display: flex;
    margin: 0 auto;
}

.urun-child-container .urun-child-left-section {
    width: 55%;
    padding-right: 2.5%;
}

.urun-child-container .urun-child-left-section .product-image img {
    height: unset !important;
    position: relative !important;
}

.urun-child-container .urun-child-right-section {
    width: 35%;
    max-width: 35%;
    position: sticky;
}

.urun-child-left-section{
    padding: 0 7vw;
    row-gap: 40px;
}

.guidelines .g-line img {
    width: 30px;
}

.urun-child-container .urun-child-right-section #addToBasket {
    white-space: nowrap;
}

.urun-child-right-section .product-details-quantity input {
    width: 40% !important;
}

.urun-child-right-section .product-details-quantity a {
    width: 60% !important;
}

.product-detail-other-product-container {
    max-width: 1440px;
    margin: 0 auto;
}

.product-detail-other-product-container .product-container {
    gap: unset !important;
    height: 60vh !important;
}

.account_infos_form .form-check-input {
    width: 1em !important;
    height: 1em !important;
}

.address_edit_div .form-check-input {
    width: 1em !important;
    height: 1em !important;
}

.order-detail .box {
    padding: 20px;
}

.gonca-button-custom {
    background: #ED8B5F !important;
    transition: .15s ease-in-out;
}

.gonca-button-custom:hover {
    border-color: #ED8B5F !important;
    color: white !important;
    filter: brightness(110%);
}

.cart .form-check-input:checked, .address_edit_div .form-check-input:checked, .account_infos_form .form-check-input:checked {
    border-color: #ED8B5F;
    background-color: #ED8B5F;
    outline: none !important;
}

.themabgcolor {
    background-color: #ED8B5F !important;
    color: white !important;
    border-color: white;
}

.themabgcolor:hover {
    background: #ffffff !important;
    color: #ED8B5F !important;
    border: 1px solid #ED8B5F !important;
}

.adressflex span {
    background: #ED8B5F !important;
}

.order-list .item .action a.btn {
    background-color: #ED8B5F;
    border-color: #ED8B5F;
}

.blogLink:hover .article-box {
    background: unset;
}

.blogLink .footer h3 {
    margin-bottom: 15px;
}

.blogLink .footer h3 a {
    color: #ED8B5F;
}

.blog-page-header {
    position: relative;
    margin: 50px 0;
}

.blog-page-header h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
}

.blogLink-img {
    height: 225px;
}

.blog_main_cont > img {
    height: 700px;
}

.blog_main_cont {
    max-width: 1440px;
}

.blogLink .footer > a {
    position: relative;
    display: inline-block;
    transition: all .3s ease;
    background: transparent;
    color: #ED8B5F !important;
    padding: 0 50px;
    font-size: 13px;
    line-height: 48px;
    border: 1px solid #ED8B5F;
    text-transform: uppercase;
}

.all-blog{
    color: #ED8B5F;
    border-bottom: 1px solid #ED8B5F;
}

.blogLink .footer > a:hover {
    color: white !important;
    border-color: #ED8B5F;
    background-color: #ED8B5F;
}

.checkout-sidebar-column {
    padding-right: 15%;
    padding-top: 20px;
}

.cart-navbar-sticky {
    position: sticky !important;
}

.sidebar-cartList li:last-child {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.sidebar-cartList .product .product-detail {
    align-items: end;
    gap: 10px;
}

.table.table-summary tbody td {
    vertical-align: bottom;
    background: transparent;
    padding-bottom: 5px;
}

.contratConfirm .form-check-input {
    width: 1em;
    height: 1em;
}

.summary-cart {
    padding: 20px;
}
.summary-cart button {
    background-color: #ED8B5F !important;
    border-color: #ED8B5F !important;
}
.payment-success-buttons a:nth-child(2){
    background-color: #ED8B5F !important;
    border-color: #ED8B5F;
    color: white;
}
.payment-success-buttons a:nth-child(2):hover{
    background-color: transparent !important;
    border-color: #ED8B5F;
    color: #ED8B5F;
}

.payment-sticky-custom {
    gap: 0;
}

.checkout-content {
    padding-left: 20%;
    padding-top: 20px;
}

.checkout-content .box {
    padding: 20px;
}

#addToBasket {
    background-color: #ED8B5F !important;
    color: white !important;
}

.sepet-add {
    background-color: #ED8B5F !important;
    color: white !important;
    border-radius: 0 !important;
}

.share-wp .btn-success {
    border-radius: 0 !important;
}

.advantage-head, .guidelines .g-line {
    color: #ED8B5F !important;
}

.guidelines .g-line svg {
    width: 21px;
    height: 30px;
}

.guidelines .g-line svg polyline, .guidelines .g-line svg line {
    stroke: #ED8B5F !important;
}

.advantage-head svg {
    width: 40px;
    height: 40px;
    fill: #ED8B5F !important;
    margin-bottom: 10px;
}

.product-cargo, .side-box-header-text p {
    color: #ED8B5F !important;
}

.side-box-info-content-text-header {
    padding-left: 2vw;
}

.side-box-info-content-text-container {
    padding-left: 2vw;
}

.side-box-info-content-container {
    margin-bottom: 3vh;
}

.side-box-info-content-container::after {
    bottom: -2.5vh;
}

.side-box-info-content-container:last-child::after {
    content: unset !important;
}

.side-box {
    overflow: auto;
}

.yorum-yaz {
    padding: 7px;
    display: inline-block;
    cursor: pointer;
}

.custom-yorum-container-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-left: 2vw;
}

.side-box-refund-text-container {
    padding-top: 2vh;
}

.custom-yorum-container-main .yorum-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-more-info .content-ul-tab {
    margin-bottom: 45px;
}

.product-more-info .more-info-tabs__nav {
    justify-content: center;
}

.product-more-info .more-info-tabs__nav-link:hover, .product-more-info .more-info-tabs__nav-link.active {
    color: #ED8B5F;
}

.product-more-info .more-info-tabs__nav-link {
    font-size: 23px;
    display: inline-block;
    color: #000;
    cursor: pointer;
}

.product-more-info .more-info-tabs__nav-link > span {
    display: inline-block;
    padding: 0 20px 5px;
    position: relative;
}

.product-more-info .more-info-tabs__nav-link.active > span {
    color: #ED8B5F !important;
}

.product-more-info .more-info-tabs__nav-link > span:before {
    position: absolute;
    bottom: -1px;
    content: "";
    left: 0;
    transform: scaleX(0);
    transform-origin: 100% 50%;
    transition: transform .3s cubic-bezier(.25, .46, .45, .94);
    width: 100%;
    height: 2px;
    background: #ED8B5F;
}

.product-more-info .more-info-tabs__nav-link.active > span:before {
    transform: scaleX(1);
    transform-origin: 0 50%;
    transition-delay: .3s;
}

.more-info-tabs__nav-link.mobile {
    display: none !important;
}

.more-tab-container .tab-pane span, .more-tab-container .tab-pane p, .more-tab-container .tab-pane li, .product-more-info .custom-yorum-container, .product-more-info .yorum-yaz {
    color: #6c6c6c !important;
}

.more-tab-container .tab-pane li {
    line-height: 2.5;
}

.product-more-info .tab-content .tab-pane {
    display: none;
}

.product-more-info .tab-content .tab-pane.show {
    display: block;
}

/*.urun-child-right-section .detay_mid {*/
/*    top: 180px;*/
/*}*/

#productAdvantagesSlider .swiper-pagination-bullet-active {
    background-color: #ED8B5F !important;
}

/* Mobil toggle ikonu */
.menu-icon,
.menu-icon::before,
.menu-icon::after {
    content: "";
    display: block;
    width: 25px;
    height: 3px;
    background: #000;
    transition: 0.3s;
    position: relative;
}

.menu-icon::before {
    top: -8px;
    position: absolute;
}

.menu-icon::after {
    top: 8px;
    position: absolute;
}

.menu-open .menu-icon {
    background-color: transparent;
}

.menu-open .menu-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-open .menu-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* navbar sepet */

.navbar-cart-container {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    transition: all .4s cubic-bezier(.46, .01, .32, 1);
}

.navbar-cart-container.active {
    opacity: 1;
    pointer-events: unset;
}

.navbar-cart-container-overlay {
    width: 100%;
    height: 100vh;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: #0006;
}

.navbar-cart-container.active .navbar-cart-container-overlay {
    opacity: 1;
}

.navbar-cart-container-inner {
    position: absolute;
    right: 0;
    width: calc(100% - 30px);
    max-width: 520px;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: all .4s cubic-bezier(.46, .01, .32, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.navbar-cart-container.active .navbar-cart-container-inner {
    transform: translateX(0);
}

.close-navbar-cart {
    box-shadow: unset;
    display: flex;
    background-color: transparent;
    position: relative;
    border: 1px solid #e9e9e9;
    width: 30px;
    height: 30px;
    margin-left: auto;
}

.close-navbar-cart::before {
    content: "";
    position: absolute;
    height: 1px;
    width: 16px;
    top: 50%;
    right: calc(50% - 9px);
    margin-top: -1px;
    background-color: #000;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    transform-origin: 50% 50%;
    transform: rotate(-45deg);
}

.close-navbar-cart::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 16px;
    top: 50%;
    right: calc(50% - 9px);
    margin-top: -1px;
    background-color: #000;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    transform-origin: 50% 50%;
    transform: rotate(45deg);
}

.close-navbar-cart:hover::before, .close-navbar-cart:hover::after {
    transform: rotate(0);
}

.navbar-cart-top-container {
    padding: 20px 30px;
}

.navbar-cart-bottom-container {
    padding: 20px 30px;
    box-shadow: 0 5px 15px 5px #00000026;
    background: white;
}

.navbar-cart-products-header {
    margin-top: 20px;
    margin-left: -30px;
    padding-bottom: 10px;
    padding-left: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    width: calc(100% + 60px);
}

.navbar-cart-total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    line-height: 1.5;
    font-size: 18px;
    margin-bottom: 5px;
}

.navbar-cart-total > span {
    color: #6c6c6c;
    display: inline-block;
    margin-bottom: 10px;
}

.navbar-cart-form-checkbox-container {
    margin-bottom: 10px;
    position: relative;
}

.navbar-cart-form-checkbox-container input {
    float: none;
    vertical-align: middle;
    padding: 0;
    position: absolute;
    width: 100%;
    opacity: 0;
    z-index: 2;
    height: 100%;
    cursor: pointer;
}

.navbar-cart-form-checkbox-container label {
    display: inline;
    float: none;
    color: #6C6C6C;
    font-size: 14px;
}

.navbar-cart-form-checkbox-container label a {
    z-index: 2;
    position: relative;
    color: #000;
}

.navbar-cart-form-checkbox-container label a::before {
    content: "";
    position: absolute;
    bottom: 1px;
    right: 0;
    width: 100%;
    height: 1px;
    background: #000;
    transition: all .3s ease;
}

.navbar-cart-form-checkbox-container label a:hover {
    color: #ED8B5F;
}

.navbar-cart-form-checkbox-container label a:hover::before {
    left: 0;
    width: 0;
}

.navbar-cart-form-checkbox-container label::before {
    content: "";
    width: 15px;
    height: 15px;
    border: 1px solid #0000003F;
    display: inline-block;
    position: relative;
    top: 2px;
    margin-right: 5px;
    box-shadow: inset 0 0 0 10px #fff;
    transition: all .3s ease;
}

.navbar-cart-form-checkbox-container input:checked + label::before {
    background: #000;
    border-color: #000;
    box-shadow: inset 0 0 0 3px #fff;
}

.navbar-cart-products-header h4 {
    color: #000;
    font-size: 30px;
}

.navbar-cart-form-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
}

.navbar-cart-form-button-container a:first-child {
    display: block;
    width: 100%;
    padding: 10px 15px;
    color: #fff;
    background-color: #000;
    border: 1px solid #000;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    transition: all .3s ease;
    z-index: 1;
    font-size: 13px;
}

.navbar-cart-form-button-container a:last-child {
    display: block;
    width: 100%;
    padding: 10px 15px;
    color: #000;
    background-color: #fff;
    border: 1px solid #000;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    transition: all .3s ease;
    z-index: 1;
    font-size: 13px;
}

.navbar-cart-form-button-container a:hover {
    background-color: #ED8B5F;
    border-color: #ED8B5F;
    color: #fff;
}

.navbar-cart-products-list {
    padding-top: 20px;
    overflow: auto;
    position: absolute;
    height: 100%;
    width: 90%;
    z-index: -1;
    scrollbar-width: thin;
}

.navbar-cart-product-container {
    padding-bottom: 320px;
}

.navbar-cart-product {
    display: flex;
    column-gap: 15px;
    justify-content: left;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.navbar-cart-product:first-child {
    padding-top: 0;
}

.navbar-cart-product:last-child {
    border-bottom: 0;
}

.navbar-cart-product-img {
    width: 100px;
}

.navbar-cart-product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
}

.navbar-cart-products-name {
    margin-bottom: 6px;
}

.navbar-cart-products-name a {
    margin: 0;
    color: #000;
    transition: color .3s ease;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2.5px;
}

.navbar-cart-products-name a:hover {
    color: #ED8B5F;
}

.navbar-cart-products-price {
    margin-bottom: 9px;
}

.navbar-cart-products-price span {
    color: black;
    font-size: 14px;
}

.navbar-cart-products-edit {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}

.navbar-cart-products-counter {
    position: relative;
    max-width: 90px;
    height: 30px;
    line-height: 30px;
    display: flex;
    border: 1px solid #e9e9e9;
    font-size: 16px;
}

.navbar-cart-products-counter button {
    background: transparent;
    border: 0;
    color: #000;
    padding: 0;
    width: 28px;
    text-align: center;
}

.navbar-cart-products-counter input {
    width: 30px;
    flex: 1;
    border: 0;
    text-align: center;
    color: #000;
    padding: 0;
    appearance: none;
}

.navbar-cart-product-remove button {
    border: 0;
    background: transparent;
}

.navbar-cart-product-remove button i {
    color: black;
}

.navbar-cart-product-remove button svg path {
    transition: color .3s ease;
}

.navbar-cart-product-remove button:hover svg path {
    color: red;
}

/* navbar sepet */

.account-login-container{
    margin-top: 15rem !important;
}

.login-button-container button {
    background-color: #ED8B5F;
}

.account-create-container-button button {
    background-color: #ED8B5F;
}

.login-button-container button:hover, .account-create-container-button button:hover {
    color: #ED8B5F;
    background-color: #fff;
    border: 1px solid #ED8B5F;
}

.login-button-container > a {
    color: #000;
    font-size: 15px;
    text-decoration: underline !important;
}

.contact_header h1, .iletisim-child-header h3 {
    color: #ED8B5F;
}

.contact_page_form input, .contact_page_form textarea {
    padding: 8px 12px;
}

.contact_sss_link_div {
    background-color: #9EB87D;
}

.contact_bize_ulasin_div {
    background-color: #8db556;
}

.contact_social a {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.blog-banner h1 {
    color: #ED8B5F !important;
}

.article-box-text font {
    color: #6c6c6c;
}

.contact_header_img {
    width: 80%;
    margin: 0 auto;
}

.bottom-slider-title-section p {
    text-align: center;
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 40px !important;
}

.verification-code-info {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #dee2e6;
    color: #6c6c6c;
}

.verification-code-error {
    padding: 0.25rem 1.5rem;
    border-bottom: 1px solid #dee2e6;
    color: #ca3a3a;
}

.verification-code-info p {
    margin: 0;
}

.verification-code-inputs {
    display: flex;
    justify-content: center;
    column-gap: 20px;
    align-items: center;
}

.verification-code-inputs::before {
    content: '';
    background: black;
    width: 6px;
    height: 1px;
    position: absolute;
}

.verification-code-inputs input {
    display: block;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 1.4rem;
    min-width: 0;
    border-radius: 5px !important;
}

.verification-code-inputs input:focus {
    border-color: #ED8B5F;
}

.verification-code-inputs input:last-child {
    margin-right: 0;
}

.verification-modal-dialog {

    top: 50%;
    transform: translateY(-50%);
}

.verification-modal-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

#verifyBtn {
    background: transparent;
    border: 1px solid black;
    color: black;
    padding: 10px 20px;
    transition: .3s;
    position: relative;
    left: 100%;
    transform: translateX(-100%);
}

#verifyBtn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

#verifyBtn:hover {
    background: #ED8B5F;
    border-color: #ED8B5F;
    color: white;
}

.verification-modal-dialog .modal-header {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.verification-modal-dialog .modal-body {
    padding-top: 30px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.verification-code-inputs {
    margin-bottom: 30px;
}

.urun-child-top-section-responsive {
    display: none;
}

.custom-control-input {
    background-color: white !important;
    border-color: #ED8B5F !important;
}

.custom-control-input:checked {
    background-color: #ED8B5F !important;
}

.account-menu {
    position: relative;
    background: white;
    padding-top: 1rem !important;
}

.account-menu > ul {
    position: sticky;
    top: 170px;
}

.account-menu > ul > li {
    border: 0 !important;
}

.account-menu a {
    color: #ED8B5F !important;
    opacity: .6;
}

.link-dark {
    opacity: 1 !important;
}

.account-menu a:hover {
    opacity: 1;
    color: #ED8B5F !important;
}

.city_district_group {
    align-items: end !important;
}

.iletisim-button-container button {
    border: 2px solid #ED8B5F;
    background: #ED8B5F;
    border-radius: 0 !important;
}

.iletisim-button-container button:hover {
    background: white;
    color: #ED8B5F;
}

.reset_password_div h1 {
    color: #ED8B5F;
}

.reset_password_div small {
    color:#ED8B5F;
}

.reset_password_div{
    margin-top: 50px;
}

.reset_password_div button {
    background: #ED8B5F;
}

.reset_password_div button:hover {
    background: #ffffff;
    color: #ED8B5F;
    border: 1px solid #ED8B5F;
}

.payment-sidebar{
    position: sticky;
    top: 15%;
}


.cart .cart{
    padding: 0 !important;
    margin: 0 !important;
}

.blog-page-header h3, .article-box :is(font, h3, a){
    font-family: 'MuliRegular'
}

.product-cargo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-indent: 10px;
    color: #2E5160;
    /* font-weight: 300; */
    font-size: 13px;
}

@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/materialsymbolsoutlined/v272/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHOej.woff2) format('woff2');
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.fwsb{
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

.fa-arrow-right-long {
    margin-left: 20px !important;
}

body{
    overflow: visible !important;
}

.product-modules .details-filter-row {
    margin: 0 !important;
}

.urun-child-right-section{
    max-width: 50% !important;/*
    padding: 0 7vw 0 2vw;*/
}

.product-container-for-right{
    width: 50% !important;
    display: flex;
    flex-wrap: wrap;
    opacity: 1;
    transition: opacity 0.5s ease;
    justify-content: left;
    margin-bottom: 10vh;
}
.mfp-wrap{
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1000;
    max-width: 100vw !important;
    min-width: 100vw;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .5);
}

.mfp-container, .mfp-content{
    min-height: 100% !important;
    height: 100%;
}

.mfp-content{
    display: flex;
    align-items: center;
    justify-content: center;
}

.mfp-content > .container{
    background-color: #fff !important;
    padding: 20px;
    max-width: 1000px;
    height: 80vh;
    overflow-x: hidden;
    overflow-y: overlay;
    position: relative;
}

.mfp-content .product-images{
    display: flex;
    flex-direction: column;
    row-gap: 40px
}

.product-images img, .urun-child-left-section img{
    height: unset !important;
}

.quickShop-container, .quickShop-container :is(.quickShop-content, .img, .product-min-view){
    width: fit-content !important;
    height: fit-content !important;
}

.quickShop-container .product-min-view{
    margin-top: 25px;
}

.quickShop-container img{
    width: unset !important;
    max-height: 250px !important;
}

.quickShop-container .btn-cart{
    background-color: #ed8b5f;
    color: white;
    border: none !important;
    padding: 13px
}

.quickShop-container :is(.btn-view-detail, .product-title){
    color: black !important;
    width: 100%;
    display: block;
    margin-top: 20px !important;
}

.quickShop-container .btn-product{
    width: 100%;
    margin: 0 auto 10px auto;
    display: block;
}

.product-modules{
    padding: 10px;
    box-sizing: content-box !important;
}

.product-hover-box{
    cursor: pointer;
}

.variantincludeAppend  .product-details-quantity {
    width: 100%;
}

.form-control, .select2-selection{
    min-height: 40px;
    align-items: center;
    border-radius: 0 !important;
    border: var(--bs-border-width) solid var(--bs-border-color) !important;
}

.select2-selection__arrow{
    min-height: 40px
}

.urunmodul .select2-selection{
    margin-bottom: 10px;
}

label:has(+ :is(.form-control, .select-custom, .product-details-quantity)){
    font-size: var(--bs-body-font-size) !important;
    font-weight: normal !important;
}

.mfp-close{
    width: 50px !important;
    height: 50px !important;
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: transparent;
    border: none !important;
    font-size: 48px !important;
    align-items: end;
    display: flex;
    justify-content: end;
    text-align: center;
}


.rotate-n90 {
    transform: rotate(-90deg);
}

/* >>> Slider */
.swiper-slide {
    background-size: cover;
    background-position: center;
}

#mainSlider {
    flex: 1;
}

#mainSliderGallery {
    max-width: 150px;
    flex: 0 1 auto;
    box-sizing: border-box;
    padding: 0 10px;
}

#mainSliderGallery .swiper-slide {
    box-sizing: border-box;
    border: 4px solid #ebebeb;
}

#mainSliderGallery .swiper-slide:hover,
#mainSliderGallery .swiper-slide-thumb-active {
    border-color: #2E5160;
}

.swiper-slide .fill-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* >>> Detay */
.product-code {
    font-weight: 300;
}

.product-name {
    font-weight: normal;
    font-size: 1.5rem;
    margin-top: 1.25rem;
}

.prices {
    margin: 2rem 0;
}

.product-price {
    font-size: 100%;
}

del.product-value {
    margin: 0 7px;
    color: lightgray;
}

strong.product-discount {
    color: #2e5160;
}

.color-radial {
    width: 40px;
    height: 40px;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 100%;
    border: 2px solid transparent;
    background-clip: content-box;
    background-color: #fec;
    margin-right: 7px;
}

.color-radial:hover {
    border-color: #2e5160;
    padding: 3px;
}

.variant-label {
    font-size: 13px;
}

.variant-colors {
    display: flex;
    margin-bottom: 2rem;
}

.variant-dimensions {
    margin: 1rem 0;
}

.variant-dimensions a.guideline {
    float: right;
    font-weight: 300;
    font-size: 14px;
}

select#productDimension {
    width: 100%;
    background-position: calc(100% - 16px) center;
    border-radius: 12px;
    margin-top: 7px;
}

.product-basket {
    display: flex;
    align-items: center;
    margin: 1rem 0 2rem;
}

select#productQty {
    background-color: transparent;
    border-radius: 5px;
    padding: 10px;
}

#addToBasket {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2E5160;
    color: #d0d0d0;
    cursor: pointer;
    width: fit-content;
    white-space: nowrap;
    padding: .375rem .75rem;
    font-size: 1rem;
}

button#addToBasket:hover {
    background-color: #406f83;
}

.product-find-store {
    border-bottom: 1px solid;
    padding-bottom: 5px;
    font-weight: 300;
    color: #2E5160;
}

.product-find-store img {
    vertical-align: middle;
    margin-right: -21px;
}

.advantage-head img {
    vertical-align: middle;
}

.advantage-head {
    color: #2e5160;
}

#productAdvantagesSlider .swiper-slide {
    text-align: center;
}

div#productAdvantagesSlider {
    margin: 4rem 0;
    padding-bottom: 30px;
}

.swiper-pagination {
    position: static;
    margin-top: 15px;
}

#productAdvantagesSlider .swiper-pagination-bullet-active {
    background: #2e5160;
}

.advantage-text {
    font-size: 14px;
}

.guidelines .g-line {
    border-bottom: 1px solid lightgray;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #2E5160;
    cursor: pointer;
}

.guidelines .g-line:first-child {
    border-top: 1px solid lightgray;
}

.side-box-refund-text-container {
    box-sizing: border-box;
    padding: 0 7.5%;
}

/* >>> vaav entegre */
.detay_fiyat {
    font-size: 125%;
}

.olculer {
    margin: 1rem 0;
}

.details-filter-row {
    margin: 2rem auto;
}

.details-filter-row label {
    font-weight: bold;
    font-size: 13px;
    width: 10%;
}

.details-filter-row select {
    width: 100%;
    margin-top: 7px;
}

.details-filter-row .guideline {
    float: right;
    font-weight: 300;
    font-size: 14px;
}
.details-row-size {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.product-details-quantity {
    display: flex;
    /*margin-bottom: 2rem;*/
    justify-content: left;
}

.color-container {
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.color-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    display: block;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    background-clip: content-box;
    box-sizing: border-box;
}

/* On mouse-over, add a grey background color */
.color-container:hover input ~ .checkmark,
.color-container input:checked ~ .checkmark {
    border-color: #2e5160;
    padding: 3px;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.color-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.color-container .checkmark:after {
    top: 3px;
    left: 3px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: white;
}

/* <<< */

section.sect2 {
    padding: 0 5%;
    margin-top: 3rem;
}

.urun-sayfa-container.urun-degerlendirmeler{
    width: 100%;
}

.urun-sayfa-container .nav-link{
    color: #9EB87D !important;
}

.urun-sayfa-container .nav-link:not(.active){
    opacity: .5
}

.urun-sayfa-container #yorum button{
    background-color: #ED8B5F;
    padding: 5px 10px;
    color: white;
}

.modal-body{
    background-color: white;
}

.swiper-slide-1 .starrating > label:before {
    content: "";
    background-image: url(../../img/svg/deactive-start.svg) !important;
    width: 100%;
    height: 100%;
    margin: 2px;
    font-size: 50px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.swiper-slide-1 .starrating > input:checked ~ label:before{
    background-image: url(../../img/svg/active-start.svg) !important;

}

.starrating{
    width: 250px;
    height: 40px;
    flex-wrap: nowrap;
    margin: 0 auto;
}

.swiper-slide-1 .starrating > input:checked ~ label{
    width: 100% !important;
    height: 100% !important;
}

.swiper-slide-1 .starrating > label{
    height: 100%;
    width: 100%;
}

.modal-custom-background{
    border: none !important;
}

.product-list a {
    color: black;
}
.text-muted .text-primary{

}

.details-filter-row label{
    white-space: nowrap;
    margin-right: 14px;
}

.order-list .item .payment .price, .order-list .item .status{
    white-space: nowrap;
}

.details-filter-row.details-row-size label{
    width: auto;
}

.has-variant .urun_detail_modül4 {
  margin-top: 4.5rem !important;
}

span.select2.select2-container.select2-container--default{
    width: 100% !important;
}

div.col-md-3.urun_detail_modüller_item.urun_detail_modül3 div.details-filter-row.details-row-size div.select-custom {
    min-width: max-content;
}

a.product-image.flex-grow-1.d-flex.flex-column{
    aspect-ratio: 1 / 1;
    flex-grow: 0 !important;
    height: auto;
}

a.product-image.flex-grow-1.d-flex.flex-column img.img-fluid.flex-grow-1{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.row.mt-4.align-items-stretch.g-3 img{
    aspect-ratio: 1 / 1.5;
}