/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-y: visible;  
    overflow-x: hidden;
}

.page-box3 {
  width: 100%;
  height: 340px; /* Resim yüksekliği + padding */
  overflow: hidden;
  background-color: #111;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.slider-track {
  display: flex;
  width: fit-content;
  animation: slide 60s linear infinite;
  gap: 20px;
  will-change: transform; /* Performans iyileştirme */
}

.slider-track img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}
.slider-track img:hover {
  transform: scale(1.05);
}

.page-box3:hover .slider-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .slider-track img {
    width: 200px;
    height: 200px;
  }

  .page-box3 {
    height: 240px; /* mobilde daha kısa */
    
  }
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}



/* İKONLAR*/
.icon {
    background-color: black;
    height: 40px;
    display: flex;
    align-items: center; /* Dikeyde ortalama */
    justify-content: space-between; /* h1 ve ikonlar arasında alan bırakma */
    padding: 0 10px; /* Sağ ve sol tarafta biraz boşluk bırakma */
    
}

.icon h1 {
    font-size: 15px;
    color: white;
    font-family: "Courgette", cursive; 
    margin: 0; /* Varsayılan margin'i kaldırma */
    margin-left: 30px;
}

.icons {
    display: flex;
    align-items: center; /* İkonları dikeyde ortalama */
}

.icons img {
    width: 25px;
    height: 25px;
    margin-right: 10px; /* İkonlar arasında boşluk bırakma */
    cursor: pointer;   
    transition: transform 0.3s ease; /* Hover efekti için geçiş animasyonu */
}

.icons img:hover {
    transform: scale(1.5); /* Fare üzerine gelindiğinde büyüme efekti */
    animation: shake 0.5s ease; /* `shake` animasyonunu 0.5 saniye süresince uygula */
}

#icon2 {
    width: 30px;
    height: 30px;
}

#icon3 {
    width: 23px;
    height: 23px;
}

/* Mobil uyumlu ayarlamalar */
@media screen and (max-width: 768px) {
    .icon {
        height: 5%;
        flex-direction: row;
        align-items: center;
    }

    .icon h1 {
        font-size: 10px;
        margin-left: 0%;
        
    }

    .icons {
        flex-direction: row;
        flex-wrap:nowrap;
        justify-content: center;
    }

    .icons img {
        width: 20px;
        height: 20px;
        margin: 5px;
    }

    #icon2 {
        width: 25px;
        height: 25px;
    }

    #icon3 {
        width: 20px;
        height: 20px;
    }
}

/*BAŞLIK*/
.animate-charcter{
    text-transform: uppercase;
    background-image: linear-gradient(-225deg,
    gray 0%,
    black 29%,
    white 67%,
    black 100%
    );

    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 5s linear;
    display: inline-block;
    font-size: 60px;
    font-family:Georgia, 'Times New Roman', Times, serif;    
    font-style: normal;
    letter-spacing: 3px;   
    position: absolute;
    left: 3%;     
    top: 100px;
    
    text-shadow: 2px 2px 4px rgba(254, 254, 254, 0.5); /* 2px sağa, 2px aşağı, 4px bulanıklık, yarı saydam siyah */
    text-align: center;
}

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

/*VİDEO*/
#headvideo{
    margin: 0;
    padding: 0;
    /* İçeriği tam ekrana yaymak için */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 900px;
    /* Videonun genişliği ve yüksekliği */
    width: 100%;
    object-fit: cover;
    /* Videoyu arka plan yap */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
   
    


}

.musaıttır{
    
    font-size: 15px;
    font-family: "Courgette", cursive;    
    font-style: normal;
    letter-spacing: 3px;   
    position: relative;
    left: 100px;     
    top: 390px;
    color: white; /* Açık gri renkli yazı */
    text-shadow: 2px 2px 4px rgba(254, 254, 254, 0.5); /* 2px sağa, 2px aşağı, 4px bulanıklık, yarı saydam siyah */
}

header nav ul {
    list-style-type: none;
    position: absolute;
    left: 730px;
    top: 50px;
    margin: 0;
    padding: 0;
    text-align: center;
    
    
    
    
}

header nav ul li {
    margin-right: 35px;
    vertical-align: middle;
    display: inline-block;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

header nav ul li:hover {
    background-color: #565656;
    /* Arka fon rengi değişimi */
    opacity: 0.5;
    
}

header nav ul li a{
        color: #191717;
        font-size: 18px;
        font-family:Arial, Helvetica, sans-serif;
        text-decoration:solid;
        text-shadow: 4px 4px 0px rgb(176, 171, 171);
        
        
        
    }

/* Mobil uyumlu ayarlamalar */
@media screen and (max-width: 768px) {
    .animate-charcter {
        font-size: 150%;
        left: 0%;
        top: 100px;
        letter-spacing: 2px;
        position: relative;
        
    }

    #headvideo {
        width: 100vw;
        height: 55vh;
    }
    
  .musaıttır {
  font-size: 11px;
  position: relative;
  top: 150px; /* Aşağı doğru 50px kaydır */
  left: 5px;   /* Yatay kaydırma yok */
}


    header nav ul {
        left: 50%;
        top: 20px;
        display: flex;
        flex-direction: row;
        align-items: end;
        
    }

    header nav ul li {
        margin-right: 0;
        margin-bottom: 20px;
        
        
    }

    header nav ul li a{
        color: #191717;
        font-size: 13px;
        font-family:Arial, Helvetica, sans-serif;
        text-decoration:solid;
        text-shadow: 4px 4px 0px rgb(176, 171, 171);
        
        
        
    }
    }

    .circle-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
     /* Yuvarlakların sayfanın üst kısmından biraz aşağıda olmasını sağlar */
    align-items: center;
    animation: circleAnimation 7s ease infinite;
    text-decoration-color: antiquewhite;
    font-family: "Courgette", cursive;
    font-size: larger;
    margin-top: 10px;
    margin-bottom: 0;
   

    }
   
    .circle {
    width: 250px;
    height: 400px;            
    margin: 0 8px; /* Yuvarlaklar arası boşluk */
    display: flex;
    margin-left: 30px;
    z-index: 10; 
    opacity: 0;
    animation: circleFadeIn 1s forwards;
    border-style:solid;
    border-bottom: none;
    border-color: gray;
    background-image: url(Resimler/gölge.jpg);
    
    
    
    }

.circle img {
   
    
    height: 350px;    
    z-index: 10;
    position: relative;
    right: 0px;
    
}

@keyframes fadeInAnimation {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes circleFadeIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
} 

.circle2 {
    animation: circleFadeIn 1s ease 3.5s forwards;
    left: 150px;
   
    
    
}

.circle3 {
    animation: circleFadeIn 1s ease 4s forwards;
    left: 200px;
}

.circle4 {
    animation: circleFadeIn 1s ease 4.5s forwards;
    left: 250px;
    
}

.circle5 {
    animation: circleFadeIn 1s ease 5s forwards;
    left: 300px;
}

.circle6 {
    animation: circleFadeIn 1s ease 5.5s forwards;
    left: 350px;
    
}
@keyframes circleAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
@media screen and (max-width: 700px) {
    .circle-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: -10px;
        
        margin-bottom: 0px;
        padding: 0 10px;
        background-color: #121212;
        border-top: none;
    }

    .circle {
        width: 250px;
        height: 250px;
        border-radius: 30% 0%;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f0f0f0;
        font-size: 12px;
    }

    .circle img {
        width: 100%;
        height: 100%;
        border-radius: 40%;
        object-fit: cover;
    }

    /* Çapraz hizalama: sırayla sağa ve sola */
    .circle2 { align-self: flex-start;}
    .circle3 { align-self: flex-end; }
    .circle4 { align-self: flex-start; }
    .circle5 { align-self: flex-end; }
    .circle6 { align-self: flex-start; }
}

.animate-charcter2
{
    text-transform: uppercase;
    background-image: linear-gradient(
    -225deg,
    #69696a 0%,
    #302f31 29%,
    #1c1c1c 67%,
    #000000 100%
    );
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    display: inline-block;
    letter-spacing: 5px;
    font-size: 22px;
    display: flex;  
    justify-content: center; 
    align-items: center; 
    margin-top: 50px;
    margin-bottom: 0px;
    font-family: 'Courgette', cursive;



}

@keyframes textclip {
  to {
    background-position: 00% center;
  }
}

/* Mobil uyumlu ayarlamalar */
@media screen and (max-width : 700px) {
    .animate-charcter2 {
        font-size: 13px; /* Font boyutunu mobil için küçült */
        letter-spacing: 3px; /* Harf aralığını mobil için küçült */
        margin-top: 20px; /* Üstten boşluk mobil cihazlarda azalt */  
    }
}

  .kampanya {
        background-color: #f5f1f1;
        position: relative; /* Kapsayıcı için göreli konumlandırma */
        margin-top: 800px; /* Üstten boşluk mobil cihazlarda azalt */
        width: 60%; /* Resmi kapsayıcıya sığacak şekilde yeniden boyutlandırır */
        height: 100px; /* Yüksekliği genişlikle orantılı olarak ayarlar */
        border-radius: 0% 35% 5% 35%; /* Kenarların yuvarlatılması */
     }
      .kampanyatext {
        color: rgb(171, 168, 170);
        text-shadow: 0px 0px 0px;
        margin-left: 0%;
        display: block; /* Resmin etrafındaki boşlukları kaldırır */
        font-size: 10px; /* Resmi kapsayıcıya sığacak şekilde yeniden boyutlandırır */
      }
    
      
      .kampanyap {
        position: absolute; /* Metni resmin üzerine yerleştirmek için mutlak konumlandırma */
        margin-top: 0%; /* Dikeyde ortalama */
        left: 50%; /* Yatayda ortalama */
        transform: translate(-50%, -50%); /* Metni tam merkeze taşır */
        color: white; /* Yazı rengini beyaz yapar */
        font-size: 12px; /* Yazı tipi boyutu */
        font-weight: bold; /* Yazı tipi kalınlığı */
        text-align: center; /* Metni ortalar */
        background-color: rgba(0, 0, 0, 0.6); /* Yarı saydam arka plan rengi */
        border-radius: 0% 30%; /* Kenarların yuvarlatılması */
        font-family: 'Courgette', cursive;
        width: 100%;
        height: 70%;
    
      }
  

  @media screen and ( max-width: 700px ) {
      
     .kampanya {
        background-color: #f5f1f1;
        position: relative; /* Kapsayıcı için göreli konumlandırma */
        margin-top: 220px; /* Üstten boşluk mobil cihazlarda azalt */
        margin-bottom: 0%;
        width: 70%; /* Resmi kapsayıcıya sığacak şekilde yeniden boyutlandırır */
        height: 100px; /* Yüksekliği genişlikle orantılı olarak ayarlar */
        border-radius: 0% 20% 5% 35%; /* Kenarların yuvarlatılması */
     }
      .kampanyatext {
        color: rgb(171, 168, 170);
        text-shadow: 0px 0px 0px;
        margin-left: 10%;
        display: block; /* Resmin etrafındaki boşlukları kaldırır */
        font-size: 10px; /* Resmi kapsayıcıya sığacak şekilde yeniden boyutlandırır */
      }
    
      
      .kampanyap {
        position: absolute; /* Metni resmin üzerine yerleştirmek için mutlak konumlandırma */
        margin-top: 12%; /* Dikeyde ortalama */
        left: 50%; /* Yatayda ortalama */
        transform: translate(-50%, -50%); /* Metni tam merkeze taşır */
        color: white; /* Yazı rengini beyaz yapar */
        font-size: 12px; /* Yazı tipi boyutu */
        font-weight: bold; /* Yazı tipi kalınlığı */
        text-align: center; /* Metni ortalar */
        background-color: rgba(0, 0, 0, 0.6); /* Yarı saydam arka plan rengi */
        border-radius: 0% 30%; /* Kenarların yuvarlatılması */
        font-family: 'Courgette', cursive;
        width: 100%;
        height: 70%;
    
      }
  
    
  }
  
.tablo-saatler h1 {
    font-size: 20px;
    color: white;
    font-family: "Courgette", cursive;
    text-align: end;
    background-color: #000000;  
}
.tablo-saatler{
    position: relative;
    margin-top: 0;
}
.calisma-saatleri {
    position: relative;
    z-index: 2;  
    width: 100%;
    height: 250px;
    top: 0;
    bottom: 0;   
    background-color: black; /* Yarı saydam siyah arka plan */
    
    
}

.calisma-saatleri th, .calisma-saatleri td {
    padding: 15px;   
    border-style: none;
    color: white;
    font-family: "Courgette", cursive;
}

.calisma-saatleri th {
   margin-top: 30px;
   font-size: 20px;
   opacity: 0.6;
    
}

.calisma-saatleri td {

    background-position: center;
    background-color: #565656;  
    font-size: 18px;
    text-align: center;
    
}

@media screen and (max-width: 700px) {
  
    .tablo-saatler h1 {
        font-size: 10px; /* Font boyutunu mobil için küçült */
        margin-left: 0px; /* Sol boşluğu azalt */
        text-align: end;
        padding: 5px; margin-top: 10px;
    }

    .calisma-saatleri th, .calisma-saatleri td {
        padding: 0px; /* Hücre içi boşlukları azalt */
        font-size: 11px; /* Font boyutunu küçült */
    }

    .calisma-saatleri {          
        height: 5vh; /* Yüksekliği otomatik ayarla */   
    }
}

.iletisimtablo {
    position: absolute;
    margin-top: 190px; /*   Video üzerinde dikey ortalamak için */
    left: 75%; /* Video üzerinde yatay ortalamak için */
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    font-family: "Courgette", cursive;
    z-index: 10; /* Videonun üzerinde gözükecek şekilde yüksek bir z-index değeri */
    text-align: left;
    display: flex;
    align-items: center;
 
    
  
}
#iletisimtable td img {
    vertical-align: middle; /* Resimleri metinle hizalama */
    margin-right: 10px; /* Resim ve metin arasına boşluk */
}
.iletisimtablo th{
    text-align: center;
    letter-spacing: 4px;
}
.hakkimizdatablo th{
    text-align: center;
    letter-spacing: 4px;
}

.hakkimizdatablo {
    position: absolute;
    margin-top: 200px;   /*Video üzerinde dikey ortalamak için */
    left: 35%; /* Video üzerinde yatay ortalamak için */
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    font-family: "Courgette", cursive;
    z-index: 10; /* Videonun üzerinde gözükecek şekilde yüksek bir z-index değeri */
    text-align: center;
    
}

#iletisimicon{
    width: 30px;   
} 
#iletisimiconi{
    width: 35px;
}

/* Mobil uyumlu ayarlamalar */
@media screen and (max-width: 700px) {
  .iletisimtablo, .hakkimizdatablo {
        position: relative; /* Pozisyonu göreceli yap */
        margin-top: 0px; /* Üstten boşluğu azalt */
        left: 80px;
        transform: translateX(-35%); /* Sadece yatayda ortala */
        font-size: 10px; /* Font boyutunu küçült */
        bottom: 20%;
        width: 80%; /* Genişliği artır */
       
    }
 
    #iletisimtable td img {
        width: 15px; /* İkonların genişliğini küçült */
        margin-right: 3px; /* Resim ve metin arasındaki boşluğu azalt */
    }

    #iletisimicon, #iletisimiconi {
        width: 15px; /* İkon genişliğini küçült */
    }
}

.end-container {
    height: 500px;
    background-image: url(Resimler/113.jpg);
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 20px 0;
    width: 100%; 
    background-repeat: no-repeat;
    background-size: 100% auto;
    
 }
 
.end-container th{
    opacity: 0.5;
    padding: 10px;   
}

footer {
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 30;
}

footer p {
    margin: 0;
    padding: 0;
    font-size: 0.9em;
    z-index: 11;
    font-family: "Courgette", cursive;
}     

.phone-button {
    position: fixed;
    bottom: 20px;
    right: 60px;
    background-color: #565656;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 6px 10px rgba(255, 255, 255, 0.2);
    font-size: 16px;
    text-align: left;
    z-index: 30;
}

.phone-button a {
    color: white;
    text-decoration: none;
    font-family: "Courgette", cursive;
}

#phoneNumber{
    position: fixed;
    bottom: 20px;
    right: 0px;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 90px;
    z-index: 10;
    padding-left: 15px;
    animation: shake 5s infinite; /* `shake` animasyonunu 5 saniye süresince sonsuz tekrarla */

}


@keyframes shake {
    0% { transform: translateX(0); } /* Başlangıç pozisyonu */
    25% { transform: translateX(-10px) rotate(0); } /* 25% noktası */
    50% { transform: translateX(10px) rotate(0); } /* 50% noktası */
    75% { transform: translateX(-10px) rotate(0); } /* 75% noktası */
    100% { transform: translateX(0); } /* Bitiş pozisyonu */
}


/* Mobil uyumlu ayarlamalar */
@media screen and (max-width: 700px) {
.end-container {
        height: 35vh; /* Daha yüksek */
        padding: 40px 0; /* Daha fazla içerik boşluğu */
        background-size: cover;
    }
     
    .end-container th{
        
        opacity: 0.5;
        padding: 10px;   
    }
    

footer {
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100vw; /* Ekran genişliği kadar net */
    max-width: 100vw; /* Taşmayı engelle */
    overflow-x: hidden;
    z-index: 30;
}

    footer p {
        margin: 0;
        padding: 0;
        font-size: 0.9em;
        z-index: 11;
        font-family: "Courgette", cursive;
    } 

.tiklarandevu {
    position: fixed;
    bottom: 15px;
    right: 10px;
    left: 70%; /* Sağa ve sola boşluk bırak */
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    z-index: 1000;
    max-width: calc(100vw - 20px); /* Sağ-sol boşlukları hesaba kat */
    box-sizing: border-box;
  }

  .phone-button {
    background-color: #565656;
    color: white;
    padding: 10px 12px;
    border-radius: 8px;
    box-shadow: 0 6px 10px rgba(255, 255, 255, 0.2);
    font-size: 12px;
    font-family: "Courgette", cursive;
    line-height: 1.2;
    max-width: 55vw;
    width: 20%;
    min-width: 80px; /* Minimum genişlik */
    right: 3%;
  }

  .phone-button a {
    color: white;
    text-decoration: none;
    display: block;
    word-break: break-word;
  }

  #phoneNumber {
    position: fixed;
    bottom: 9%;
    right: 0px; /* Daha fazla boşluk bırak */
    width: 55px;
    height: 55px;
    animation: shake 5s infinite;
    z-index: 1100;
  }
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); } /* Hareket mesafesini azalttık */
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .container {
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* * {
  border: 1px solid red !important;
}
 */
:root {
  --bg: #f6f3ee;
  --ink: #1c1b1a;
  --muted: #6f6a63;
  --card: #ffffff;
  --stroke: #e6dfd5;
  --accent: #b08b6e;
  --accent-strong: #8c6a50;
  --shadow: 0 12px 30px rgba(20, 18, 16, 0.12);
  --radius: 18px;
}

html, body {
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 600px at 10% -10%, #fff 0%, #f6f3ee 60%, #efe9df 100%);
}

body {
  min-height: 100vh;
  padding-bottom: 80px;
}

.image-background {
  filter: saturate(0.9) brightness(0.95);
  opacity: 0.18;
}

.icon {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(6px);
  height: auto;
  padding: 10px 18px;
}

.icon h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 1px;
}

.icons img {
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.icons img:hover {
  transform: scale(1.15);
  opacity: 0.9;
}

header nav ul {
  position: static;
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 16px 0 0;
}

header nav ul li {
  margin-right: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

header nav ul li a {
  color: var(--ink);
  text-shadow: none;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 600;
}

.image-carousel {
  position: relative;
  top: 0;
  margin: 24px auto 40px;
  width: min(1200px, 92vw);
  height: clamp(220px, 45vw, 480px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #111;
}

.carousel-text {
  font-family: "Playfair Display", serif;
  background: rgba(0, 0, 0, 0.45);
  padding: 14px 20px;
  border-radius: 999px;
}

.carousel-text h2 {
  font-size: clamp(16px, 3vw, 28px);
}
.carousel-text p {
  font-size: clamp(11px, 2vw, 14px);
}

.content-wrapper {
  width: min(1200px, 92vw);
  margin: 0 auto 40px;
}

.kategori-baslik {
  font-family: "Playfair Display", serif;
  letter-spacing: 3px;
  font-size: clamp(18px, 4vw, 30px);
  background: none;
  border: none;
  color: var(--ink);
  opacity: 1;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff, #f3ece2);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.kategori-baslik:hover {
  transform: translateY(-2px);
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  width: 100%;
}

.image-slider {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-item img,
.slide {
  border-radius: 0;
  border: 0;
}

.prev, .next {
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 999px;
}

.end-container {
  width: min(1200px, 92vw);
  margin: 30px auto 80px;
  height: auto;
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.7), rgba(15, 15, 15, 0.35)), url(Resimler/113.jpg);
  background-size: cover;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hakkimizdatablo,
.iletisimtablo {
  position: static;
  transform: none;
  color: #fff;
  font-family: "Manrope", Arial, sans-serif;
  text-align: left;
  font-size: 15px;
}

.hakkimizdatablo th,
.iletisimtablo th {
  text-align: left;
  letter-spacing: 2px;
  font-family: "Playfair Display", serif;
}

footer {
  position: static;
  background: #0e0e0e;
  margin-top: 20px;
}

.tıklarandevu,
.tiklarandevu {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
}

.phone-button {
  background: var(--accent);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.phone-button a {
  font-family: "Manrope", Arial, sans-serif;
}

#phoneNumber {
  width: 56px;
  height: 56px;
}

@media (max-width: 900px) {
  .gallery-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .end-container { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  header nav ul { flex-wrap: wrap; }
  .gallery-row { grid-template-columns: 1fr; }
  .image-carousel { height: 200px; }
  .phone-button { font-size: 12px; }
}
/* Moved from index.html inline <style> */
body {
  max-width: 100vw;
  overflow-x: hidden;
}

.content-wrapper {
  display: flex;
  align-items: flex-start;
  margin-top: 50px;
}

.gallery-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 20px;
  margin-top: 100px;
  text-align: end;
  align-items: center;
}

.kategori-baslik {
  color: white;
  font-family: "Courgette", cursive;
  letter-spacing: 10px;
  font-size: 40px;
  margin-bottom: 20px;
  opacity: 0.6;
  text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #1c1c1e 0%,
    #2a2a2d 30%,
    #000000 70%,
    #1a1a1a 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 100% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 4s linear infinite;
  display: inline-block;
}

.kategori-icerik {
  display: none;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

.gallery-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin-bottom: 30px;
}

.gallery-item {
  width: calc(50% - 20px);
  box-sizing: border-box;
  margin-bottom: 20px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  max-width: 450px;
  border-radius: 50px 50px 0px 0px;
  border: 1px solid rgb(155, 153, 153);
  display: block;
  margin: 0 auto;
}

.image-slider {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  border-radius: 5px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 100%;
  height: auto;
  display: none;
  object-fit: cover;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: rgb(55, 54, 54);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.next {
  right: 0;
  border-radius: 0 3px 3px 0;
}

.prev:hover,
.next:hover {
  background-color: rgba(131, 131, 131, 0.8);
}

.image-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.8;
}

@media screen and (max-width: 700px) {
  body {
    background-color: #d1d0d0;
  }

  header nav ul li a {
    color: #000000;
    font-size: 13px;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: solid;
    text-shadow: 6px 6px 0px rgb(172, 166, 166);
  }

  .kategori-baslik {
    font-size: 20px;
  }

  .content-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .gallery-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 20px;
    margin-top: 100px;
    text-align: end;
  }

  .gallery-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
  }

  .gallery-item {
    flex: 0 1 100%;
    max-width: 100%;
  }

  .gallery-item img {
    width: 90%;
    height: auto;
    display: block;
    border-radius: 5px;
    margin: 0 auto;
  }

  .image-slider {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 5px;
  }

  .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .slide {
    min-width: 100%;
    box-sizing: border-box;
  }

  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 6px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

  .prev {
    left: 0;
  }

  .next {
    right: 0;
  }
}

.image-carousel {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
  top: 120px;
}

.carousel-track {
  display: flex;
  width: 300%;
  animation: carousel-slide 29s infinite;
}

.carousel-text {
  position: absolute;
  font-family: "Courier New", Courier, monospace;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background-color: rgba(102, 100, 100, 0.5);
  padding: 10px;
  border-radius: 100px;
  z-index: 10;
}

.carousel-text h2 {
  font-size: 20px;
  margin: 0;
}

.carousel-text p {
  font-size: 13px;
  margin: 0;
}

.carousel-track img {
  width: 100%;
  height: auto;
}

@keyframes carousel-slide {
  0% { transform: translateX(0%); }
  33% { transform: translateX(-20%); }
  66% { transform: translateX(-40%); }
  100% { transform: translateX(-30%); }
}

@media (max-width: 768px) {
  .image-carousel {
    height: 200px;
    margin-top: 5%;
  }
}

/* Moved from iletisim.html inline <style> */
.contact-container {
  width: 100%;
  margin-top: 120px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  background-color: #828282;
}

.contact-info {
  width: 45%;
}

.contact-info h2 {
  font-family: "Courgette", cursive;
  margin-bottom: 15px;
}

.contact-info table {
  width: 100%;
  border-collapse: collapse;
}

.contact-info td {
  padding: 10px;
  vertical-align: middle;
}

.contact-info img {
  width: 30px;
  margin-right: 10px;
  vertical-align: middle;
}

.contact-form {
  width: 45%;
}

.contact-form h2 {
  font-family: "Courgette", cursive;
  margin-bottom: 15px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 5px;
  font-family: "Courgette", cursive;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: Arial, sans-serif;
}

.contact-form input[type="submit"] {
  background-color: #565656;
  color: white;
  border: none;
  cursor: pointer;
}

.contact-form input[type="submit"]:hover {
  background-color: #767474;
}

@media screen and (max-width: 700px) {
  .contact-container {
    width: 100%;
    margin-top: 120px;
    padding: 20px;
    font-size: 12px;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .contact-info img {
    width: 20px;
  }
}

/* Demo e-ticaret görünümü */
.shop-notice {
  width: 100%;
  margin: 40px auto 10px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.shop-notice h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 3vw, 24px);
  margin-bottom: 4px;
}

.shop-notice p {
  color: var(--muted);
  font-size: 14px;
}

.shop-cta {
  background: #d9d4cc;
  color: #6a6258;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: not-allowed;
}

.gallery-item {
  display: flex;
  flex-direction: column;
}

.product-meta {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-meta h3 {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: var(--ink);
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-strong);
}

.buy-button {
  border: none;
  border-radius: 10px;
  padding: 8px 10px;
  background: #eee8df;
  color: #7a7267;
  font-weight: 600;
  cursor: not-allowed;
}

@media (max-width: 700px) {
  .shop-notice {
    flex-direction: column;
    text-align: center;
  }
}
