.product-detail .product-bottom-features .features-list li > * {
	width: 50%;
}

.product-box {
	background-color: #fff;
	border: 1px dashed transparent;
}

.product-box:hover {
	border: 1px dashed #747474;
}

.product-box .product-btn {
	background-color: #747474;
	color: #fff;
}

header .header-area .right-component .menu .dropmenu {
	display: flex;
	flex-direction: column;
}

.iti.iti--allow-dropdown {
	width: 100%;
}

.sidebar {
	background-color: #0A3F88;
	color: #fff;
}

.sidebar a, .sidebar .title {
	color: #fff;
}

.sidebar ul {
	margin-bottom: 0;
}

.sidebar a:hover {
	color: rgba(255,255,255, .8);
}

.sidebar .title::before {
	background-color: #fff;
}

.sidebar .submenu {
	display: flex;
	justify-content: space-between;
}

.sidebar .dropmenu-toggler {
	padding: 5px;
	cursor: pointer;
	background-color: transparent;
	color: #fff;
	height: 30px;
	width: 30px;
}

.sidebar .dropmenu-toggler .line {
	height: 1px;
	width: 14px;
	background-color: #fff;
	position: relative;
}

.sidebar li:not(.active) .dropmenu {
	display: none;
}

.sidebar .dropmenu {
	padding-top: 10px;
	padding-left: 10px;
	padding-bottom: 1px;
}

.sidebar .dropmenu li:last-child {
	margin-bottom: 0;
}

.sidebar .dropmenu a {
	color: #97AECF;
}

.sidebar .dropmenu a:hover {
	color: rgba(151,174, 207, .8);
}

.sidebar .active .submenu > a {
	color: rgba(255,255,255,.8);
}

.sidebar .dropmenu .active > a {
	color: rgba(151,174, 207, .7);

}


header .header-area .right-component .menu li {
	display: flex;
	align-items: center;
}

.recourse-box a {
	margin-bottom: 10px;
}

.category-list .products-area {
	margin-bottom: 50px;
}

/* megamenu */

header {
	padding: 0;
}

header .menu li {
	padding: 20px 0;
}

.megamenu {
	position: fixed;
	width: 100%;
	top: 111px; /*106*/
	left: 0;
	background-color: #fbfbfb;

	max-height: 420px;
	padding: 30px;

	visibility: hidden;
	opacity: 0;
	transition: all ease .3s;

}

.megamenu .megalinks {
	display: flex;
	flex-wrap: wrap;

}

.megamenu .megalinks li {
	width: 50%;
	display: inline-block;
	margin-bottom: 5px;
	padding: 0;
}

.megamenu .megalinks a {
	padding: 5px !important;
}

.megamenu .mega-title {
	text-align: left;
	font-weight: 700;
	font-size: 21px;
	color: #0A3F88;
	margin-bottom: 20px;
}

.menu .mega-hover:hover > .megamenu {
	top: 106px;
	opacity: 1;
	visibility: visible;
}

.menu .mega-hover:hover > a {
	color: #0A3F88;
}

.breadcrumb .breadcrumb-area ul li a:hover {
	color: #fff;
}

.mb-2xl {
	margin-bottom: 48px;
}

.m-0 {
	margin: 0 !important;
}

.justify-center {
	justify-content: center;
}


.breadcrumb li {
	white-space: nowrap;
}

/*MEDIA QUERIES*/


@media (max-width: 1200px) {
	header {
		display: none;
	}

	.header-mobile {
		display: flex;
	}

	.megamenu {
		display: none;
	}
}

/* 1280px fix */

@media (max-width: 1280px) {
	.authorized, .category-list, .corporate, .error-page, .standart-page {
		padding: 50px 0;
	}
}

/* 992px */
@media (max-width: 992px) {
	.breadcrumb .breadcrumb-area ul {
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		padding-bottom: 10px;
	}
}

.pb-100{
	padding-bottom: 100px;
}
@media (max-width: 991px) {
	.pb-100{
		padding-bottom: 40px;
	}
}
.p-100{
	padding: 100px 0px;
}
@media (max-width: 991px) {
	.p-100{
		padding: 40px 0px;
	}
}
.text-center{
	text-align: center;
}

@media (max-width: 767px) {
	.product-box {
		padding: 20px 0 5px;
	}
	
	.product-box .title {
		font-size: 16px;
		padding: 0;
		margin-bottom: 15px;
	}
	
	.product-box img {
		margin-bottom: 25px;
	}
}
@media (max-width: 991px) {
	.category-list .products-area [class^=col-]:last-child {
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.swiper-popular-products .product-box {
		min-height: auto;
	}
}

header .header-area .right-component .menu .dropmenu li {
    padding: 0;
    width: 100%;
    text-align: left;
}

header .header-area .right-component .menu .dropmenu li > a {
    width: 100%;
    padding: 15px 5px;
}

.check-container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.check-container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff
}

.check-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.check-container input:checked~.checkmark:after {
    display: block;
    border-color: #cbcaca
}

.check-col {
    margin-bottom: 30px
}

.check-col .check-group {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-right: 30px
}

.check-col .check-group label {
    display: inline-block;
    margin-bottom: 20px
}

.check-col a {
    text-decoration: underline
}

.check-area {
    margin-right: 10px
}

.check-area input~.checkmark {
    border: 1px solid #c9c9c9
}

.kvkk-modal .modal-dialog .modal-header {
    padding: 1rem;
}

.kvkk-modal .modal-dialog .modal-header button {
    position: relative;
    top: unset;
    right: unset;
    background: #eee;
    padding: 10px;
}

.kvkk-modal .modal-dialog .modal-header button i {
    font-size: unset;
}

.kvkk-modal .modal-dialog .modal-body {
    padding: 1rem;
}

@media (max-width:992px) {
	.product-infos {
		margin-bottom: 24px;
	}
}

@media (max-width: 767px) {
	.swiper-slider img{
		height: auto;
	}
}

.product-detail .product-bottom-features .features-list td {
    padding: 2px;
}
.product-detail .product-bottom-features .features-list td:first-child {
    width: 225px;
}

.features-list table tr:nth-child(even) {
    background-color: #f1f1f1;
}

.features-list table td, .features-list table th {
    border: 1px solid #eee;
}
@media (max-width:576px) {
	.product-detail .product-bottom-features .features-list .title, .product-detail .product-bottom-features .features-list td:first-child{
		width: auto;
	}
	.features-list table {
		font-size: 14px;
	}
}
.product-detail .product-infos .subtitle {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
}

.product-detail .product-infos .title {
    margin-bottom: 0;
}

.product-infos .color-wrapper {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e2e2e2;
}

/* color wrapper */
.color-wrapper {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 0.25rem;
	align-items: center;
}

.color-item {
    --color-item-radius: 0.625rem;
    transform: skewY(350deg) rotate(10deg);
    width: 2.25rem;
    height: 2.25rem;
    border-top-right-radius: var(--color-item-radius);
    border-bottom-left-radius: var(--color-item-radius);
    cursor: pointer;
    background-color: transparent;
    position: relative;
    border: 1px solid transparent;
}

.color-item.active {
    border: 1px solid var(--c-product-color);
}

.color-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.875rem;
    height: 1.875rem;
    border-top-right-radius: var(--color-item-radius);
    border-bottom-left-radius: var(--color-item-radius);
    cursor: pointer;
    background-color: var(--c-product-color);
}

.color-item.active::before {
    width: 1.875rem;
    height: 1.875rem;
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

/* color wrapper end */
.js-product-picture-gallery {
    display: grid;
    grid-template-columns: 100%;
}

.js-product-picture-gallery .gallery-item {
    transform: scale(0);
    transform-origin: center;
    grid-area: 1 / 1;
    transition: all .300s ease;
    opacity: 0;
}

.js-product-picture-gallery .gallery-item.active {
    transform: scale(1);
    opacity: 1;
}

.color-wrapper-title {
    margin-right: 10px;
}
/**popup*/
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .7);
  }
  
  .popup .content {
    position: relative;
    max-width: 992px;
    padding: 12px;
    margin: 8px;
    background-color: #fff;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.5);
    border-radius: 0px;
    max-height: calc(100% - 30px);
  }
  
  .popup .p-close {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    width: 40px;
    height: 40px;
    transform: translate(25%, -25%);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    color: #000;
  }
  
  .popup .p-close svg {
    width: 20px;
  }
  
  .popup .content .content-wrapper{
    overflow: auto;
    margin-bottom: 0;
  }
  
  @media (max-width: 991px){
  .popup .content {
    padding: 10px;
  }
  }
  /**popup*/
.scroll-wrapper{
    height: 400px;
    overflow: auto;
    padding-right: 16px;
}
.scroll-wrapper::-webkit-scrollbar {
    width: 8px;
  }
  .scroll-wrapper::-webkit-scrollbar-track {
    border-radius: 5px;
    margin: 0.2rem 0;
    background: #f1f1f1;
  }
  .scroll-wrapper::-webkit-scrollbar-thumb {
    background: #0a3f88;
    border-radius: 5px;
  }
  .scroll-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: #0a3f88;
  }
  .h1{
      font-size: 30px;
      font-weight: 700;
      color: #fff;
  }
  @media (max-width:992px) {
    .h1{
        font-size: 22px
    }
  }

  .content-wrapper a {
    color: blue;
}


.new-product {
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 4px 7px;
    font-size: 13px;
    color: white;
    border-radius: 1px;
}

.new-product img {
    max-width: 140px;
}

.product-box {
    position: relative;
}

.product-detail .product-infos{
    position: relative;
}

.product-detail .product-infos .new-product{
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    margin-left: 10px;
}

/* chrome prevent lightbox scroll */

body:has(
	:is(
		.lightboxOverlay[style*="display: block"],
		.lity[aria-hidden="false"])
	) {
  overflow: hidden;
}

html.lity-active { overflow: hidden }

.flex-col {
    display: flex;
    flex-direction: column;
}

.items-col-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.h-full {
    height: 100%;
}

/* Swiper v11 uyumluluk — v11 root'a .swiper-container-horizontal/vertical yerine .swiper-horizontal/vertical ekliyor */
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}

/* Swiper v11'de vertical root class .swiper-container-vertical → .swiper-vertical olarak değişti.
   main.css'teki .swiper-container-vertical > .swiper-wrapper { flex-direction: column } kuralı
   uygulanmıyor; v11'in yeni class'ı için yeniden tanımlıyoruz. */
.swiper-vertical > .swiper-wrapper {
    flex-direction: column;
}

.swiper-vertical {
    touch-action: pan-x;
}