	@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

*{
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
}
:root
{
	--fontBoyut: 16px;
}
body 
{
    font-family: Arial, sans-serif;
    justify-content: center;
    align-items: center;
	display: flex;
	flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
	overflow-x:visible;
    }
hr
{
	box-shadow: 3px 3px 10px rgba(0,0,0,0.20);
	width: 100%;
}
.bilgi {
    display: flex;
	justify-content: flex-start; 
    width: 100%;
    flex-wrap: wrap;
    padding: 3px;
    background-color: yellow;
}

.bilgi a {
    display: flex;
    text-decoration: none;
    color: black;
    padding-left: 10px;
}
.ustikon
{
	display: flex;
}
.ustikon img 
{
    width: 20px;
}


/*Menubar*/

.menubar
{
	display: flex;
	position: relative;
	top: 0;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	background-color: #6A6A6A;
	padding: 5px 20px;
	color: white;
	transition: all 0.3s ease;
	z-index: 9;
}


.menubar.sabit
{
	position: fixed;
    top: 0; 
	width: 100%;
	z-index: 9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.menubar .logo img
{
	max-width: 120px;
	background-color: transparent;
}
.menubar .menuLink
{
	display: flex;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	
}
.menubar .menuLink li{
	padding: 10px 20px;
	border-radius: 25px;
	transition: background-color 0.7s ease;
}
.menubar .menuLink a
{
	color: white;
	text-decoration: none;
	
	font-size:calc(var(--fontBoyut) + 2px);
	
}
.menubar .menuLink li:hover
{
	background-color: #939793;
	
}
/*Açılır menü*/
.menubar .acilirListe
{
	position: relative;
	
}
.menubar .altMenuLink
{
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #6A6A6A;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.menubar .altMenuLink li
{
	padding: 10px 20px;
}
.menubar .altMenuLink li:hover
{
	background-color: #939793;
}

.menubar .acilirListe:hover .altMenuLink
{
	display: block;
	border-radius: 0 0 25px 25px;
	z-index: 1;
	
}
.menuSimge
{
	display: none;
	font-size: 30px;
	cursor: pointer;
}
.menuLink
{
	display: flex;
}

    /* Yan menü stili */
    .side-menu 
{
    width: 100%;
 	max-width: 500px;
    height: 100%;
    background-color: rgba(0,0,0,0.60);
    color: white;
    position: fixed;
	top: 0;
	margin: 0;
	padding: 0;
    right: -500px; /* Başlangıç pozisyonu */
    transition: right 0.4s ease;
	z-index: 10;
    }
.kayanMenuic
{
	background-color: black;
}
.kapatSimge
{
	width: 100%;
	float: left;
	padding-top: 5px;
	padding-left: 5px;
	cursor: pointer;
	font-size:calc(var(--fontBoyut) + 8px);
}
.side-menu img
{
	width: 100%;
	margin: 0;
	padding: 0;
}


    /* Menü içindeki bağlantılar */
    .side-menu a {
      display: block;
      color: white;
	  background-color: rgba(0,0,0,0.70);
      text-decoration: none;
	  margin: 0;
      padding: 10px ;
      border-bottom: 1px solid #757171;
    }

    .side-menu a:hover {
      background-color: rgba(53,53,53,1.00);
    }

    /* Alt menü stili */
.submenu {
    display: block;
    max-height: 0; /* Başlangıçta kapalı */
    overflow: hidden; /* Taşan içerikleri gizle */
    transition: max-height 0.4s ease;/* Yükseklik geçişi animasyonu */
}

.submenu a {
    padding-left: 30px; /* Alt menü içeriğini hizalamak için */
}

/* Alt menü açık durumu */
.has-submenu.open .submenu {
    max-height: 300px; /* Açık durumdaki maksimum yükseklik */
}

    /* Açık menü durumu */
    .side-menu.open {
      right: 0;
    }

/* Simge için küçük bir ikon */
    .submenu-icon {
      margin-left: 10px;
      font-size: 12px;
    }

.slaytAlani {
    position: relative;
    margin: 10px auto;
    width: 80%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: auto; /* İçeriğe göre ayarlanır */
    aspect-ratio: 16 / 9; /* (isteğe bağlı) Oranı sabit tutmak için */
}
.resimAlani {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Geçiş animasyonu eklendi */
}


.slide 
{
    position: relative;
    min-width: 100%;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* (isteğe bağlı) daha şık kırpma için */
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeZoom {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes slideRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Ortak yapı */
.aciklama {
    position: relative;
    bottom: 35%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    text-align: center;
    font-size: calc(var(--fontBoyut) + 6px);
    opacity: 0;
}

.active {
    opacity: 1;
}

/* Slayt bazlı animasyonlar */
.anim-slide-up    { animation: slideUp 1s ease-in-out; }
.anim-slide-left  { animation: slideLeft 1s ease-in-out; }
.anim-fade-zoom   { animation: fadeZoom 1s ease-in-out; }
.anim-slide-right { animation: slideRight 1s ease-in-out; }



.butonKutusu 
{
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
	
}

.btn {
    background-color: rgba(126,122,122,0.50);
    color: white;
    border: none;
    padding: 20px 20px;
    cursor: pointer;
    font-size: 16px;
}
#left
{
	border-radius: 0% 10% 10% 0%;
}
#right
{
	border-radius: 10% 0% 0% 10%;
}

.btn:hover 
{
    background-color: rgba(0, 0, 0, 0.8);
}

.tanitimSol
{
	width: 100%;
	padding:10px 20px;
	font-size:calc(var(--fontBoyut) + 3px);
	text-align: justify;
	transform: translateX(-20px);
	background-color: aliceblue;
}
.tanitimSag
{
	width: 100%;
	padding:5px 20px;
	color: black;
	font-weight: 600;
	font: bold;
	font-size:calc(var(--fontBoyut) + 4px);
	transform: translateX(20px);
	background-color: aliceblue;
}
.tanitimSol, .tanitimSag
{
	opacity: 0;
	transition: opacity 1.0s ease, transform 1.0s ease;
}
.tanitimSol.gorundu
{
	opacity: 1;
	transform: translateX(0);
}
 .tanitimSag.gorundu
{
	opacity: 1;
	transform: translateX(0);
}
.marka
{
	font: bold;
	font-weight: 700;
	color: rgba(247,110,0,1.00);
}
.metinGirdisi
{
	text-indent: 20px;
}
.kategoriAlani {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
	margin: 0;
	padding-left: 10px;
	padding-right: 10px;
	
}
.kategoriAlani a
{
	text-decoration: none;
	color: black;
	display: flex;
	
	width: calc(50% - 20px); /* Yan yana iki eleman için */
}
.kategoriKutusu {
	text-align: center;
    display: flex;
    flex-direction: row;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
	background-color: rgba(230,251,254,1.00);
	transition: all 0.3s ease;
}
.kategoriKutusu:hover {
    transform: scale(1.05); /* Biraz büyüme efekti */
    background-color: #CCFFC4; /* Arka plan rengi değişimi */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Daha belirgin gölge */
}
.resimKutusu {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
	margin: 10px;
	transform: translateX(-20px);
}
.resimKutusu img
{
	max-width: 200px;
}
.bilgiAlani {
	flex-direction: column;
	display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
	min-width: 200px;
	margin: 10px;
	font-size:calc(var(--fontBoyut) + 2px);
	transform: translateX(20px);
}
.kategoriBaslik
{
	margin-bottom: 10px;
	width: 100%;
	color: rgba(255,126,0,1.00);
}

/* Animasyon başlangıç durumları */
.resimKutusu, .bilgiAlani{
    opacity: 0; /* Başlangıçta görünmez */
     /* Varsayılan konum */
    transition: opacity 1.0s ease, transform 1.0s ease; /* Geçiş efekti */
}

/* Resim Kutusu için animasyon */
.resimKutusu.gorundu {
    transform: translateX(0px); /* Soldan sağa kayma */
    opacity: 1; /* Görünür hale gelir */
}

/* Bilgi Alanı için animasyon */
.bilgiAlani.gorundu {
    transform: translateX(0px); /* Sağdan sola kayma */
    opacity: 1; /* Görünür hale gelir */
}

.yorumAlani {
  overflow: hidden;
  width: 100%;
  background: #f9f9f9;
  padding: 10px;
  margin: 0;
  text-align: left;
}
.yorumBaslik
{
	font-size: calc(var(--fontBoyut) + 2px);
	color: rgba(120,118,118,1.00)
}
.yorumSlaytWrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.yorumSlaytAlani {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: max-content;
}

.yorumSlayt {
  flex: 0 0 auto;
  width: 300px;
  text-align: center;
  font-size: 1.1em;
  padding: 10px;
  margin: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background: #fff;
  box-sizing: border-box;
}

.yorumSlayt img
{
	width: 100%;
}
.yorumSlayt span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #555;
}

section
{
	padding: 0px 10px;
	margin: 0px 10px;
	text-align: center;
	justify-content: space-between;
	align-content: center;
}
ul, ol
{
	padding: 0px 20px;
}
.metinKutusu
{
	max-width: 300px;
	max-height: 250px;
	background-color: rgba(250,240,227,1.00);
	font-size:calc(var(--fontBoyut) + 5px);
	overflow: hidden;
	margin: 10px;
	padding: 10px;
	padding-bottom: 30px;
	display: inline-block;
	position: relative;
	text-align: left;
	border: 1px solid;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	transition: transform 0.8s ease, opacity 0.9s ease, max-height 0.3s ease-in-out;
	opacity: 0; /* Başlangıçta görünmez */
    transform: translateY(50px); /* Altta başlar */
}
	.metinKutusu.acik {
    max-height: 2000px; /* Yeterince büyük bir değer */
}
.visible 
{
    opacity: 1; /* Görünür hale gelir */
    transform: translateY(0); /* Normal pozisyon */
}
.devamini_oku, .devamini_kapat
{
    color: red;
	background-color:rgba(250,240,227,1.00);
    cursor: pointer;
    text-decoration: none;
	position: absolute;
    bottom: 10px;
    right: 10px;
	border: none;
}
.devamini_kapat
{
	display: none;
}

@keyframes whatsappanimasyonu {
    0% { transform: rotate(0deg); }
	76% { transform: rotate(0deg); }
	79% { transform: rotate(40deg); }
    82% { transform: rotate(-40deg); }
	85% { transform: rotate(40deg); }
    88% { transform: rotate(-40deg); }
    91% { transform: rotate(40deg); }
    94% { transform: rotate(-40deg); }
    97% { transform: rotate(40deg); }
    100% { transform: rotate(-40deg); }
}

.whatsappicon
{
	max-width: 40px;
	min-width: 25px;
	max-height: 40px;
	min-height: 25px;
	position: fixed;
	left: 2%;
	bottom: 5%;
	animation: whatsappanimasyonu 3s infinite;
	z-index: 99;
}
.whatsappicon img
{
	width: 100%;
}

footer
{
	width: 100%;
	font-size:calc(var(--fontBoyut) + 0px);
	color: white;
	background-color: black;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#footerLogo
{
	max-width: 250px;
	
}
footer a
{
	text-decoration: none;
	color: white;
	margin: 3px;
}
footer a:hover
{
	transform: translateX(2px);
	color: red;
}
footer h4
{
	text-decoration: underline;
	color: gray;
}
.footerKutu
{
	max-width: 300px;
	display: flex;
	flex-direction: column;
	padding: 10px;
	margin: 10px;
	
}
.footerKutu img
{
	width: 20px;
	transform: translateY(5px);
	margin-right: 5px;
}
small
{
	width: 100%;
	text-align: center;
	margin-bottom: 10px;
}
/*Ürünler stil alanı*/
.cihazAlani {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .urunKategoriBaslik {
        width: 100%;
        text-align: left;
        margin: 5px;
        color: rgba(255,126,0,1.00);
    }

.urunKutusu 
{
    max-width: 300px;
    flex: 1;
    min-width: 250px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

    .urunKutusu img {
     	width: 100%;
    	border-radius: 10px;
    	transition: transform 0.3s ease-in-out;
		z-index: 1;
    }
    .urunKutusu h4 {
       	margin-top: 5px;
		z-index: 9;
    }

    .urunKutusu ul {
		width: 100%;
		padding: 5px;
        text-align: left;
        padding-left: 20px;
		border: 1px solid;
		border-radius: 5px;
		font-size: calc(var(--fontBoyut) + 0px);
		background-color: rgba(238,229,217,1.00);
		list-style: none;
		
    }
 .urunKutusu ul img
{
	width: calc(var(--fontBoyut) - 2px);
	transform: translateY(1px);
	margin-right: 1px;
}
    .urunKutusu a {
        display: inline-block;
        margin-top: 10px;
        padding: 8px 12px;
        background-color: red;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .urunKutusu a:hover {
        background-color: darkred;
    }

.urunKutusu:hover .urunResmi {
    transform: scale(1.1); /* Resmi %10 büyüt */
}
.urunModeli
{
	display: block;
	font-size: calc(var(--fontBoyut) + 0px);
	color: rgba(67,66,66,1.00);
	margin-bottom: 5px;
	z-index: 9;
}

.iletisim
{
	background-color: rgba(214,214,214,1.00);
	width: 100%;
	height: 100vh;
	flex: 1;
	margin: 0;
	padding: 0;
}
.iletisimKutusu {
    display: block;
    max-width: 1000px;
	margin: 0px auto;
	padding: 20px;
    justify-content: center;
	font-size:calc(var(--fontBoyut) + 4px);
	
}

.iletisimKutusu img {
    display: block;
    margin: 10px auto;
    max-width: 150px;
	border-radius: 50%;
	justify-content: center;
}

.iletisimKutusu a {
   
    margin-top: 10px;
	text-decoration: none;
	color: blue;
}

.iletisimKutusu a:hover
{
	color: red;
	transform: translateX(3px);
}
.haritaPenceresi {
    width:100%;
	height: 500px;
	
}

#insta, #face
{
	display: flex;
	justify-content: center;

}

#insta img, #face img
{
	margin: 0 5px;
	display: inline-block;
}
/* Hakkımızda css değerleri */
.hakkimizdaAlani
{
	flex: 1
}
.hakkimizdaBilgi
{
	width: 100%;
	display: block;
	text-align: justify;
	padding: 20px;
	margin: 0;
}
#hakkimidaSlaytAlani {
  width: 80%;
  max-width: 1200px;
  aspect-ratio: 16 / 9; /* Mobil uyumlu, otomatik yükseklik verir */
  margin: 10px auto;
  position: relative;
  overflow: hidden;
  background-color: black;
}

.hakkimizdaSlayt {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.hakkimizdaSlayt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


    .visible {
      opacity: 1;
    }

    /* Animasyonlar */
    @keyframes rotateIn {
      0% { transform: rotate(-180deg) scale(0); opacity: 0; }
      100% { transform: rotate(0) scale(1); opacity: 1; }
    }

    @keyframes zoomSlideIn {
      0% { transform: translateY(-50%) scale(0.5); opacity: 0; }
      100% { transform: translateY(0) scale(1); opacity: 1; }
    }
  @keyframes zoomSlideUp {
      0% { transform: translateY(50%) scale(0.5); opacity: 0; }
      100% { transform: translateY(0) scale(1); opacity: 1; }
    }

    @keyframes flipInY {
      0% { transform: perspective(600px) rotateY(90deg); opacity: 0; }
      100% { transform: perspective(600px) rotateY(0deg); opacity: 1; }
    }

    @keyframes blurFadeIn {
      0% { filter: blur(20px); opacity: 0; }
      100% { filter: blur(0); opacity: 1; }
    }

    @keyframes bounceIn {
      0% { transform: scale(0.3); opacity: 0; }
      50% { transform: scale(1.05); opacity: 1; }
      70% { transform: scale(0.95); }
      100% { transform: scale(1); }
    }
/* Dalgalanma efekti*/
@keyframes rippleEffect {
  0% { transform: scale(0.8); opacity: 0.5; filter: blur(5px); }
  50% { transform: scale(1.1); opacity: 1; filter: blur(0px); }
  100% { transform: scale(1); }
}

/* Spiral döndürme */
@keyframes spinIn {
  0% { transform: rotate(360deg) scale(0); opacity: 0; }
  100% { transform: rotate(0) scale(1); opacity: 1; }
}

/* Derinlik perspektifi*/
@keyframes depthZoom {
  0% { transform: perspective(800px) translateZ(-500px); opacity: 0; }
  100% { transform: perspective(800px) translateZ(0px); opacity: 1; }
}

/*Kenarlardan süzülme*/
@keyframes slideEdge {
  0% { transform: translateY(-100px) scale(0.8); opacity: 0; }
  50% { transform: translateY(0) scale(1.05); opacity: 1; }
  100% { transform: translateY(0) scale(1); }
}
/*
.ripple {
  animation: rippleEffect 1s ease-in-out forwards;
}
.spin {
  animation: spinIn 1.2s ease-in-out forwards;
}
.depth {
  animation: depthZoom 1s ease-in-out forwards;
}
.slideEdge {
  animation: slideEdge 1s ease-out forwards;
}
*/
/*Hata Sayfası*/
.hata
{
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	flex: 1;
	background-color: antiquewhite;
}
.hata h1
{
	font-weight: 600;
	font-size: calc(var(--fontBoyut) + 24px);
	color: red;
}
/* Detay Sayfaları css değerleri */
.detaySayfasi
{
	flex: 1;
}
.urunDetaylari
{
	width: 100%;
	height: auto;
	min-height: 500px;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	justify-content: center;
	display: none;
	
}
.urunDetaylari a
{
	text-decoration: none;
}
.detayResim
{
	width: 45%;
	padding: 20px;
}
.detayBilgi
{
	width: 50%;
	padding: 20px;
	text-align: justify;
}

.detayResim img
{
	width: 100%;
	max-width: 400px;
}
.detayBilgi p
{
	text-indent: 20px;
}
.geriButon {
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #444;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: block;
  font-size: 16px;
}

.geriButon:hover {
  background-color: #666;
}

.geriGit
{
	position: fixed;
	right: 20px;padding: 5px;
	margin-top: 10px;
	color: black;
	background-color:rgba(214,214,214,0.50);
	font-size: calc(var(--fontBoyut) + 6px);
	cursor: pointer;
	transition: transform 1s ease;
}
.geriGit:hover
{
	color: red;
	transform: scale(1.3);
}




