* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
      max-width: 100%;
    
}

html, body {
  overflow-x: hidden;
  width: 100%;
}
a{text-decoration:none;}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #f4f7fb;
    color: #333;
}


 .container {
            max-width: 1100px;
            margin: auto;
            padding: 40px 20px;
        }
        
.btn{background:white;
color:#0a4b9e;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
font-weight:600;
    
}

/* HEADER */
header{
background:white;
padding:15px 5%;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
position:relative;
}

.logo {
  width: 80px;
  height: 70px;
  background: url('/images/logo.png') no-repeat center/contain;
}


.logo-img {
  width: 80px; /* ihtiyaca göre */
  height: auto;
}


nav {
  display: flex;
  align-items: center;
  position: relative; /* header içinde konumlanacaksa gerekebilir */
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #0a4b9e;
  margin: 4px 0;
  border-radius: 2px;
}

/* MENU AKTİF HALİ */
nav.active {
  display: flex;
  flex-direction: column;
  background: white;
  position: absolute;
  top: 100%;       /* header’ın altından başlasın */
  left: 0;
  width: 100%;
  padding: 20px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  z-index: 999;    /* menü header’ın üstünde görünür */
}

nav.active a {
  margin: 10px 0;
  text-align: center;
}

/* HERO */
.hero{
background:url("images/banner.png") center/cover no-repeat;
color:#fff;
padding:0px;
text-align:center;
aspect-ratio: 16 / 6;
  height: 500px; 
    display: flex;
  justify-content: center; /* yatay ortala */
  align-items: center;     /* dikey ortala */


}
.hero h1{font-size:42px;margin-bottom:15px;}
.hero p{font-size:18px;margin-bottom:25px;}


.hero-content{
    margin: auto;
      text-align: center;

}

.hero-buttons{
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Primary button (Teklif Al) */
.btn-primary{
    background: #0a4b9e;
    color: white;
}

/* Outline button (Ürünleri İncele) */
.btn-outline{
    background: transparent;
    border: 2px solid white;
    color: white;
}

/* Hover efekti */
.btn:hover{
    opacity: 0.9;
    transition: 0.3s;
}


/* Genel geçiş */
.btn{
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Hover'da hafif yukarı kalkma */
.btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Parlama efekti */
.btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.2),
        rgba(255,255,255,0.6),
        rgba(255,255,255,0.2)
    );
    transform: skewX(-25deg);
}

/* Hover olunca animasyon çalışır */
.btn:hover::before{
    left: 130%;
    transition: 0.7s;
}

.btn-primary:hover{
    background: #083a7a;
}


/* Footer genel */
.footer {
  background-color: #222;
  color: #ddd;
  padding: 40px 20px 20px;
  font-size: 14px;
}

/* İç container */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

/* Kolonlar */
.footer-col {
  flex: 1 1 220px;
}

.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
}

/* Linkler */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* Alt kısım */
.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 15px;
  text-align: center;
  color: #aaa;
}

.footer-bottom p {
  margin: 5px 0;
}

/* Mobil */
@media (max-width: 768px) {
/* Varsayılan (mobil) */
.footer-col {
  flex: 1 1 100%; /* mobilde full genişlik */
}
}
/* Sabit üçlü buton */
.fixed-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Tüm butonlar ortak stil */
.fixed-buttons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 24px;
  color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease-in-out;
  transform: translateY(0);
}

/* Renkler */
.phone-btn { background: #0a4b9e; }
.whatsapp-btn { background: #25D366; }
.top-btn { background: #f39c12; }

/* Hover efekti: yumuşak yukarı kayma ve büyüme */
.fixed-buttons a:hover {
  transform: translateY(-8px) scale(1.15);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  opacity: 0.95;
  cursor: pointer;
}

/* Başlangıçta geri dön butonunu gizle */
.top-btn {
  display: none;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}


/* FOOTER */
footer{background:#1e2a38;color:white;text-align:center;padding:25px;}

/* WHATSAPP */
.whatsapp{position:fixed;bottom:25px;right:25px;background:#25D366;color:white;padding:14px 20px;border-radius:40px;text-decoration:none;font-weight:600;}

/* RESPONSIVE */
@media screen and (max-width:991px){
nav{display:none;width:100%;}
.hamburger{display:flex;}
.contact{grid-template-columns:1fr;}
.hero h1{font-size:32px;}
.hero p{font-size:16px;}
}
@media screen and (max-width:600px){
.hero{padding:100px 5%;}
.section{padding:50px 5%;}
.products{grid-template-columns:1fr;}
.card img{height:180px;}
}




.social-icons{
  margin-top:15px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:15px;
}

.social-icons a{
  display:flex;
  justify-content:center;
  align-items:center;
  width:30px;
  height:30px;
  background:orange;
  color:white;
  border-radius:50%;
  font-size:20px;
  transition:all 0.3s ease;
}

.social-icons a:hover{
  transform:translateY(-5px);
  background:#0a4b9e;
  color:white;
  box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.numune{
margin-left:15px;
color:#e63946;
font-size:12px;
font-weight:600;
letter-spacing:1px;
}

.payment-icons{
  margin-top:15px;
  font-size:30px;   /* ikonları büyütür */
  color:#fff;
}

.payment-icons i{
  margin:0 10px;
}







/* Sayfalama kapsayıcı */
.pagination {
  text-align: center;
  margin: 40px 0;
}

/* Linkler */
.pagination a {
  display: inline-block;
  margin: 0 6px;
  padding: 8px 14px;
  text-decoration: none;
  color: #0a4b9e;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* Hover efekti */
.pagination a:hover {
  background-color: #0a4b9e;
  color: #fff;
  border-color: #0a4b9e;
}

/* Aktif sayfa */
.pagination a.active {
  background-color: #0a4b9e;
  color: #fff;
  border-color: #0a4b9e;
  font-weight: bold;
}

/* Önceki/Sonraki butonları */
.pagination a.prev,
.pagination a.next {
  font-weight: 500;
}


.mail-link {
  color: #ddd;
  text-decoration: none;
}

.mail-link:hover {
  color: #ddd;
  text-decoration: none;
}

.urun-ust {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

/* küçük yazılar */
.model {
  font-size: 13px;
  color: #777;
}

.kategori {
  font-size: 13px;
  color: #777;
}

/* fiyat büyük ve kalın */
.fiyat {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-top: 6px;
  text-align: center; /* Metni yatayda ortalar */
}


h2 {
  font-size: 1.5rem; /* Varsayılan genellikle 2rem civarı */
  font-weight: 600;  /* İstersen kalınlığı da ayarlayabilirsin */
  margin-bottom: 1rem; /* Başlık ile içerik arası boşluk */
  
}



.reviews {
  max-width: 1100px;
  margin: auto;
  font-family: Arial;
  position: relative;
}

/* TRACK */
.track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.track::-webkit-scrollbar {
  display: none;
}

/* 3 YAN YANA */
.card {
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: start;

  background: white;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
  .card {
    flex: 0 0 80%;
  }
}

.user { font-weight: bold; }

.google {
  font-size: 12px;
  color: #666;
  margin: 6px 0;
}

.stars {
  color: #f5b301;
  margin-bottom: 8px;
}

/* 🔥 BUTONLAR */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 40px;
  height: 40px;
  border-radius: 50%;

  border: none;
  cursor: pointer;

  background: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 10;
}

.nav.left {
  left: -20px;
}

.nav.right {
  right: -20px;
}


.main-image{
  width:100%;
  height:450px;
  object-fit:contain;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.1);
  cursor:zoom-in;
}
