body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('img/bg.png') repeat;
    background-attachment: fixed;
    background-position: top left;
    background-color: #f7f7f7;
}
/* Üst sabit bar */
.topBar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background-color: #f7f7f7;
    z-index: 9999;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

/* 900px container */
.topBar .container {
    max-width: 900px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Sosyal ikonlar */
.social-icons a {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    border-radius: 50%;
    background-color: #999;
    color: #fff;
    text-align: center;
    line-height: 24px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}
.social-icons a:hover { background-color: #f89406; }

.top-links a {
    margin-left: 10px;
    padding: 5px 10px;
    text-decoration: none;
    color: #000;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px; /* önce 18px idi, biraz küçültüldü */
}
.top-links a:hover {
    background-color: #f89406;
    color: #fff;
}

/* Üst bar alt boşluk */
.topBar-spacer {
    height: 50px; /* üst bar alt boşluk */
}

/* Logo alanı */
.logo-bar {
    max-width: 900px;
    height: 150px;
    margin: 20px auto; /* üst-alt 20px, yatay ortala */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3); /* alt gölge */
}
.logo-bar img {
    width: 900px;
    height: 150px;
    display: block;
}

.menu {
    background-color: #f2f2f2;
    max-width: 880px;
    margin: 0 auto;
    padding: 2px 10px; /* üst-alt padding çok dar */
    display: flex;
    justify-content: space-between;
    align-items: center; /* dikey ortala */
    box-shadow: 0 0 1px rgba(0,0,0,0.8); /* ince gölge */
    font-size: 13px; /* yazı biraz küçültüldü */
}
.menu a {
    text-decoration: none;
    color: #000;
    padding: 2px 6px;       /* dikey ve yatay daraltılmış */
    border-radius: 0;        /* keskin köşe */
    transition: background 0.3s, color 0.3s;
    line-height: 1.2em;
	font-weight: 500;
}
.menu a:hover {
    background-color: #f89406;
    color: #fff;
}

/* Login dropdown */
.login-dropdown {
    position: relative;
}
.login-dropdown .login-form {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #f2f2f2; /* açık gri arka fon */
    padding: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    display: none; /* hover ile gösterilecek */
    z-index: 999;
}
.login-dropdown .login-form input {
    width: 150px;
    height: 22px;       /* dikey dar */
    margin-bottom: 4px;
    padding: 3px 5px;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-size: 13px;
    box-sizing: border-box;
    transition: border 0.3s, background 0.3s;
}
.login-dropdown .login-form input:focus {
    border-color: #f89406; /* odaklanınca turuncu vurgulu */
    background-color: #fff;
    outline: none;
}

.login-dropdown .login-form button {
    width: 100%;
    height: 24px;        /* dikey dar */
    background-color: #f89406;
    color: #fff;
    border: none;
    border-radius: 2px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s;
}
.login-dropdown .login-form button:hover {
    background-color: #f86706;
}
/* Login linki */
.login-dropdown a {
    padding: 2px 6px;
    font-size: 13px;
    line-height: 1.2em;
    color: #000;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}
.login-dropdown a:hover {
    background-color: #f89406;
    color: #fff;
}










.login-dropdown .login-form {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #f2f2f2;
    padding: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    display: none; /* hover kaldırıldı */
    z-index: 9999; /* password manager popup üstünde */
}
.login-dropdown.active .login-form {
    display: block;
}








.menu-search {
    display: flex;
    align-items: center;
    margin: 0 10px; /* Login ve General Content arasında boşluk */
}
.menu-search input {
    width: 120px;
    height: 20px;      /* dikey küçültüldü */
    padding: 2px 4px;  /* üst-alt padding dar */
    border: 1px solid #ccc;
    border-radius: 0;
    font-size: 12px;
}
.menu-search input:focus {
    border-color: #f89406;
    outline: none;
}

.content-wrapper {
    max-width: 900px;
    margin: 20px auto; /* yatay ortala */
    display: flex;
    gap: 10px;
}

/* Sol Kategori */
.sidebar {
    background-color: #f2f2f2;
    padding: 10px;
    margin-bottom: 25px; /* alt boşluk */
    max-width: 300px;    /* genişlik */
    display: block;      /* alt alta durması için */
    box-shadow: 0 0 2px rgba(0,0,0,0.3);
}
/* Eğer parent flex ise */
.sidebar-container {
    display: block;      /* alt alta dizmek için */
}

.sidebar h3 {
    margin-top: 0;
    font-size: 16px;
}
.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar ul li {
    padding: 6px 10px;
    font-size: 12px;             /* küçültülmüş yazı boyu */
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
    background-color: #f7f7f7;   /* açık gri div */
    color: #000;                 /* yazı siyah */
}
.sidebar ul li:hover {
    background-color: #f2f2f2;   /* hoverda biraz koyu / kontrast */
    color: #f89406;              /* yazı turuncu */
}

.sidebar a {
    color: #555;
    text-decoration: none;
    margin-left: 8px;
}

.sidebar a:hover {
    color: #ff8c00;
}

.slide {
    min-width: 6500px; /* her bir slide container genişliği */
    position: relative;
}
.slide img {
    width: 100%;
    display: block;
    border-radius: 0; /* keskin köşe yok */
}
.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(248, 148, 6, 0.35);
    color: #000;
    padding: 10px;
    font-size: 14px;
	font-weight: 500;
}
.main-content {
    max-width: 900px;
    margin: 20px auto;
}
.slider .slide .caption {
    color: #000 !important;
	font-weight: 550;
}

.vertical-gallery {
    margin-top: 20px;          /* slider ile arada boşluk */
}

.vertical-gallery h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
}

.vertical-image {
    width: 168px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #f2f2f2; /* başlık, fiyat, buton arka planı */
    padding-bottom: 5px; /* alt boşluk */
}

.vertical-image img {
    width: 168px;
    height: 200px;
    object-fit: fill;
    border-radius: 0;
}
.vertical-gallery-horizontal {
    display: flex;
    gap: 10px;
    max-width: 900px;
    margin: 20px auto;
}

.vertical-gallery-horizontal h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
}

.vertical-image h4 {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #333;
}

.vertical-image p {
    margin: 2px 0 5px 0;
    font-size: 13px;
    color: #f89406;
}

.btn-incele {
    display: inline-block;
    padding: 4px 8px;
    font-size: 13px;
    background-color: #f89406;
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.3s;
    margin-bottom: 5px; /* buton altına 5px boşluk */
}
.btn-incele:hover {
    background-color: #f86706;
}

.vertical-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.vertical-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Resimleri yan yana yapmak için flex kullanıyoruz */
.vertical-gallery-horizontal {
    display: flex;
    gap: 10px; /* resimler arası boşluk */
}
/* Hover efekti */
.vertical-image:hover {
    transform: scale(1.05); /* %5 büyütme */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* gölge belirginleşir */
}

.slider {
    position: relative;
    width: 700px;
    overflow: hidden;
    margin: 0 auto;
}

.slider-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 700px;
    position: relative;
}

.slide img {
    width: 100%;
    display: block;
}

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(248, 148, 6, 0.6);
    color: #fff;
    padding: 10px;
    font-size: 14px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(248, 148, 6, 0.8);
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 10;
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.slider:hover .slider-btn { opacity: 1; }

.discount-block {
    width: 190px;              /* kategori ile aynı genişlik */
    height: 200px;             /* kare şeklinde */
    background-color: #f9f3d0; /* açık sarı fon */
    margin: 20px 0;            /* üst-alt boşluk */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.discount-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.discount-percent {
    font-size: 24px;
    font-weight: bold;
    color: #d49c00;
}

.discount-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.discount-subtitle {
    font-size: 14px;
    color: #555;
}

/* Buton aynı önceki .btn-incele kullanabiliriz */
.discount-block .btn-incele {
    margin-top: 10px;
    padding: 4px 8px;
}
.side-product {
    width: 190px;
    background-color: #f2f2f2;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.side-product img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

/* INFO ALANI */
.side-product-info {
    padding: 6px 6px 4px 6px;  /* ALT PADDING KÜÇÜLTÜLDÜ */
}

/* BAŞLIK */
.side-product-title {
    font-weight: bold;
    text-align: center;
    font-size: 13px;
    margin: 10px 0;
}

.side-product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ALT SATIR */
.side-product-bottom {
    display: flex;
    align-items: center;
}

/* BUTON SAĞA */
.side-info {
    margin-left: auto;   /* SAĞA YASLA */
}
/* BUTON */
.side-btn {
    display: inline-block;
    font-size: 12px;
    background-color: #f89406;
    color: #fff;
    padding: 3px 8px;     /* DİKEY KÜÇÜLTÜLDÜ */
    line-height: 1;
    margin: 0;
    border-radius: 2px;
    text-decoration: none;
    font-weight: bold;
	margin-bottom: 10px; /* 👈 ALTINA 5px BOŞLUK */
}

.side-btn:hover {
    background-color: #f86706;
}

/* FİYAT SOLA + 5px */
.side-price {
    font-size: 13px;
    font-weight: bold;
    margin-right: auto;   /* SOLA YASLA */
    margin-left: 40px;     /* 5px boşluk */
}

.firma-ayrac {
    margin: 20px 0;
    text-align: center;
}

.firma-adi {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin: 8px 0;
}

/* f2f2f2 HR + gölge */
.hr-gri {
    border: none;
    height: 2px;
    background-color: #f2f2f2;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* fefefe HR + gölge */
.hr-beyaz {
    border: none;
    height: 2px;
    background-color: #fefefe;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* === DİPNOT FOOTER (ZORLA) === */
.dipnot-footer {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: #f2f2f2 !important;
    border-top: 1px solid #ddd !important;
    z-index: 99999 !important;
}

.dipnot-inner {
    width: 900px;
    margin: 0 auto;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
}

.dipnot-left {
    white-space: nowrap;
}

.dipnot-right a {
    color: #555;
    text-decoration: none;
    margin-left: 8px;
}

.dipnot-right a:hover {
    color: #ff8c00;
}

/* Footer içeriği kapatmasın */
body {
    padding-bottom: 50px !important;
}

/* HR - GRİ */
.hr-gri {
    border: none;
    height: 1px;
    background-color: #f2f2f2;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* HR - BEYAZ */
.hr-beyaz {
    border: none;
    height: 1px;
    background-color: #fefefe;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* FİRMA ADI */
.firma-adi {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin: 8px 0;
}

/* LOGO MARQUEE */
.logo-marquee {
    width: 900px;
    overflow: hidden;
    margin: 20px auto;
     background: transparent;   /* 👈 TAM TRANSPARAN */
}

/* HAREKET EDEN ŞERİT */
.logo-track {
    display: flex;
    width: max-content;
    animation: logoScroll 25s linear infinite;
}

/* LOGO */
.logo-marquee .logo-track img {
    width: 100px !important;
    height: 50px !important;
    object-fit: contain;
    background: #fff;
    padding: 5px;
    margin-right: 10px;
    flex-shrink: 0;
}

/* HOVER'DA DUR */
.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

/* GERÇEK KAYMA */
@keyframes logoScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
/* PAGINATION WRAPPER */
.pagination-wrapper {
    max-width: 900px;
    margin: 10px auto;      /* daha dar */
    text-align: center;
}

/* HR – İNCE */
.pagination-wrapper hr {
    border: none;
    height: 1px;
    background-color: #e5e5e5;
    box-shadow: 0 1px 1px rgba(0,0,0,0.08);
    margin: 6px 0;          /* üst-alt dar */
}

/* PAGINATION */
.pagination {
    display: inline-flex;
    gap: 4px;               /* daha sık */
    margin: 4px 0;
}

/* SAYFA NUMARASI */
.pagination a {
    min-width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 11px;        /* küçültüldü */
    text-decoration: none;
    color: #333;
    background-color: #f2f2f2;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
}

/* HOVER */
.pagination a:hover {
    background-color: #f89406;
    color: #fff;
}

/* AKTİF */
.pagination a.active {
    background-color: #f89406;
    color: #fff;
    font-weight: bold;
}

/* Yukarı Çık Butonu */
/* Yukarı Çık Butonu */
#yukariBtn {
    position: fixed;
    bottom: 55px;
    right: 20px;
    width: 38px;
    height: 50px;
    background-color: #f89406;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: none;
    z-index: 9999;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

/* Oklar */
#yukariBtn .ok {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid #fff;
}

/* Küçük ok */
#yukariBtn .kucuk {
    transform: scale(0.8);
}

/* Büyük ok */
#yukariBtn .buyuk {
    transform: scale(1.2);
}

/* Hover efekti */
#yukariBtn:hover {
    background-color: #f86706;
}

.product-detail {
  display: flex;
  gap: 20px;
}

.product-left img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border: 1px solid #ccc;
}

.product-right h2 {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 5px 0;
}

.product-right p {
  margin: 5px 0;
}

.product-right hr {
  border: none;
  height: 1px;
  background-color: #ccc;
  margin: 5px 0;
}

/* Tab container */
.product-tabs .tabs {
  display: flex;
  gap: 5px;
}

/* Tab button stili güncellendi */
.tab-link {
  background-color: #f89406  !important;  /* Turuncu */
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
  color: #000;                     /* Yazı siyah */
  font-weight: normal;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transition: background 0.3s, color 0.3s, font-weight 0.3s;
}

/* Hover efekti: biraz koyulaşacak */
.tab-link:hover {
  background-color: #f86706  !important;  /* Hover turuncusu biraz koyu */
  color: #000;
}

/* Aktif tab */
.tab-link.active {
  font-weight: bold;  /* Kalın yazı */
}

/* Tab içerik alanı */
.tab-content {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-top: none;                 /* Tab ile birleşik */
  padding: 10px;
  margin-top: -1px;                 /* İnce çizgiyi kesmemek için */
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.product-gallery {
  display: flex;
  gap: 15px;
}

.big-image {
  width: 550px;
  height: 550px;
  border: 1px solid #ccc;
  overflow: hidden;
  cursor: zoom-in; /* büyük resme tıklayınca büyüyecek */
}

.big-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.big-image img.zoomed {
  transform: scale(2); /* tıklayınca büyüsün */
}

.small-images {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.small-images img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid #ccc;
  transition: border 0.3s, transform 0.3s;
}

.small-images img:hover {
  border: 2px solid #f89406;
  transform: scale(1.05);
}

.yorum-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px; /* form genişliği */
  margin-top: 10px;
}

.yorum-form label {
  font-size: 13px;
  font-weight: bold;
  color: #333;
}

.yorum-form input,
.yorum-form textarea {
  padding: 6px 10px;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  transition: border 0.3s, box-shadow 0.3s;
}

.yorum-form input:focus,
.yorum-form textarea:focus {
  border-color: #f89406;
  box-shadow: 0 0 5px rgba(248,148,6,0.5);
  outline: none;
}

.yorum-form .btn-incele {
  align-self: flex-start; /* butonu sola yasla */
  padding: 5px 12px;
  font-size: 13px;
  background-color: #f89406; /* İncele butonu rengi */
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.3s;
}

.yorum-form .btn-incele:hover {
  background-color: #f86706;
}
.tab-link {
  background-color: #f89406; /* İncele butonuyla aynı turuncu */
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: bold;
  color: #000;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transition: background 0.3s, color 0.3s;
}

.tab-link:hover {
  background-color: #f86706;
  color: #000;
}

.tab-link.active {
  background-color: #f89406;
  color: #000;
}

.yorum-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin-top: 10px;
}

.yorum-form label {
  font-size: 13px;
  font-weight: bold;
  color: #333;
}

.yorum-form input,
.yorum-form textarea {
  padding: 6px 10px;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  transition: border 0.3s, box-shadow 0.3s;
  margin-left: 25px;  /* ← sağa kaydırma */
}

.yorum-form input:focus,
.yorum-form textarea:focus {
  border-color: #f89406;
  box-shadow: 0 0 5px rgba(248,148,6,0.5);
  outline: none;
}

.yorum-form .btn-incele {
  align-self: flex-start;
  padding: 5px 12px;
  font-size: 13px;
  background-color: #f89406;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.3s;
}

.yorum-form .btn-incele:hover {
  background-color: #f86706;
}

.yorum-form label,
.yorum-form input,
.yorum-form textarea {
    display: block;
    margin-left: 10px;   /* tüm öğeleri sağa kaydır */
    margin-bottom: 8px;  /* alt boşluk */
    font-size: 13px;
}

.yorum-form input,
.yorum-form textarea {
    padding: 6px 10px;
    width: calc(100% - 20px);  /* 10px sağ ve sol padding etkisi için */
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    box-sizing: border-box;
    transition: border 0.3s, box-shadow 0.3s;
}

.yorum-form textarea {
    resize: vertical; /* dikey boyutu değiştirilebilir */
}

.yorum-balon {
  max-width: 70%;
  padding: 10px 14px;
  margin: 8px 10px; /* sol-sağ boşluk */
  border-radius: 12px;
  word-wrap: break-word;
  font-size: 14px;
  line-height: 1.4;
  transition: all 0.3s;
}

.yorum-balon.soldan {
  background-color: #FFE6B3; /* Açık turuncu */
  color: #000;
  margin-right: auto;
  border-top-left-radius: 0;
}

.yorum-balon.sagdan {
  background-color: #f89406; /* Turuncu */
  color: #fff;
  margin-left: auto;
  border-top-right-radius: 0;
}

.yorum-baslik {
  font-size: 12px;
  margin-bottom: 4px;
  opacity: 0.8;
}

.yorum-mesaj {
  font-size: 14px;
}

.ozellikler-container {
  padding: 0 10px; /* Sağ ve soldan 10px boşluk */
}

.ozellikler-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.ozellikler-list li {
  background-color: #f2f2f2;
  padding: 8px 12px;
  margin-bottom: 6px;
  border-left: 4px solid #f89406; /* Turuncu vurgu */
  border-radius: 4px;
  font-size: 14px;
}

.ozellikler-aciklama {
  background-color: #fff3e0;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid #f0c28b;
}

.breadcrumb {
    background-color: #f2f2f2;
    max-width: 697px;
    margin: 0px auto;
    padding: 2px 1px; /* üst-alt padding çok dar */
    display: flex;
    justify-content: space-between;
    align-items: center; /* dikey ortala */
    box-shadow: 0 0 1px rgba(0,0,0,0.8); /* ince gölge */
    font-size: 13px; /* yazı biraz küçültüldü */
	font-weight: 500;
	
}

.breadcrumb-inner {
    width: 697px;                     /* kesin 900px */
    margin: 0 auto;                   /* yatayda ortala */
    padding: 0 20px;                  /* içeride boşluk */
    line-height: 30px;
    font-size: 14px;
    color: #555;
    box-sizing: border-box;
}
.breadcrumb-inner a {
    color: #000;
    text-decoration: none;
    transition: color 0.05s;
}

.breadcrumb-inner a:hover {
    color: #f89406;
}


.breadcrumb-inner1 {
    width: 659px;                     /* kesin 900px */
    margin: 0 auto;                   /* yatayda ortala */
    padding: 0 20px;                  /* içeride boşluk */
    line-height: 30px;
    font-size: 14px;
    color: #555;
    box-sizing: border-box;
}

.breadcrumb-inner1 a {
    color: #000;
    text-decoration: none;
    transition: color 0.05s;
}

.breadcrumb-inner1 a:hover {
    color: #f89406;
}

/* İletişim formu input/textarea/select stili */
.iletisim-form input,
.iletisim-form textarea,
.iletisim-form select {
    width: calc(100% - 30px); /* sol ve sağdan 15px boşluk */
    padding: 8px 15px;        /* üst-alt 8px, sol-sağ 15px */
    box-sizing: border-box;   /* padding dahil genişlik */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 10px;      /* alt boşluk */
}

/* Gönder butonu */
.iletisim-form button {
    padding: 10px 20px;
    background-color: #f89406;
    color: #000;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s;
    margin-top: 10px;         /* üst boşluk */
}

.iletisim-form button:hover {
    background-color: #e07b00;
}
#charCount {
  font-size: 12px;
  color: #555;
  margin-top: 5px;
  margin-right: 30px;  /* Sol boşluk */
  text-align: right;   /* Yazıyı sola hizala */
}

#reklam {
    position: fixed;   /* Sayfada kaydırırken sabit kalır */
    top: 100px;        /* Üstten uzaklığı */
    left: 50px;        /* Soldan 50px uzaklık */
    width: 200px;      /* Genişlik */
    height: 700px;     /* Yükseklik */
    z-index: 9999;     /* Üstte görünmesini sağlar */
	background: #fff; /* Gerekirse arka plan */
    border: 1px solid #ccc; /* Gerekirse kenarlık */
}










/* === KADIN KATEGORI AÇILIR MENÜ (IZOLE) === */
.kmenu-item > .kmenu-sub {
    display: none;
    padding-left: 15px;
}

.kmenu-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.kmenu-plus {
    font-weight: bold;
    width: 12px;
    display: inline-block;
}

.kmenu-item.kmenu-open > .kmenu-sub {
    display: block;
}

.kmenu-item.kmenu-open .kmenu-plus {
    content: "-";
}

.kmenu-sub-item a {
    display: block;
    padding: 4px 0;
}

.kmenu-item > .kmenu-sub { display:none; padding-left:15px; }
.kmenu-item.kmenu-open > .kmenu-sub { display:block; }
.kmenu-toggle { display:flex; gap:6px; cursor:pointer; }
.kmenu-plus { font-weight:bold; width:12px; }




.vertical-gallery-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 900px;
    margin: 20px auto;
}

.vertical-image {
    width: calc(25% - 7.5px);   /* 🔒 her zaman 4'lü */
    background-color: #f2f2f2; /* 🔴 İSTEDİĞİN ARKA FON */
    box-sizing: border-box;
    padding-bottom: 5px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.vertical-image img {
    width: 100%;
    height: 200px;
    object-fit: fill;
}

.vertical-image:hover {
    transform: scale(1.03); /* kontrollü hover */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}




