/* Reset & Basics 
------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain) */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; }
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block; }
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after, q:before, q:after {content: ''; content: none;}
table {border-collapse: collapse; border-spacing: 0;}

/* html - body
------------------------------------- */
* {margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; /* font-size:14px; */}
body { margin:0; padding:0; font-family: 'Roboto', sans-serif; font-size:1rem; font-weight:400; line-height:1.5; color:#333; background-color: #f9f9f9;	/* background:#fff url('images/bg-repak.jpg'); */}

/* Typography
------------------------------------- */
h1, h2, h3, h4, h5, h6 { margin-top:0; margin-bottom:1rem; font-weight:500; line-height:1.2; color:#333; font-family: 'Barlow Condensed', sans-serif; }
h1{ font-size:2rem; }
h2{	font-size:1.7rem; }
h3{	font-size:1.4rem; }
h4{	font-size:1.2rem; }
h5{ font-size:1rem; }
p {	margin-top:0; margin-bottom:1rem; }
b, strong {	font-weight:bolder; }
small { font-size:80%; }
em {font-style: italic;}

@media only screen and (min-width:900px) and (max-width:1239px) {

}
@media only screen and (min-width:600px) and (max-width:899px) {
	h1{ font-size:1.6rem; }
	h2{	font-size:1.4rem; }
	h3{	font-size:1.2rem; }
	h4{	font-size:1rem; }
	h5{ font-size:0.9rem; }
}
@media only screen and (min-width:0) and (max-width:599px) {
	h1{ font-size:1.6rem; }
	h2{	font-size:1.4rem; }
	h3{	font-size:1.2rem; }
	h4{	font-size:1rem; }
	h5{ font-size:0.9rem; }
}

/* LİST 
------------------------------------- */
ol, ul {
	list-style-type: disc; /* Varsayılan madde işaretleri */
    margin: 0 0 1rem 0;        /* Üst-alt boşluk */
    padding-left: 20px;    /* Soldan iç boşluk */
}


/* FORM
------------------------------------- */
input:focus, textarea:focus, select:focus { outline: none;
    box-shadow: 0 0 0 0 transparent;
    border-color: inherit;}
/* Links */
a {text-decoration: none; color:#333;}
/* img
------------------------------------- */
img {border:none; padding:0; margin:0; display:block;}
/* btn
------------------------------------- */
button {border:none; background: none; cursor: pointer; border-radius: 5px;}
.btn {font-weight: 400; text-align: center; padding: .5rem 2rem; font-size: 1rem; line-height: 1.5; border:none; border-radius: 5px;
	transition: all .5s; cursor:pointer; margin: .5rem 0; background-color:#ddd; color:#333; margin-right:.8rem;}
  .btn:hover {color: #fff; background-color: #061d49;	border-color: #061d49; text-decoration: none;}
  .btn:focus, .btn.focus {}
  .btn.disabled, .btn:disabled {color: #fff; background-color: #aaa; border-color: #aaa;}
  .btn span{margin-right: 0;}

/* GRID
------------------------------------- */
.aContainer-full, .aContainer-genis, .aContainer-dar, .aContainer { 
	position:relative; width: 100%; margin:0 auto; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box;}
.aContainer-full {max-width:1920px;}
.aContainer-genis {max-width: 1440px;}
.aContainer-dar {max-width: 960px;}
.aContainer {max-width: 1240px;}

.aContainer-full:after, .aContainer-genis:after, .aContainer-dar:after, .aContainer:after { 
	visibility:hidden; display:block; font-size:0; content:" "; clear:both; height:0;
}
/*
flex-direction: row*: soldan sağa | row-reverse: sağdan sola | column: yukarıdan aşağı | column-reverse: aşağıdan yukarı;
flex-wrap: nowrap*:ögeler tek satırda | wrap: gerektiğinde aşağı taşır | wrap-reverse: gerektiğinde aşağıdan yukarı taşır;
flex-flow : flex-direction +  flex-wrap;

justify-content (Öğelerin yatay eksende hizası): flex-start*: Öğeler başlangıç noktasından sola dayalı | flex-end: Öğeler bitiş noktasından sağa dayalı | center | space-between: İlk öğe sola dayalı, son öğe sağa dayalı ve diğerleri ortalı | space-around: İlk ve son öğe hariç diğerlerinin arası eşit olacak şekilde | space-evenly: Tüm öğelerin arası aynı eşitlikte olacak şekilde;
align-items (Öğelerin dikey eksende hizası): stretch*: Hizalama yapmaz, öğelerin yüksekliklerini kapsayıcıya göre uzat | flex-start: yukarıya doğru | flex-end: aşağıya doğru | center: ortalı | baseline: ilk ogenin altına göre;

align-content (Çok satırlı yapılarda öğelerin diyek eksende hizası): stretch*: Öğeleri hizalamaz, yüksekliklerini uzat| flex-start | flex-end | center | space-between | space-evenly;

order (Öğelerin sıralanışını değiştirmek için. varsayılan 0): 

*/

.aRow {position:relative; float:left; width:100%; margin:0 auto; }

.aCol-1-12, .aCol-2-12, .aCol-3-12, .aCol-4-12, .aCol-5-12, .aCol-6-12, .aCol-7-12, .aCol-8-12, .aCol-9-12, .aCol-10-12, .aCol-11-12, .aCol-12-12, .aCol-1-5, .aCol-2-5, .aCol-3-5, .aCol-4-5 {
	position:relative; float:left;}
/* Özel sınıflar ile farklı genişlikler */
.aCol-1-12 {width: 8.33%;}
.aCol-2-12 {width: 16.66%;}
.aCol-3-12 {width: 25%; }
.aCol-4-12 {width: 33.33%; }
.aCol-5-12 {width: 41.66%;}
.aCol-6-12 {width: 50%;}
.aCol-7-12 {width: 58.33%;}
.aCol-8-12 {width: 66.66%;}
.aCol-9-12 {width: 75%;}
.aCol-10-12 {width: 83.33%;}
.aCol-11-12 {width: 91.66%;}
.aCol-12-12 {width: 100%;}

.aCol-1-5 {width: 20%;}
.aCol-2-5 {width: 40%;}
.aCol-3-5 {width: 60%;}
.aCol-4-5 {width: 80%;}

.aContent {position:relative; /* background:#fff; */ width: calc(100% - 32px);  margin:0px 16px; padding:0;}

.aRow:after, .aCol-1-12:after, .aCol-2-12:after, .aCol-3-12:after, .aCol-4-12:after, .aCol-5-12:after, .aCol-6-12:after, .aCol-7-12:after, .aCol-8-12:after, .aCol-9-12:after, .aCol-10-12:after, .aCol-11-12:after, .aCol-12-12:after, .aCol-1-5:after, .aCol-2-5:after, .aCol-3-5:after, .aCol-4-5:after, .aContent:after {
	visibility:hidden; display:block; font-size:0; content:" "; clear:both; height:0;}

.cFix:after {visibility:hidden; display:block; font-size:0; content:" "; clear:both; height:0;}
* html .cFix {zoom:1;} /* IE6 */ 
*:first-child+html .cFix {zoom:1;} /* IE7 */

.aClear {clear:both; padding:0 !important; margin:0 !important;}

.displayNone {display:none;}
.displayBlock {display:block;}

.page-container {/*top:-200px;*/ z-index:6; padding:16px;} 
.page-container-golge {box-shadow: 0 0 10px rgba(0, 0, 0, .05);}

@media only screen and (min-width:900px) and (max-width:1239px) {
	.aContainer, .aContainer-genis, .aContainer-dar {width: 880px;}
}
@media only screen and (min-width:600px) and (max-width:899px) {
	.aCol-1-12, .aCol-2-12, .aCol-3-12, .aCol-4-12, .aCol-5-12, .aCol-6-12, .aCol-7-12, .aCol-8-12, .aCol-9-12, .aCol-12-12, .aCol-1-5, .aCol-2-5, .aCol-3-5, .aCol-4-5 
	{width: 100%;}
	.aContainer, .aContainer-genis, .aContainer-dar {width: 580px;}
	.aContent {width: calc(100% - 16px);  margin:0px 8px;}
}
@media only screen and (min-width:0) and (max-width:599px) {
	.aCol-1-12, .aCol-2-12, .aCol-3-12, .aCol-4-12, .aCol-5-12, .aCol-6-12, .aCol-7-12, .aCol-8-12, .aCol-9-12, .aCol-12-12, .aCol-1-5, .aCol-2-5, .aCol-3-5, .aCol-4-5 
	{width: 100%;}
	.aContainer, .aContainer-genis, .aContainer-dar {width: 94%;}
	.aContent {width: calc(100% - 12px);  margin:0px 6px;}
}

/* custom img 
------------------------------------- */
.img img {object-fit: contain; max-width:100%;}
.img-k {position: relative; width: 100%; overflow: hidden; aspect-ratio: 1 / 1;}
.img-y {position: relative; width: 100%; overflow: hidden; aspect-ratio: 4 / 3;}/* yatay */
.img-d {position: relative; width: 100%; overflow: hidden; aspect-ratio: 3 / 4;}/* dikey */
.img-k img, .img-y img, .img-d img  {width: 100%; height: 100%; object-fit: contain; display: block;}

/* HEADER
------------------------------------- */
.aHeaderKap {background-color: #fff;}

.aHeaderFlex {width:100%; display:flex; justify-content: space-between; align-items:center;}
#logo {position:relative; width:260px; margin-left:16px;}
	#logo img {width:100%; padding:20px 0;}

.aSearchFormKap {position:relative; width:540px; background-color: #fff; border:1px solid #333; z-index: 11;} 
	.aSearchForm {display:flex; height:48px;} 
		.aSearchForm .input {width: calc(100% - 48px); padding: 0 1rem; margin:0; color: #333; font-size: 1rem; line-height: 2; border: none; background-color: transparent;}  
			.aSearchForm .input:focus {outline: none; box-shadow: none;}
		.aSearchForm button {width: 48px; padding: 0; margin: 0; color: #333; border: none; cursor: pointer; font-size: 1.4rem;} 
		.aSearchForm .input::placeholder {color:#333; font-weight:normal; font-style: normal; }

.aHeaderMenuKap {position: relative; margin-right:16px;}
ul.aHeaderMenu {padding: 0; margin:0; list-style: none; }
	ul.aHeaderMenu li {position: relative; color: #333; float: left; display: block; padding: 0; font-size: 2rem; line-height: 2.4rem; 
		margin: 0 0 0 16px; cursor:pointer;}
	ul.aHeaderMenu li a {margin:0; color:#333; display:block; text-decoration: none;}
	ul.aHeaderMenu li i {padding-right:5px;}
	ul.aHeaderMenu li span.menuMetin {display:none;}
	ul.aHeaderMenu li span.menuCount {position: absolute; top: -5px; right: -3px; padding: 5px; line-height: 1; font-size: .8rem; 
		background-color: #aa5707; color: #fff; border-radius: 5px;}
	ul.aHeaderMenu li:hover {color:#aa5707}
	ul.aHeaderMenu li:hover a {color:#aa5707;}
	ul.aHeaderMenu li:first-child {}
	ul.aHeaderMenu li#searchIconum {display:none;}
	ul.aHeaderMenu li#respBlokAc {display:none;}

	
@media only screen and (min-width:900px) and (max-width:1239px) {
	.aSearchFormKap {display:none; position:absolute; top:104px; width:100%; padding:10px; background-color: #ddd; border:none; box-sizing: border-box; } 
	.aSearchForm .input {border-bottom:1px solid #333;}
	ul.aHeaderMenu li#searchIconum {display:block;}
	ul.aHeaderMenu li#respBlokAc {display:block;}
}
@media only screen and (min-width:600px) and (max-width:899px) {
	#logo {width:160px; margin-left:16px;}
	.aSearchFormKap {display:none; position:absolute; top:82px; width:100%; padding:10px; background-color: #ddd; border:none; box-sizing: border-box; } 
	.aSearchForm .input {border-bottom:1px solid #333;}
	ul.aHeaderMenu li {font-size: 1.5rem; margin: 0 .5rem;}
	ul.aHeaderMenu li#searchIconum {display:block;}
	ul.aHeaderMenu li#respBlokAc {display:block;}
}
@media only screen and (min-width:0) and (max-width:599px) {
	#logo {width:136px; margin-left:16px;}
	.aSearchFormKap {display:none; position:absolute; top:76px; width:100%; padding:10px;  background-color: #ddd; border:none; box-sizing: border-box; } 
	.aSearchForm .input {border-bottom:1px solid #333;}
	ul.aHeaderMenu li {font-size: 1.4rem; margin: 0 .2rem;}
	ul.aHeaderMenu li#searchIconum {display:block;}
	ul.aHeaderMenu li#respBlokAc {display:block;}

}


.aMenuKap {background-color: #333; border-top:1px solid rgba(255, 255, 255, .1);}
.aMenuFlex {width:100%; display:flex; justify-content: center; align-items:center;}

/* ÜST MENU
------------------------------------- */
.sf-menu {position:relative; margin:0 16px; font-family: 'Barlow Condensed', sans-serif; letter-spacing:3px; font-size:1rem;}

@media only screen and (min-width:900px) and (max-width:1239px) {
	.sf-menu {display:none;}
}
@media only screen and (min-width:600px) and (max-width:899px) {
	.sf-menu {display:none;}
}
@media only screen and (min-width:0) and (max-width:599px) {
	.sf-menu {display:none;}
}

/* MEGA MENU */
.mega-kutu { background-color: #333; }
.navbar { background-color: #333; font-family: Arial, sans-serif; position: relative; }
.nav-links { list-style: none; margin: 0; padding: 0; display: flex; align-items: stretch; }
.nav-links > li { position: static; display: flex; }
.nav-links > li > a { display: flex; align-items: center; justify-content: center; color: white; padding: 0 20px; min-height: 50px; text-decoration: none; text-align: center; font-size: .9rem; position: relative; transition: background 0.3s; }
.nav-links > li > a:hover { background-color: #555; }
.nav-links > li:not(:last-child) > a::after { content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 28px; background-color: #999; }
.mega-content { display: none; position: absolute; top: 100%; left: 0; width: 100%; background-color: #f9f9f9; box-shadow: 0px 8px 16px rgba(0,0,0,0.15); z-index: 9999; }
.mega-menu:hover .mega-content { display: block; }
.row { display: flex; padding: 20px; gap: 20px; }
.column { flex: 1; }

@media only screen and (min-width:900px) and (max-width:1239px) {
	.mega-kutu {display:none;}
}
@media only screen and (min-width:600px) and (max-width:899px) {
	.mega-kutu {display:none;}
}
@media only screen and (min-width:0) and (max-width:599px) {
	.mega-kutu {display:none;}
}

/*  respBlok 
------------------------------------- */
#respBlok {
    position: fixed;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: rgba(47, 45, 56, .7);
}

.menuBlokCont {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 450px;
    max-width: 90%;
    height: 100%;
    background: rgba(47, 45, 56, 1);
    /* Kaydırma çubuğu için eklenen kısım */
    overflow-y: auto; 
    overflow-x: hidden;
    /* Mobilde daha akıcı bir kaydırma deneyimi için */
    -webkit-overflow-scrolling: touch; 
}

#respBlokKapat {
    position: absolute;
    right: 2rem;
    top: 3rem;
    margin: 0;
    padding: 0;
    color: #fff;
    cursor: pointer;
    z-index: 3;
}

#respBlokKapat span {
    font-size: 2rem;
    line-height: 2rem;
    margin: 0;
    display: block;
}

#respBlok .logo {
    position: relative;
    /* Flexbox içinde logonun sabit kalması, içeriğin kayması için flex-shrink */
    flex-shrink: 0; 
    width: 100%;
    height: 40px;
    margin: 3rem 2rem 2rem 2rem;
}

#respBlok .logo img {
    max-height: 100%;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(55deg) brightness(104%) contrast(103%);
}

ul.respMenu {position:relative; margin:0; padding:0; list-style:none;  width:100%; padding:0 2rem; margin:0; font-family: 'Barlow Condensed', sans-serif;}
	ul.respMenu li {position:relative;  margin:0; padding:0 0 0 14px; list-style:none; font-size:1.2rem; line-height:1.6;}
	ul.respMenu li:before { content: "❯"; position: absolute; left: 0; top: .8rem; font-size:.5rem; color: #fff; }
	ul.respMenu li a {margin:0; padding:0; color:#fff; text-decoration: none;}
	ul.respMenu li a:hover {text-decoration: underline;}
	ul.respMenu ul {padding-left:.5rem;}
	ul.respMenu li li a {color:#ddd; font-size:1rem;}
	ul.respMenu ul ul {display:none;}

/* SLAYTLAR
------------------------------------- */
/* slayt-ana sayfa */

#slaytim {position:relative; width:100%; max-width:1400px; padding:0; z-index:1; margin: 20px auto 0 auto; }

	.slaytImg {position:relative; padding:0; margin:0; }
	.slaytImg img {width:100%;}

	.slaytContent { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); height: auto; width: 100%; max-width: 1200px; z-index: 6; display: flex; flex-direction: column; align-items: center; justify-content: center; box-sizing: border-box; }

	/*
	SLAYT dsyGorunum slatyClass çeşidini belirliyor 
	slaytClass0 -> 0 - Başlık ve Açıklama Yok
	slaytClass1 -> 1 - Başlık ve Açıklama (Ortada)
	slaytClass2 -> 2 - Başlık ve Açıklama (Solda)
	slaytClass3 -> 3 - Başlık ve Açıklama (Sağda)
	*/
	
	.slaytContent .slaytClass0 {display:none;}
	.slaytContent .slaytClass1 { width: 50%; display: flex; flex-direction: column; justify-content: center; align-items: center; margin: 0 auto; text-align: center; }
	.slaytContent .slaytClass2 { margin-right: 50%; width: 50%; display: flex; flex-direction: column; justify-content: center; align-items: flex-end; padding-right: 5%; box-sizing: border-box; text-align: right; }
	.slaytContent .slaytClass3 { width: 50%; margin-left: 50%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-left: 5%; box-sizing: border-box; text-align: left; }
		
	.slaytContent h1 {color:#000; font-size: 2.4rem; font-weight: 500; margin-top: 1.5rem; margin-bottom:1.5rem;}
	.slaytContent p {color:#333; font-size: 1.4rem; font-weight: 500; margin-top: 0; margin-bottom:1.5rem;}
	.slaytContent a.btnSlayt {font-weight: 400; padding: .5rem 1rem; font-size: 1rem; line-height: 1.5; border:none; border-radius: 5px;
		transition: all .5s; cursor:pointer; margin-bottom:5rem; background:rgba(0,0,0,.8); color:#fff;
		/*border:1px solid #fff;*/}
	
	.owl-item.active .slaytContent {}
	.owl-item.active .slaytContent h1 {animation:1s .1s backInUp both;}
	.owl-item.active .slaytContent p {animation:2s .1s backInUp both;}
	.owl-item.active .slaytContent .btnSlayt {animation:3s .1s backInUp both;}

	#slaytim .owl-dots {display:none;}
	#slaytim .owl-nav {}
	#slaytim .owl-nav button.owl-prev, #slaytim .owl-nav button.owl-next {position:absolute; top:50%; transform:translateY(-50%); opacity:0; 
		font-size:48px; line-height:48px; 
		width:50px; height:50px; color:#ddd; background:rgba(255,255,255,.01);	
		-webkit-transition:all .3s ease; -moz-transition:all .3s ease; transition:all .3s ease; cursor:pointer;
		-webkit-border-radius:12px; -moz-border-radius:12px; -ms-border-radius:12px; -o-border-radius:12px; border-radius:12px;
		}
	#slaytim .owl-nav button.owl-prev {left:50px;}
	#slaytim .owl-nav button.owl-next {right:50px;}	
	#slaytim .owl-nav button.owl-prev:hover, #slaytim .owl-nav button.owl-next:hover {background:rgba(0,0,0,.01); color:#eee;}
	
	#slaytim:hover .owl-nav button.owl-prev {opacity:0.8; left:10px;}
	#slaytim:hover .owl-nav button.owl-next {opacity:0.8; right:10px;}

@media only screen and (min-width:900px) and (max-width:1239px) {
	.slaytImg img {width:auto; height:400px; object-fit: cover;} 
}
@media only screen and (min-width:600px) and (max-width:899px) {
	.slaytImg img {width:auto; height:320px; object-fit: cover;} 

	.slaytContent h1 {font-size: 1.4rem; margin-bottom:0.8rem;}
	.slaytContent p {font-size: 0.9rem; margin-bottom:0.8rem;}

	.slaytContent .btnSlayt {padding: .5rem .5rem; font-size: .9rem; line-height: 1.5;}
}
@media only screen and (min-width:0) and (max-width:599px) {
	.slaytImg img {width:auto; height:200px; object-fit: cover;}
	
	.slaytContent h1 {font-size: 1.4rem; margin-bottom:0.8rem;}
	.slaytContent p {font-size: 0.9rem; margin-bottom:0.8rem;}

	.slaytContent .btnSlayt {padding: .5rem .5rem; font-size: .9rem; line-height: 1.5;}
}

/* slayt - Kategori banner*/
#slaytKategori {}

#slaytKategori {position:relative; width:100%; margin-bottom:16px;}
	#slaytKategori img { /*height:500px;object-fit: cover; */ width:100%;}
	#slaytKategori .owl-dots {}
	#slaytKategori .owl-nav {display:none;}

	@media only screen and (min-width:900px) and (max-width:1239px) {
		#slaytKategori img {width:auto; height:120px; object-fit: cover;} 
	}
	@media only screen and (min-width:600px) and (max-width:899px) {
		#slaytKategori img {width:auto; height:100px; object-fit: cover;} 
	}
	@media only screen and (min-width:0) and (max-width:599px) {
		#slaytKategori img {width:auto; height:80px; object-fit: cover;} 
	}

/* -> baristaContainer
––––––––––––––– */
.baristaContainer {overflow: hidden;}

#baristaContainerContent {position:relative; margin-left:40%; margin-right:5%; width:50%; 
	display: flex; flex-direction: column; align-items:flex-end; text-align: right; z-index:3; padding:64px 32px;}
#baristaContainerContent h2 {color:#fff; text-align: right; font-size:3.6rem; line-height: 1.3;}
#baristaContainerContent p {color:#fff; font-size:1.2rem; text-align: right; font-weight:300;}
.baristaImgTop {content: ''; position: absolute; width: 100%; height:100%; background: rgba(0, 0, 0, 0.5); left: 0;  bottom: 0; right: 0; z-index:2; }
.baristaImg {position: absolute; width: 100%; height: 100%; overflow:hidden; left: 0;  bottom: 0; right: 0;}
.baristaImg img {position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }

@media only screen and (min-width:900px) and (max-width:1239px) {
  #baristaContainerContent h2 {font-size:2.8rem;}
}
@media only screen and (min-width:600px) and (max-width:899px) {
  #baristaContainerContent {margin-left:5%; margin-right:5%;  width:100%;} 
  #baristaContainerContent h2 {font-size:2.4rem;}
}
@media only screen and (min-width:0px) and (max-width:599px) {
  #baristaContainerContent {margin-left:5%; margin-right:5%;  width:100%;} 
  #baristaContainerContent h2 {font-size:2rem;}
}


.egitimOgeKap {display:flex; flex-wrap: wrap; justify-content: center; padding: 32px 0 0 0;}
	.egitimOge {display:flex; flex-wrap: wrap; align-items: flex-start; width:100%; margin-bottom:16px;}
		
	.egitimOgeImg {width:40%; font-size:1.4rem; font-weight:500; padding:10px 0;}
	.egitimOgeIcerik {width:60%;}
	.egitimOgeIcerik p {text-align: justify;}
	.egitimOgeTitle { font-size:1.8rem;}

.sca {display:flex; flex-wrap: wrap; justify-content: center; align-items: center;}
	.sca .scaImg {width:200px; padding:10px;}
		.sca .scaImg img {width:100%; }
	.sca .scaContent {width: calc(100% - 200px); text-align: justify; padding:10px; border-left:1px solid #ccc;}
	
@media only screen and (min-width:900px) and (max-width:1239px) {
#baristaContainerContent h2 {font-size:2.8rem;}
}
@media only screen and (min-width:600px) and (max-width:899px) {
	.egitimOgeImg {width:60%;}
	.egitimOgeIcerik {width:100%;}
}
@media only screen and (min-width:0px) and (max-width:599px) {
	.egitimOgeImg {width:100%;}
	.egitimOgeIcerik {width:100%;}
}

/* markalar
**************************** */
.markalarKap { background-color: #fff;}
.markalarKap .aContent {}

/* liste görünümü */
#listMarkalar {display:flex; justify-content: center; align-items: center; flex-wrap: wrap;}
	#listMarkalar .markaKutu {  position: relative;	width: 148px; height: 148px; margin: 8px; padding: 0;
		display: flex; justify-content: center; align-items: center; overflow: hidden;} 
	#listMarkalar .markaKutu img { max-width: 100%;	max-height: 100%; object-fit: cover; 
		position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index:2;}
	#listMarkalar .markaKutu span {display: block; font-size:1rem; font-weight:500;  color:#333; z-index:2; padding:.5rem; border-radius:10px; z-index:1;}

/* owl görünümü */
#owlMarkalar {margin:0; padding:0; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; } 
	#owlMarkalar .markaKutu {  position: relative;	width: 100%; height:120px;padding: 0; margin: 0;
		display: flex; justify-content: center; align-items: center; overflow: hidden; box-sizing: border-box;} 
	#owlMarkalar .markaKutu img { max-width: 80%;	max-height: 80%; object-fit: cover; 
		position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index:2;}
	#owlMarkalar .markaKutu span {display: block; font-size:1rem; font-weight:500; color:#333; z-index:2; padding:.5rem; border-radius:10px; z-index:1;}

	#owlMarkalar .owl-dots {display:none;}
	#owlMarkalar .owl-nav {}
	#owlMarkalar .owl-nav button.owl-prev, #owlMarkalar .owl-nav button.owl-next {position:absolute; top:50%; margin-top:-1rem; font-size:1.2rem; width:2rem; height:2rem; line-height:2rem;
		color:#999; cursor:pointer; }
	#owlMarkalar .owl-nav button.owl-prev {left:-.5rem;}
	#owlMarkalar .owl-nav button.owl-next {right:-.5rem;}	
	#owlMarkalar .owl-nav button.owl-prev:hover, #owlMarkalar .owl-nav button.owl-next:hover {color:#000;}

@media only screen and (min-width:900px) and (max-width:1239px) {
 
}
@media only screen and (min-width:600px) and (max-width:899px) {
	#listMarkalar .markaKutu {width: 96px; height: 96px;}
	#listMarkalar .markaKutu span {font-size:.8rem;} 

	#owlMarkalar .markaKutu span {font-size:.8rem;} 
}
@media only screen and (min-width:0) and (max-width:599px) {
	#listMarkalar .markaKutu {width: 96px; height: 96px;}
	#listMarkalar .markaKutu span {font-size:.7rem;} 

	#owlMarkalar .markaKutu span {font-size:.8rem;} 
}

/* BANNER
**************************** */
.banner-container2 {background-color: black; margin-bottom:32px; overflow: hidden;}
#banner2 {width:100%; height:220px;}
#banner2::after {content: ''; position: absolute; width: 100%; height:100%; /*background: rgba(0, 0, 0, .6);*/ background:rgba(0, 0, 0, 0.5); left: 0;  bottom: 0; right: 0; z-index:3; }
#banner2 .bannerImg {display: flex; justify-content: center; align-items: center; width: 100%; height: 100%;}
#banner2 .bannerImg img {position:relative;  text-align: center;}

#banner2 .bannerDetail {position:absolute; left: 0; right:0; bottom:0; margin:0 auto; max-width: 100%; z-index:4; display:flex; flex-direction: column; background-color: rgba(0, 0, 0, .1); border-top:1px solid rgba(255, 255, 255, .2);  }
#banner2 .bannerDetail .content-box {}

@media only screen and (min-width:900px) and (max-width:1239px) {
  #banner2 {height:200px;}
}
@media only screen and (min-width:600px) and (max-width:899px) {
  #banner2 {height:170px;}
}
@media only screen and (min-width:0) and (max-width:599px) {
  #banner2 {height:140px;}
}

/* GEZG�N
**************************** */
	ul.gezgin {float:left; margin:0;  padding:.5rem 0; list-style:none; width:100%; }
	ul.gezgin li {float:left; color:#fff; border-top:none; font-weight:400; font-size:.8rem; line-height:1; margin:5px; padding:0;}
	ul.gezgin li a {color:#eee;}
	ul.gezgin li i {color:#eee; padding:0 4px;}
	ul.gezgin li:hover a {color:#fff;}

@media only screen and (min-width:900px) and (max-width:1239px) {
}
@media only screen and (min-width:600px) and (max-width:899px) {
}
@media only screen and (min-width:0) and (max-width:599px) {
	ul.gezgin {/*display:none;*/}
}

/* SAYFA / BLOKLAR / BAŞLIKLAR / KATEGORİ MENU
------------------------------------- */
.contMarginBottom {margin-bottom:48px;}
.contMarginTop {margin-top:48px;}
.contPadding {padding-top:32px; padding-bottom:32px;}
.contPaddingBottom {padding-bottom:32px;}
.contPaddingTop {padding-top:32px;}

.solBlok {}
.sagBlok {}

.modTitleSol , .modTitleOrta {position:relative; width:100%;}
.modTitleSol h2, .modTitleSol h3 {position:relative; margin-bottom:48px; font-size:2rem; color:#333;}
.modTitleSol h2 a, .modTitleSol h3 a {color:#333;}
.modTitleSol h2::after, .modTitleSol h3::after {position:absolute; content:""; background:#061d49; bottom:-10px; left:0; width:100px; height:3px;}


.modTitleOrta h2, .modTitleOrta h3  {margin-bottom:48px; text-align:center; font-size:2rem; color:#333;}
.modTitleOrta h2 a, .modTitleOrta h3 a {color:#333;}
.modTitleOrta h2::after, .modTitleOrta h3::after {position:absolute; content:""; background:#061d49; bottom:-20px; left:50%; margin-left:-50px; width:100px; height:3px;}

@media only screen and (min-width:900px) and (max-width:1239px) {
.modTitleSol h2, .modTitleSol h3 {font-size:1.6rem;}
.modTitleOrta h2, .modTitleOrta h3  {font-size:1.6rem;}
}
@media only screen and (min-width:600px) and (max-width:899px) {
}
@media only screen and (min-width:0) and (max-width:599px) {
.modTitleSol h2, .modTitleSol h3 {font-size:1.4rem;}
.modTitleOrta h2, .modTitleOrta h3  {font-size:1.4rem;}
}

/* navAccerdion Menu (js-> navAccordion -> navAccordion.css dahil edildi */
.mainNav {background: #f5f5f5;	width: 100%;}
	/* First Level */
	.mainNav ul {margin: 0;	padding: 0;	list-style: none; border-bottom: 1px solid #ddd;}
	.mainNav ul li {border-top: 1px solid #ddd; margin:0; padding:0;}
	.mainNav ul li a {color: #333;	display: block;	font-size: 1rem; line-height: 1.5; padding: 8px 3px; text-decoration: none;}
	.mainNav ul li a:hover {color:#000; text-decoration: underline;}
		/* Second Level */
		.mainNav ul ul {border-bottom: none;}
		.mainNav ul ul li {border-top: 1px solid #ddd;	background: #ddd;}
		.mainNav ul ul li a {color: #666;display: block; font-size: .9rem;	padding: 6px 0px 6px 6px;}
		.mainNav ul ul li a:hover {color:#000;}
				/* Third Level */
		.mainNav ul ul ul {border-top:1px solid #f1f1f1;}
		.mainNav ul ul ul li {border:none;	background: #ddd;}
		.mainNav ul ul ul li a {padding: 4px 0px 4px 9px;}
	/* Accordion Button */
	ul li.has-subnav .accordion-btn {color:#333; }
	ul li.has-subnav .accordion-btn:hover {font-size:1.5rem;}
	.mainNav ul li a.aktif {text-decoration: underline;}

@media only screen and (min-width:900px) and (max-width:1239px) {

}
@media only screen and (min-width:600px) and (max-width:899px) {
}
@media only screen and (min-width:0) and (max-width:599px) {
	.contMarginBottom {margin-bottom:12px;}
}

/* KATEGORİ SAYFASI
------------------------------------- */

.yanBlok {margin-bottom:16px; padding:10px; background-color: #f5f5f5; box-sizing: border-box; width:100%;}
.yanBlok h3 {font-size:1rem; margin-bottom:10px; padding:10px; background-color: #222;  color:#fff;}
.yanBlok h3 a {color:#fff;}

/* kategori filtre ve sıralama */
.katFiltSira { position:relative; width:100%; margin-bottom:12px; background-color: #f5f5f5; }
#yanUrunKategAc, #yanUrunFiltreAc {display:none; float:left; border:none; font-size:.9rem; padding:5px; line-height:1.5rem; margin: 5px; background:#ddd; color:#333; border-radius:2px;}
#yanUrunKategKapat, #yanUrunFiltreKapat {display:none; position:absolute; top:16px; right:10px; text-align:center; font-size:1.2rem; width:1.6rem; height:1.6rem; line-height:1.6rem; cursor:pointer; background:#061d49; color:#fff; border-radius:50%;}


form#urunSiraM {position:relative; float:right; margin:0; padding:0;  padding:5px;}

form#urunSiraM select {position:relative; float:right; box-shadow:none; background-color:rgba(255,255,255,1); background-image:none; z-index:2; 
	border:medium none;	border-radius:3px; padding:8px;	border:1px solid #e4e4e4; margin-left:10px; width: 140px;}
form#urunSiraM select#orderBy {width: 140px;}
form#urunSiraM select#cat-limit {width: 40px;}
form#urunSiraM select#katGorunumTipi {width: 80px;}

#buttonList, #buttonListLite {font-size:1.4rem; line-height:1.8rem; padding:0 .2rem; border-radius: 0; margin-top:.2rem; color:#aa5707; }
#buttonList.active, #buttonListLite.active {color:#061d49; }

/* TREE MENU */
.tree-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Metin Kaymasına Uygun Hizalama */
.tree-menu li {
    display: flex !important;
    align-items: flex-start !important; 
    padding: 6px 0 !important; 
}

/* Simge Ayarları */
.tree-icon {
    display: inline-block;
    width: 20px; 
    color: #ccc;
    font-family: monospace;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 4px; /* Metnin ilk satırıyla hizalama */
}

/* Metin Alanı */
.tree-menu li a {
    text-decoration: none;
    line-height: 1.4;
    word-break: break-word;
    display: inline-block;
}

/* --- RENK VE MERDİVEN HİYERARŞİSİ --- */

/* 1. SEVİYE: SİYAH */
.level-0 a { 
    font-size: 1.1rem; 
    color: #000 !important; 
    font-weight: bold; 
}
.level-1 { margin-left: 0 !important; } 
.level-1 a { 
    font-size: 1rem; 
    color: #000 !important; 
    font-weight: 600; 
}

/* 2. SEVİYE: MAVİ */
.level-2 { margin-left: 20px !important; } 
.level-2 a { 
    font-size: 0.95rem; 
    color: #007bff !important; /* Canlı Mavi */
    font-weight: 500;
}

/* 3. SEVİYE: TURUNCU */
.level-3 { margin-left: 40px !important; } 
.level-3 a { 
    font-size: 0.9rem; 
    color: #ff6600 !important; /* Turuncu */
    font-weight: 500;
}

/* 4. SEVİYE VE SONRASI: GRİ */
.level-4 { margin-left: 60px !important; } 
.level-4 a { 
    font-size: 0.85rem; 
    color: #666 !important; 
}

/* --- ÖZEL DURUMLAR --- */

/* Seçili Kategori */
.current-selected a {
    text-decoration: underline !important;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

/* Genel Hover */
.tree-menu li a:hover {
    opacity: 0.8;
    text-decoration: underline;
}


/* #homeCatBoxContainer */
#homeCatBoxContainer {background: #f5f5f5; padding-top:24px; padding-bottom:24px; margin-top:24px; margin-bottom:24px; }

#homeCatBoxContainer .modTitleOrta h2, #homeCatBoxContainer .modTitleOrta h3 {color:#333;}
#homeCatBoxContainer .modTitleOrta h2 a, #homeCatBoxContainer .modTitleOrta h3 a {color:#333;}
#homeCatBoxContainer .modTitleOrta h2::after, #homeCatBoxContainer .modTitleOrta h3::after {background:#333;}

/* kategori kutu */
#kategKutuList {display:flex; justify-content: center; flex-wrap: wrap; width:100%;}

.kategKutu {text-align:center; margin-bottom:24px;}
	.kategKutu .kategKutuFlex {width:100%; display: flex; flex-direction: column; box-shadow: 0 0 10px rgba(0, 0, 0, .05);}
	.kategKutu .img-k {border-bottom: 3px solid #061d49;}
	.ktCapt {display:flex; flex-direction: column; align-items: center; justify-content: center; padding:0; margin-bottom:.2rem; height:4rem; background-color: #f5f5f5; } 
	.ktTitleCapt {color:#333; font-family: 'Barlow Condensed', sans-serif; line-height:2rem; font-size:1.5rem; font-weight:500; 
		display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow:hidden;}
	.ktTitleCapt a {color:#333;}
	.ktTitleCapt a:hover {color:#000;}
	.ktAltKat {width:100%;}
	.ktAltKat ul { margin: 0 0 0 12px; padding: 0; display: flex; flex-direction: column;}
	.ktAltKat ul li {text-align: left;}
	.ktAltKat ul li a {}

#kategKutuOwl {margin:0; padding:0; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box;}
	#kategKutuOwl .owl-dots {display:none;}
	#kategKutuOwl .owl-nav {}
	#kategKutuOwl .owl-nav button.owl-prev, #kategKutuOwl .owl-nav button.owl-next {position:absolute; top:50%; margin-top:-1rem; font-size:1.2rem; width:2rem; height:2rem; line-height:2rem;
		color:#999; cursor:pointer; }
	#kategKutuOwl .owl-nav button.owl-prev {left:-.5rem;}
	#kategKutuOwl .owl-nav button.owl-next {right:-.5rem;}	
	#kategKutuOwl .owl-nav button.owl-prev:hover, #kategKutuOwl .owl-nav button.owl-next:hover {color:#000;}
#kategKutuOwl .kategKutu {width:100%;}


/* urunKutu */
.urunKutu {text-align:center; margin-bottom:24px; }
    .urunKutu .urunKutuFlex {display: flex; flex-direction: column; background-color: #fff; box-shadow: 0 0 10px rgba(0, 0, 0, .05);}
	.urunKutu .img-k {margin-bottom:1.5rem; }
	.urunKutu .ukCapt {display:flex; flex-direction: column; align-items: center; padding:0; margin-bottom:0.5rem; height:3rem; } 
	.urunKutu .ukTitleCapt {color:#333; font-family: 'Barlow Condensed', sans-serif; line-height:1.5rem; font-size:1.2rem; font-weight:500; 
		display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow:hidden; padding:0 .5rem;}
	.urunKutu .ukTitleCapt a {color:#333;}
	.urunKutu .ukTitleCapt a:hover {color:#000;}
	.urunKutu .ukEtiketleri {position:absolute; right:0; top:5px; display: flex; flex-direction: column; z-index:3}
		.urunKutu .ukEtiketleri span {font-size:.7rem; padding:.2rem .4rem; color:#fff; margin-bottom:.2rem;}
		.urunKutu .ukEtiketleri span.aUrunYeni {background-color: #0c7242;}
		.urunKutu .ukEtiketleri span.aUrunIndirim {background-color: #d36708;}

	.urunKutu .aFiyatlarKutu {display:flex; flex-direction: column; align-items: center; justify-content: center; padding:1rem 0 2rem 0; height:3rem; 
		border-bottom:1px solid #eee; box-sizing: border-box;}
		.urunKutu .aFiyat {font-weight: 500;}
		.urunKutu .aPiyasaFiyat {font-weight: 100; color: #999; text-decoration: line-through;}
		.urunKutu .aFiyatKDVHaric {font-weight: 400; color:#333;}
		.urunKutu .aFiyatTL {font-weight: 500; color: #061d49;}
		.urunKutu p {text-align: center; margin-bottom:0; font-size:1rem; line-height:1.5rem;} 
		.urunKutu .aSorunuz {border:none; font-weight: 500; color:#061d49;}
			.urunKutu .aSorunuz:hover {color: #333;}	
	.urunKutu .aButonlarKutu {}
		.urunKutu button.aSepeteEkle {border:none; font-weight: 500; color:#333;}
			.urunKutu button.aSepeteEkle:hover {color: #061d49;}	

/* urunKutuLite */
.urunKutuLite {margin-bottom:12px; }
	.urunKutuLite .urunKutuLiteFlex {width:100%; display:flex; border:1px solid #eee; box-shadow: 0 0 10px rgba(0, 0, 0, .05);}
	
	.ukImg {position:relative; width: 200px;
		display: flex; flex-direction: row; justify-content: center; /* Dikeyde ortalamak için */}
		
		.urunKutuLite .img {position:relative; width: 100%; padding:12px; border-right:1px solid #f5f5f5;}
	
	.ukCaptFiyat {position:relative; width: calc(100% - 200px); padding:12px; display:flex; flex-direction: column; }
		
		
	.urunKutuLite .ukCapt {position:relative; width: 100%; display: flex; flex-direction: column; margin-bottom:0.5rem;} 
		.urunKutuLite .ukTitleCapt {color:#333; font-family: 'Barlow Condensed', sans-serif; line-height:1.5rem; font-size:1.2rem; font-weight:500;}
		.urunKutuLite .ukTitleCapt a {color:#333;}
		.urunKutuLite .ukTitleCapt a:hover {color:#000;}
		.urunKutuLite .ukEtiketleri {position:relative;}
			.urunKutuLite .ukEtiketleri span {float:left; font-size:.7rem; padding:.2rem .4rem; color:#fff; margin:.2rem .2rem 0 0;}
			.urunKutuLite .ukEtiketleri span.aUrunYeni {}
			.urunKutuLite .ukEtiketleri span.aUrunIndirim {}

		.urunKutuLite .aFiyatlarKutu {position:relative; padding:1rem 0 2rem 0; box-sizing: border-box;}
			.urunKutuLite .aFiyat {font-weight: 500;}
			.urunKutuLite .aPiyasaFiyat {font-weight: 100; color: #999; text-decoration: line-through;}
			.urunKutuLite .aFiyatKDVHaric {font-weight: 400; color:#333;}
			.urunKutuLite .aFiyatTL {font-weight: 500; color: #061d49;}
			.urunKutuLite p {text-align: left; margin-bottom:0; font-size:1rem; line-height:1.5rem;} 
			.urunKutuLite .aSorunuz {border:none; font-weight: 500; color:#061d49;}
				.urunKutuLite .aSorunuz:hover {color: #333;}	
			.urunKutuLite button.aSepeteEkle {border:none; background-color: #061d49; font-size:.9rem; color:#fff; padding:5px; margin:3px; transition: all .5s; margin:0;}
				.urunKutuLite button.aSepeteEkle:hover {background-color: #000;}	

 
/* Sayfalama */
.paginationKap {Width:100%; display: flex; justify-content:center;}
ul.pagination {list-style:none; margin:16px 0; float:right; }
	ul.pagination li {display:inline;  background:none; padding:0; list-style:none;}
	ul.pagination li a {display:block; float:left; padding:.3rem .6rem; margin-left:.5rem; border:1px solid #333;}
	ul.pagination li.current a {background:#333; color:#fff;}	
	ul.pagination li a:hover {background:#000; color:#fff; 		
		-webkit-transition:all 0.2s ease-in-out; -moz-transition:all 0.2s ease-in-out; -o-transition:all 0.2s ease-in-out; -ms-transition:all 0.2s ease-in-out;	transition:all 0.2s ease-in-out;}

/* filtre */
.filtrem {padding:0;}
	.filtreBaslik {color:#333; text-decoration:none; padding:0;}
	.filtreOzellik {color:#666; margin-bottom:12px; font-size:.9rem;}
	.filterContainer {margin:0; padding:0;}	

@media only screen and (min-width:900px) and (max-width:1239px) {
	.urunKutu {width:33.3%;}
	.kategKutu {width:33.3%;}
	.ktCapt {height:3rem;} 
	.ktTitleCapt {line-height:1.5rem; font-size:1.2rem;}
}
@media only screen and (min-width:600px) and (max-width:899px) {
	.yanBlok {border: 2px solid #ddd;}
	
	.yanUrunKateg, .yanUrunFiltre {display:none;}
    #yanUrunKategKapat, #yanUrunFiltreKapat {display:block;}
	#yanUrunKategAc, #yanUrunFiltreAc {display:block;}

	.urunKutu {width:33.3%;}
	.urunKutu .ukCapt {height:2.4rem;} 
	.urunKutu .ukTitleCapt {line-height:1.2rem; font-size:1rem;}
	.urunKutu .aFiyatlarKutu {height:2.4rem;}
	.urunKutu p {line-height:1.2rem;  font-size:0.9rem;} 

	.urunKutuLite {}
	.urunKutuLite p {line-height:1.2rem;  font-size:0.9rem;} 
	.urunKutuLite .ukCapt {height:2.4rem;} 
	.urunKutuLite .ukTitleCapt {line-height:1.2rem; font-size:1rem;}

	.kategKutu {width:33.33%;}
	.ktCapt {height:3rem;} 
	.ktTitleCapt {line-height:1.5rem; font-size:1.2rem;}
}
@media only screen and (min-width:0) and (max-width:599px) {
	.yanBlok {border: 2px solid #ddd;}
	
	form#urunSiraM select#orderBy {width: 100px;}
	
	.yanUrunKateg, .yanUrunFiltre {display:none;}
    #yanUrunKategKapat, #yanUrunFiltreKapat {display:block;}
	#yanUrunKategAc, #yanUrunFiltreAc {display:block;}

	.urunKutu {width:50%;}
	.urunKutu .ukCapt {height:2.4rem;} 
	.urunKutu .ukTitleCapt {line-height:1.2rem; font-size:1rem;}
	.urunKutu .aFiyatlarKutu {height:2.4rem;}
	.urunKutu p {line-height:1.2rem;  font-size:0.9rem;} 

	.urunKutuLite {}
	.urunKutuLite p {line-height:1.2rem;  font-size:0.9rem;} 
	.urunKutuLite .ukCapt {height:2.4rem;} 
	.urunKutuLite .ukTitleCapt {line-height:1.2rem; font-size:1rem;}

	.kategKutu {width:50%;}
	.ktCapt {height:3rem;} 
	.ktTitleCapt {line-height:1.5rem; font-size:1.2rem;}
}

/* ÜRÜN DETAY SAYFASI
------------------------------------- */
.urunGaleri {position:relative; float:left; width:50%;}
	
	/* galeri 2  (�r�n resimleri 2 - lib.php -> urunKucukResimGoster2 ) */
	.resimKucuk {position:relative; margin:0; padding:0; width:15%; margin-right:2%; float:left;}
		.gall {list-style:none; position:relative; margin:0; padding:0; width:100%; float:left; max-height:400px; overflow:auto;}
		.gall li {position:relative; float:left; width:100%; margin-bottom:10px; border:1px solid rgba(221,221,221,1);	 border-radius: 3px;
			box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; cursor: pointer; overflow: hidden;}
		.gall li img{width:100%; height: 100%; padding:5%; display: block; cursor:pointer; 
			box-sizing: border-box; aspect-ratio: 1 / 1; object-fit: contain; object-position: center;}	
		.gall li.current {border:2px solid #061d49;}
				
		.gall-content{position:relative; display:none; margin:0; padding:0;}
		.gall-content img{}
		.gall-content.current{display:inherit;}	
	
	.resimBuyuk{position:relative; float:right; width:83%; margin:0; padding:0; text-align:center; 
		box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; cursor: pointer; overflow: hidden;}
		.resimBuyuk img{width:100%; height: 100%; padding:5%; display: block; cursor:pointer; 
			box-sizing: border-box; aspect-ratio: 1 / 1; object-fit: contain; object-position: center;}


.urunDetay {position:relative; float:left; width:50%;}
	.urunDetay .aMarka {}
	.urunDetay .aFiyatlarKutu {}
		.urunDetay .aIndirimOran {}
		.urunDetay .aFiyat {}
		.urunDetay .aPiyasaFiyat {font-weight: 100; color: #999; margin-left:1rem; text-decoration: line-through;}
		.urunDetay .aFiyatKDVHaric {}
		.urunDetay .aFiyatTL {}
		.urunDetay .aSorunuz {border:none; background-color: #061d49; color:#fff; padding:10px; transition: all .5s; margin:4px 4px 4px 0; width:120px; border-radius:5px;}
			.urunDetay .aSorunuz:hover {background-color: #000;}	
	.urunDetay .aButonlarKutu {}
		.urunDetay button.aSepeteEkle {border:none; background-color: #061d49; color:#fff; padding:10px; transition: all .5s; margin:4px 4px 4px 0; width:120px;}
			.urunDetay button.aSepeteEkle:hover {background-color: #000;}
		.urunDetay button.aHemenAl {border:none; background-color:#2f2d38; color:#fff; padding:10px; transition: all .5s; margin:4px 4px 4px 0; width:120px;}
			.urunDetay button.aHemenAl:hover {background-color: #000;}

	.urunEtiketleri {position:relative; width:100%; float:left; margin-top:16px; margin-bottom:10px;}
	.urunEtiketleri img {border:1px solid #ddd; float:left; margin:0 10px 10px 0; padding:5px; border-radius: 3px;}
	.urunEtiketleri span {border:1px solid #ddd; color:#c11e2c; font-size:1rem; line-height:1.2rem; padding:.7rem 0; width:150px; text-align:center; font-weight:500; margin:0 10px 0 0; float:left; border-radius: 3px;}
		.yerli-uretim {display:none;} /* shopphp orijinal yerli görseli gizleniyor */

	.aKullSecenekleri {background-color: #f9f9f9; margin-bottom:10px; padding:16px;}

	.aAdetKap {float:left; margin:8px 4px 4px 0;}
	.aMinus, .aPlus {float:left; height:20px; line-height:20px; width:20px; text-align:center; display:block; font-size:16px; margin:10px 2px 0 2px;  padding:0; background-color: #ddd; border:1px solid #ddd; border-radius:50%;}
	.urunSepeteEkleAdet {float:left; width:36px; height:36px; line-height:30px; margin:0; border:3px solid #ddd; border-radius:3px; text-align: center;}



	.tel-whatsapp {position:relative; margin-bottom:20px; width:100%;}
			.hizliButon {float:left; border:1px solid #eee;  padding: 1rem 2rem; margin:0 10px 10px 0; border:1px solid #ddd; border-radius: 5px; background-color: #f5f5f5; color:#333; font-size:1.2rem; font-weight:500;}
				.hizliWhatsapp {color: #198754;}
				.hizliTel {color: #333;}


.urunTab {position:relative; float:left; width:100%;}
	/* Style the tab */
	ul.tabs {margin:20px 0 0 0; padding:0; list-style:none; text-align:center;}
	ul.tabs li { position:relative; font-size:1.2rem; font-weight:700; color:#555; display:inline-block; padding:10px; margin:0 5px; cursor:pointer; border-bottom:2px solid #ccc;}
	ul.tabs li i {margin-right:6px;}
	ul.tabs li.secili {color:#333; border-bottom: 2px solid #333; }
	ul.tabs li.secili:after {position:absolute; width:2rem; height:2rem; right:50%; margin-right:-1rem; bottom:-2rem; line-height:2rem; font-size:2rem;
		content:"\203A"; transform: rotate(90deg); color:#333; }	
	.tab-icerik {float:left; width:100%; display:none; /* border:1px solid #ddd; */ padding:30px 0;}
	.tab-icerik.secili {display:block;}

	.tab-icerik ul { list-style: circle inside; }
	.tab-icerik ol { list-style: decimal inside; }

@media only screen and (min-width:900px) and (max-width:1239px) {

}
@media only screen and (min-width:600px) and (max-width:899px) {
	.urunGaleri {width:100%;}
	.urunDetay {width:100%;}
}
@media only screen and (min-width:0) and (max-width:599px) {
	.urunGaleri {width:100%;}
	.urunDetay {width:100%;}
}

/* BLOG/MAKALE (MakaleListShow-MakaleGoster)
------------------------------------- */
/* MakaleListShow */
.makaleKutu {margin-bottom:12px;}
	.makaleKutu .makaleKutuFlex {width:100%; display:flex; border:1px solid #eee; box-shadow: 0 0 10px rgba(0, 0, 0, .05);}
		.makaleKutu .markaImg {position: relative; width: 240px; height: 240px;
			display: flex;	align-items: center; justify-content: center; overflow: hidden; background-color: #333;}
		.makaleKutu .markaImg img {position: absolute; top: 50%; left: 50%;	transform: translate(-50%, -50%); min-width: 100%; min-height: 100%; 
			object-fit: cover;}
		.makaleKutu .makaleContent {position:relative; width: calc(100% - 240px); padding:12px; 
				display: flex; flex-direction: column;} 
                .makaleKutu .makaleContent p {text-align: justify;}
				.makaleKutu h2 {color:#333; font-family: 'Barlow Condensed', sans-serif; line-height:1.5rem; font-size:1.6rem; font-weight:500;}
				.makaleKutu h2 a {color:#333;}
				.makaleKutu h2 a:hover {color:#000;}
				.makaleKutu p {text-align: justify;}
				.makaleKutu .btn {border: none; background-color: #061d49; font-size: 0.9rem; color: #fff;
					padding: 5px 10px; margin: 10px 0; transition: all 0.5s;	display: inline-block; align-self: flex-start; }
				.makaleKutu .btn:hover {background-color: #000;}
/* MakaleGoster */
.makaleGosterFlex {display: flex; flex-direction: column;}
	.makaleGosterImg {width:300px; }
		.makaleGosterImg img {width:100%; }
	.makaleGosterDetay {width: 100%; padding:16px 0;}
	.makaleGosterDetay p {text-align: justify;}

@media only screen and (min-width:900px) and (max-width:1239px) {
}
@media only screen and (min-width:600px) and (max-width:899px) {
    .makaleKutu .makaleKutuFlex {flex-direction: column;}
        .makaleKutu .markaImg {width: 240px; height: 240px;}
    .makaleKutu .makaleContent {width: 100%;} 
}
@media only screen and (min-width:0) and (max-width:599px) {
    .makaleKutu .makaleKutuFlex {flex-direction: column;}
        .makaleKutu .markaImg {width: 240px; height: 240px;}
    .makaleKutu .makaleContent {width: 100%;} 
}

/* HABER (HaberListShow-HaberGoster)
------------------------------------- */
/* 
HaberListShow
.sp-haber-ic-list shopphp hbar listelemede otomatik bu classı kullanıyor. temaya göre güncelledik. */
ul.sp-haber-ic-list {display:flex; flex-wrap: wrap; justify-content: center; border-top:1px solid #ccc; border-bottom:1px solid #ccc; 
    padding: 32px 0 0 0;}
ul.sp-haber-ic-list li.flexHaberOge {width:25%; margin-bottom:16px; border-bottom:none;}
ul.sp-haber-ic-list li.flexHaberOge .aContent{display:flex; flex-direction: column; align-items: center;}
ul.sp-haber-ic-list li.flexHaberOge .flexHaberOgeTit {font-size:1rem; font-weight:500; padding:10px 0;}
ul.sp-haber-ic-list li.flexHaberOge .flexHaberOgeDesc {font-size:.9rem;}

/* HaberGoster */
.haberGosterFlex {display: flex; flex-direction: column;}
	.haberGosterImg {width:300px; }
		.haberGosterImg img {width:100%; }
	.haberGosterDetay {width: 100%; padding:16px 0;}
	.haberGosterDetay p {text-align: justify;}

@media only screen and (min-width:900px) and (max-width:1239px) {
}
@media only screen and (min-width:600px) and (max-width:899px) {
    ul.sp-haber-ic-list li.flexHaberOge {width:50%;}
}
@media only screen and (min-width:0) and (max-width:599px) {
    ul.sp-haber-ic-list li.flexHaberOge {width:80%;}
}

/* Galeri - flex
----------------------------*/
.flexGalKap {display:flex; flex-wrap: wrap; justify-content: center; border-top:1px solid #ccc; border-bottom:1px solid #ccc; padding: 32px 0 0 0;}
.flexGalOge {width:25%; margin-bottom:16px;}
.flexGalOge .aContent{display:flex; flex-direction: column; align-items: center;}
.flexGalOge .flexGalOgeTit {font-size:1rem; font-weight:500; padding:10px 0;}
.flexGalOge .flexGalOgeDesc {font-size:.9rem;}

@media only screen and (min-width:900px) and (max-width:1239px) {
}
@media only screen and (min-width:600px) and (max-width:899px) {
	.flexGalOge {width:50%;}
}
@media only screen and (min-width:0) and (max-width:599px) {
	.flexGalOge {width:80%;}
}

/* OWL
------------------------------------- */
/* owl Ürün */	
.owlUrun {width: calc(100% - 32px); margin:16px; padding-top:24px; padding-bottom:24px;}
.owlUrun .owl-nav {}

.owlUrun .owl-nav button.owl-prev, .owlUrun .owl-nav button.owl-next {position:absolute; top:40%; font-size:16px; width:30px; height:30px;  line-height:30px;
	background:rgba(0,0,0,0.5); color:#fff; cursor:pointer; border-radius:50%;}
.owlUrun .owl-nav button.owl-prev {left:-10px;}
.owlUrun .owl-nav button.owl-next {right:-10px;}	
.owlUrun .owl-nav button.owl-prev:hover, .owlUrun .owl-nav button.owl-next:hover {background:rgba(0,0,0,0.7); color:#fff;}

.owlUrun .urunKutu {width:100%; margin-bottom:0;}

.modulSecmeUrunlerList { display: flex; flex-wrap: wrap; justify-content: center; width:100%;}
.modulSecmeUrunlerList .urunKutu {width:25%;}

@media only screen and (min-width:900px) and (max-width:1239px) {
}
@media only screen and (min-width:600px) and (max-width:899px) {
	.modulSecmeUrunlerList .urunKutu {width:33.3%;}
}
@media only screen and (min-width:0) and (max-width:599px) {
	.modulSecmeUrunlerList .urunKutu {width:50%;}
}

/* -> iconBox (ikonlu kutular)
––––––––––––––– */
.iconBoxContainer{ margin-top:24px;  margin-bottom:24px;  padding-top:16px;}
.iconBox {z-index:5; margin-bottom:16px;}
.iconBox .aContent {display: flex; flex-direction: column; align-items: center; text-align: center; background-color: #fff; padding-top:3rem; padding-bottom:1.5rem; box-shadow: 0 0 10px rgba(0, 0, 0, .03);}
.iconBox i {width:5rem; height:5rem; font-size:3rem; line-height: 5rem; border:2px solid #333; border-radius:100%; transition: all .3s;}
.iconBoxTitle {margin:1rem 0; color:#333; line-height:1.8rem; font-size:1.4rem; font-weight:500; font-family: 'Barlow Condensed', sans-serif;}
.iconBoxTitle a {color:#333;}
.iconBoxTitleP {font-size:1rem; font-weight: 300; margin-bottom:0; color:#666;}
.iconBox:hover i {animation:1s swing; background-color: #061d49; color:#fff; border-color: #fff;}

@media only screen and (min-width:900px) and (max-width:1239px) {

}
@media only screen and (min-width:600px) and (max-width:899px) {
  .iconBox {width:50%;}
}
@media only screen and (min-width:0) and (max-width:599px) {
  .iconBox {width:50%;}
}


/* ->  footerTopContainer
––––––––––––––– */
.footerTopContainer {background-color: #eee; padding-top:16px; padding-bottom:16px;}
.footerTopContainer .row {justify-content: center;}
.footerTopContainer .col-3 {min-width:300px;}
.footerTopContainer .col-3:last-child {}
.fContactIkon {position:relative; width:100%; margin:0; display:flex; align-items: center; padding-top:16px; padding-bottom:16px;}
.fContactIkon a {color:#333;}
.fContactIkon i {position:relative; font-size:2.4rem; min-width:4rem; line-height:4rem; color:#333; text-align: center; transition: all .3s; border-right:1px solid rgba(0, 0, 0, .2);}
.fContactIkon p {font-size:1rem; padding:.2rem .2rem .2rem 1rem; font-weight:300; margin-bottom:0; color:#333;}
.fContactIkon:hover i {/*background-color: #333; color:#fff;*/}	


@media only screen and (min-width:900px) and (max-width:1239px) {

}
@media only screen and (min-width:600px) and (max-width:899px) {

}
@media only screen and (min-width:0) and (max-width:599px) {
  .footerTopContainer .col-3 {width:300px;}
}

/* FOOTER
------------------------------------- */
.footerKap {background: #333; /* background: #333 url('images/bg-img8.jpg') top center no-repeat; */}
.footer {padding:48px 0 24px 0;}

.footer .aCol-3-12, .footer .aCol-1-12 {margin-bottom:12px;}

.footerLogo {width:160px; margin-bottom:24px; filter: brightness(0) invert(1);}
.footP {font-size:1rem; color:#eee;}

.footer h3 {position:relative; color:#fff; font-weight:500; margin-bottom:2rem; line-height:1.5;}
.footer h3 a {color:#fff;}
.footer h3:after {position:absolute; content:""; background:#fff; bottom:-12px; left:0; width:32px; height:3px;}

.footerFlex {width:100%; display: flex; flex-direction: column; margin-bottom:24px;}

ul.footerList {position:relative; margin:0; padding:0; list-style:none; }
ul.footerList li {position:relative;  margin:0; padding:0 0 0 14px; list-style:none; font-size:0.9rem; line-height:2; font-weight:300;}
ul.footerList li:before { content: "❯"; position: absolute; left: 0; top: .5rem; font-size:.5rem; color: #eee;}
ul.footerList li a {margin:0; padding:0; color:#eee; text-decoration: none;}
ul.footerList li a:hover {text-decoration: underline;}
ul.footerList li li a {color:#aaa; font-size:.8rem;}

.footerAlt {border-top:1px solid rgba(255,255,255,.3); padding:12px 0;}
.footerAlt p {margin:0; text-align:center; color: #eee;}
.footerAlt p a {color: #eee;}


/* SHOPPHP
------------------------------------- */
/* kategori */
.filterCheck {text-transform: none;} /* filterlerdeki küçük harfe dönüştürmeyi kaldırmak için */

/* sepet */
.basket-button .green-button {border:1px solid #061d49 !important;	background:#061d49 !important;}
.basket-button .green-button:hover {border:1px solid #000 !important;	background:#000 !important;}
.basket-right ul li.tutar span {color:#061d49 !important;}
.basket-title div span {color: #061d49 !important;}
.cat-slider-fiyat {color: #061d49 !important;}
.hizli-button-siparis {background-color:#061d49;}

/* login */
#divUyeGirisForm button.userLoginBtn {background-color: #061d49 !important;}
.register-tab label.active {background-color: #061d49 !important;}

/* ürün detay */
table.urunSecimTable {border:none;}
	table.urunSecimTable th.UrunSecenekleri {display:none;}	
	table.urunSecimTable tr {border:none;}
	table.urunSecimTable div.UrunSecenekleriHeader {border:none;}
	table.urunSecimTable ul.urunSecim {border:none;}

	table.urunSecimTable ul.urunSecim li {}
	table.urunSecimTable ul.urunSecim li.urun-var-resim {  width: unset; min-height: unset;}
	table.urunSecimTable ul.urunSecim li.selected {border-color: #061d49 !important;}
	table.urunSecimTable ul.urunSecim li.urun-var-resim img {display:none;}

	table.urunSecimTable td {border:none; padding:3px 3px 3px 0px;}
	table.urunSecimTable td select{border:none; padding:3px; -webkit-border-radius:3px;	-moz-border-radius:3px; border-radius:3px; }

.taksitGosterim {width: 32.3%; margin-right:1%; margin-bottom:10px;}
.taksit-container {width: 100%;}
.genel_taksitDiv {font-weight:500; font-size:.9rem; }

@media only screen and (min-width:900px) and (max-width:1239px) {

}
@media only screen and (min-width:600px) and (max-width:899px) {
	.taksitGosterim {width: 49%; margin-right:1%;}
}
@media only screen and (min-width:0) and (max-width:599px) {
	.taksitGosterim {width: 100%; margin-right:0;}
}

.ikonKap { background: #333; }
    .ikonOgeler {display: flex; justify-content: center; align-items: center; flex-wrap: wrap; width:100%;}
    .ikonOge {width:240px; padding:2rem 1rem; display:flex; flex-direction: column; align-items: center; justify-content: center;}
    .ikonOge i {text-align:center; font-size:3rem; margin-bottom:1rem; color:#fff;}
    .ikonOge span.ikonTitle {text-align:center; margin-bottom:.5rem; font-weight:500; color:#fff;}
    .ikonOge span.ikonDesc {text-align:center; font-weight:300; font-size: .9rem; color:#eee;}

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

@media only screen and (min-width:900px) and (max-width:1239px) {

}
@media only screen and (min-width:600px) and (max-width:899px) {

}
@media only screen and (min-width:0) and (max-width:599px) {
    .ikonOge {width:50%;}
}

/* BACKGROUND - COLOR 
------------------------------------- */
.bg-blue {background-color: #4096ca;}
.bg-red {background-color: #d62323;}
.bg-orange {background-color: #fd4b37;}
.bg-yellow {background-color: #ffc107;}
.bg-green {background-color: #0c7242;}
.bg-white {background-color: #fff;}
.bg-gray {background-color: #6c757d;}
.bg-gray-dark {background-color: #343a40;}
.bg-success {background-color: #198754;}
.bg-info {background-color: #0dcaf0;}
.bg-warning {background-color: #ffc107;}
.bg-danger {background-color: #dc3545;}
.bg-light {background-color: #eee;}
.bg-dark {background-color: #212529;}
.bg-black {background-color: #000;}
.bg-brown {background-color: #974a02;}

.bg-primary {background-color: #aa5707;}
.bg-secondary {background-color: #061d49;}
.bg-third {background-color: #d89823;}  
.bg-fourth {background-color: rgb(40, 50, 59, 1);}
.bg-transparent {background-color: rgba(0,0,0,0)}

.color-blue {color: #4096ca;}
.color-red {color: #d62323;}
.color-orange {color: #fd4b37;}
.color-yellow {color: #ffc107;}
.color-green {color: #198754;}
.color-white {color: #fff;}
.color-gray {color: #6c757d;}
.color-gray-dark {color: #343a40;}
.color-success {color: #198754;}
.color-info {color: #0dcaf0;}
.color-warning {color: #ffc107;}
.color-danger {color: #dc3545;}
.color-light {color: #eee;}
.color-dark {color: #212529;}
.color-black {color:#000;}
.color-brown {color: #974a02;}

.color-primary {color: #aa5707;}
.color-secondary {color: #061d49;}
.color-third {color: #f1ce72;} 
.color-fourth {color: rgb(40, 50, 59, 1);}

