/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arıal, sans-serif;
}

body {
    background-color: #f7f7f7;
    color: #333;
    transition: all 0.3s ease;
}

/* Menü açildiğinda sayfanin kaymasini engeller */
body.menu-open {
    overflow: hidden;
}

/* Kayan Yazi Bölümü */
.top-announcement-bar {
    background-color: #fff;
    color: #333;
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-animation 25s linear infinite;
}

.marquee-content span {
    margin-right: 60px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4);
}

@keyframes marquee-animation {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1002; /* Menü açildiğinda altta kalmamasi için yüksek değer */
}

.logo {
    font-family: 'Georgia', serif;
    font-size: 36px;
    font-weight: bold;
    color: #000000;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    margin-right: 10px;
    width: 110px;
    height: 110px;
    object-fit: contain;
}

.burger-menu-btn,
.whatsapp-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    text-decoration: none;
    color: #333;
}

.whatsapp-btn {
    color: #25D366;
}

.whatsapp-btn:hover {
    color: #128C7E;
}
/* Sabit WhatsApp Butonu */
.whatsapp-fixed-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 1000;
    text-decoration: none; /* Bu satır altındaki çizgiyi kaldırır */
}

.whatsapp-fixed-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Yan Menü (Gizli) */
.side-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1003; /* Header'dan bile daha yüksek değer */
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Menü aktif olduğunda genişliğini ayarlar */
.side-menu.active {
    width: 280px;
}

.side-menu .close-btn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    text-decoration: none;
    color: #fff;
}

.side-menu a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 20px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.side-menu a:hover {
    color: #fff;
    background-color: #333;
}

.side-menu h4 {
    color: #fff;
    font-size: 18px;
    padding: 8px 32px;
    margin-top: 20px;
}

.side-menu .divider {
    height: 1px;
    background-color: #444;
    margin: 20px 32px;
}

/* Menü açildiğinda sayfanin geri kalanini karartan katman */
.overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1001; /* Karartma katmani header ile menü arasinda kalmali */
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    transition: opacity 0.5s;
    display: none;
}

.slider-box-h {
  max-width: 540px;
  height: 720px;
  margin: 44px auto;
  background: linear-gradient(145deg,#f8fafc 80%,#ececec 100%);
  border-radius: 28px;
  box-shadow: 0 8px 36px rgba(60,60,80,0.16), 0 1px 4px rgba(60,60,80,0.09);
  overflow: hidden;
  position: relative;
  border: 2px solid #ededed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-h {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.7s cubic-bezier(.7,.2,.2,1);
}

.slider-item-h {
  min-width: 100%;
  height: 100%;
  position: relative;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f3f9;
}

.slider-item-h img {
  max-width: 96%;
  max-height: 96%;
  margin: auto;
  display: block;
  object-fit: contain; /* Resim kirpilmaz, tamami görünür */
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(80,80,80,0.09);
  background: #e1e2e6;
}

.slider-title-h {
  position: absolute;
  left: 28px;
  top: 38px;
  background: rgba(29,29,34, 0.74);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  letter-spacing: .04em;
  box-shadow: 0 2px 10px rgba(0,0,0,0.11);
  backdrop-filter: blur(3px);
}

.slider-btn-h {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.96);
  border: none;
  font-size: 2.3rem;
  color: #222;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(60,60,60,0.15);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, box-shadow 0.18s;
  opacity: 0.92;
}

.slider-btn-h.left { left: 20px; }
.slider-btn-h.right { right: 20px; }

.slider-btn-h:hover {
  background: #e7e7e7;
  box-shadow: 0 4px 16px rgba(60,60,60,0.21);
}

/* Mobil uyumlu */
@media (max-width: 700px) {
  .slider-box-h {
    max-width: 98vw;
    height: 400px;
    border-radius: 12px;
    margin: 16px auto;
  }
  .slider-title-h {
    left: 10px;
    top: 12px;
    font-size: 1rem;
    padding: 7px 14px;
    border-radius: 7px;
  }
  .slider-btn-h {
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }
  .slider-btn-h.left { left: 5px; }
  .slider-btn-h.right { right: 5px; }
  .slider-item-h img {
    border-radius: 8px;
  }
}

/* Çok Satanlar Bölümü */
.best-sellers-title {
    text-align: center;
    padding: 20px 0;
    background-color: #f8f1e9; /* Mobilya sitelerine uygun nötr, sıcak bir arka plan */
    margin: 0;
    border-bottom: 2px solid #d4a373; /* Şık bir alt çizgi */
}

.best-sellers-title h1 {
    font-family: 'Playfair Display', serif; /* Şık ve zarif bir font */
    font-size: 2.5rem; /* Büyük ve dikkat çekici */
    color: #2f2f2f; /* Koyu, sofistike bir renk */
    margin: 0;
    text-transform: uppercase; /* Büyük harf için */
    letter-spacing: 2px; /* Harfler arası boşluk */
    font-weight: 700; /* Kalın font */
}

.urunler-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 34px 8vw;
  max-width: 700px;
  margin: 0 auto;
}

/* Dikey görseller için mobil özel ayar */
@media (max-width: 600px) {
  .product-card.vertical-product {
    aspect-ratio: 9/12; /* Dikey görseller için daha uygun en boy oranı */
  }
}
.product-card {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(40,40,80,0.14);
  overflow: hidden;
  position: relative;
  background: #222;
  display: flex;
}

.product-img-bg {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform .35s;
}

.product-card:hover .product-img {
  transform: scale(1.04);
  filter: brightness(0.88) blur(1px);
}

.product-info-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2px 2px 6px 13px;
  z-index: 2;
  background: linear-gradient(0deg, rgba(22,22,36,0.75) 78%, rgba(40,40,46,0.35) 98%, rgba(40,40,46,0.01) 100%); /* Opaklık düşürüldü */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  backdrop-filter: blur(1.5px);
}

.product-info-overlay h3 {
  font-size: 1.45rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(20,20,20,0.18), 0 0px 1px #222;
  letter-spacing: .03em;
  line-height: 1.11;
}
.incele-button {
  position: absolute; /* Butonu sağ alta yerleştirir */
  bottom: 15px; /* Overlay'in alt kenarından boşluk */
  right: 15px; /* Sağ kenardan boşluk */
  background-color: (90deg, #ffe259 40%, #ffa751 100%); /* Koyu gri, overlay ile uyumlu */
  color: white; /* Yazı rengi */
  padding: 10px 16px; /* Daha geniş iç boşluk */
  border-radius: 8px; /* Daha yumuşak yuvarlak köşeler */
  text-decoration: none; /* Bağlantı alt çizgisini kaldırır */
  font-size: 14px; /* Yazı boyutu */
  font-weight: 600; /* Orta kalınlıkta yazı */
  display: flex; /* Ok işaretini hizalamak için */
  align-items: center; /* Dikey merkezleme */
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.838); /* Hafif gölge */
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease; /* Pürüzsüz animasyon */
}

.incele-button:hover {
  background-color: #d1dbe5; /* Hover'da biraz daha açık gri */
  transform: translateY(-2px); /* Hafif yukarı kalkma efekti */
  box-shadow: 0 4px 8px rgba(232, 132, 132, 0.3); /* Hover'da daha belirgin gölge */
}

.arrow {
  margin-left: 8px; /* Ok ile yazı arasında boşluk */
  font-size: 14px; /* Ok boyutu */
  transition: transform 0.2s ease; /* Ok için animasyon */
}

.incele-button:hover .arrow {
  transform: translateX(3px); /* Hover'da ok sağa kayar */
}
.price {
  display: inline-block;
  background: linear-gradient(90deg, #ffe259 40%, #ffa751 100%);
  color: #222;
  font-weight: 700;
  font-size: 1.19rem;
  border-radius: 8px;
  padding: 7px 18px;
  box-shadow: 0 2px 18px rgba(255, 215, 0, 0.18);
  margin-top: 3px;
  letter-spacing: .04em;
  text-shadow: 0 1px 6px rgba(255,255,255,0.12);
  border: 1px solid #fff2;
}

@media (max-width: 600px) {
  .urunler-container {
    padding: 10px 2vw;
    max-width: 99vw;
    gap: 16px;
  }
  .product-card {
    aspect-ratio: 16/10;
    border-radius: 12px;
  }
  .product-info-overlay {
    padding: 12px 10px 8px 10px; /* Mobil için padding daha da azaltıldı */
    background: linear-gradient(0deg, rgba(22,22,36,0.65) 78%, rgba(40,40,46,0.25) 98%, rgba(40,40,46,0.01) 100%); /* Mobil için opaklık düşürüldü */
  }
  .product-info-overlay h3 {
    font-size: 1.06rem;
    margin-bottom: 7px;
  }
  .price {
    font-size: 1rem;
    padding: 5px 12px;
    border-radius: 6px;
  }
}
:root {
  --primary-color: #d4a373; /* Ana renk paletiniz */
  --accent-color: linear-gradient(90deg, #ffe259 40%, #ffa751 100%); /* Vurgu renk geçişi */
  --text-color: #2f2f2f;
}

/* Sonra bu değişkenleri kodunuzda kullanabilirsiniz: */
.price {
  background: var(--accent-color);
}
/* Kategori Kartlari Bölümü */
.category-cards-section {
    padding: 40px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

/* SADECE KATEGORİ KARTLARINI Sola HİZALAMA */
.category-card-container {
    display: flex;
    flex-wrap: wrap; 
    justify-content: flex-start; /* Kartlari sola yaslar */
    gap: 20px; /* Kartlar arasindaki boşluğu korur */
    padding: 0 15px; /* Sol ve sağdan hafif boşluk birakir */
    margin: 0 auto; /* Sayfayi ortalar */
    max-width: 1200px; /* İçeriğin maksimum genişliğini belirler */
}

.category-card {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    transition: background-color 0.3s ease-in-out;
    z-index: 1;
}

.category-card:hover::after {
    background-color: rgba(0, 0, 0, 0.8);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease-in-out;
}

.category-card:hover img {
    transform: scale(1.05);
}

.card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    text-align: left;
    z-index: 2;
}

.card-content h3 {
    font-size: 28px;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.card-content p {
    font-size: 16px;
    color: #f0f0f0;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fff;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
}

.view-all-btn:hover {
    background-color: #FFD700;
    color: #000;
}

/* Hizmetler Bölümü */
.services {
    background-color: #000;
    padding: 40px 20px;
    text-align: center;
}

.services h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    background-color: #FFD700;
    color: #000;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: 2px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.5);
}

.service-item h3 {
    font-size: 18px;
    font-weight: bold;
}

.service-item i {
    font-size: 24px;
    margin-right: 10px;
    color: #000;
}

.contact-area {
    margin-top: 40px;
}

.contact-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #25D366;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid #25D366;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.contact-btn:hover {
    background-color: #128C7E;
    box-shadow: 0 0 25px rgba(255, 215, 0, 1);
    transform: scale(1.05);
}

/* Hakkimizda */
.about-us {
    position: relative;
    padding: 40px 0;
}

.about-us-image-container {
    position: relative;
    width: 100%;
}

.about-us-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.about-us-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.about-us-overlay h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.about-us-overlay p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 25px;
}

.about-us-btn {
    padding: 12px 30px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.about-us-btn:hover {
    background-color: #fff;
    color: #333;
}

/* Müşteri Yorumlari Bölümü */
.testimonials {
    padding: 50px 20px;
    background-color: #f7f7f7;
    text-align: center;
    margin-top: 40px;
}

.testimonials h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card .rating {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-card .review-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card .customer-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* Footer */
.main-footer {
    background-color: #333;
    color: #ddd;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
}

.footer-info {
    margin-bottom: 15px;
}

.footer-info p {
    margin-bottom: 5px;
}

.footer-info a,
.footer-bottom a {
    color: #fff;
    text-decoration: underline;
}

.footer-info a:hover,
.footer-bottom a:hover {
    color: #4CAF50;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 15px;
    margin-top: 15px;
}

/* Tablet / Masaüstü Responsive */
@media (min-width: 768px) {
    .slider-container {
        height: 500px;
    }
}
/* Hakkimizda Bölümü için Yeni Kutu Stilleri */
.about-us {
    padding: 60px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

.about-us-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 15px; /* Yumuşak köşeler */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Hafif, şık gölge */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-us-container:hover {
    transform: translateY(-5px); /* Üzerine gelince hafifçe yukari kalkma efekti */
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.about-us-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
    position: relative;
    display: inline-block;
}

/* Başlik altina animasyonlu çizgi */
.about-us-container h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background-color: #FFD700;
}

.about-us-container p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin: 25px 0;
    text-align: left;
}

.about-us-container p:first-of-type {
    margin-top: 40px;
}

/* Yasal Bilgiler Bölümü için Yeni Kutu Stilleri */
.legal-info {
    padding: 60px 20px;
    background-color: #f7f7f7; /* Arka plani ayni tutarak bir bütünlük sağlar */
    text-align: center;
}

.legal-info-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-info-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.legal-info-container h2 {
    font-size: 28px;
    margin-top: 20px; /* İlk h2'nin üst boşluğunu azaltir */
    margin-bottom: 15px;
    color: #333;
    position: relative;
    display: inline-block;
}

.legal-info-container h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background-color: #FFD700;
}

.legal-info-container h2:first-of-type {
    margin-top: 0;
}

.legal-info-container p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
    text-align: left;
}
/* JS ile çalişan görünürlük efekti */
.hidden-title {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hidden-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* JS ile çalişan görünürlük efekti */
.hidden-title {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hidden-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mağazalarimiz Sayfasi için Kapsamli Stiller */
.stores-section {
    padding: 60px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.animate-title {
    font-size: 44px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    font-weight: 700;
    color: #333;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 5px;
    background: linear-gradient(to right, #FFD700, #F7C600);
    transition: width 1s ease 0.5s;
}

.animate-title.visible::after {
    width: 80px;
}

.intro-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    max-width: 700px;
    margin: 40px auto;
    line-height: 1.8;
    color: #555;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.intro-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding-bottom: 60px;
}

/* Mağaza Karti Stilleri */
.store-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
    opacity: 0;
    transform: translateY(30px);
}

.store-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.store-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.store-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.store-card:hover .store-image {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.4s;
}

.store-card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.card-content {
    padding: 30px;
    text-align: left;
}

.card-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    margin-bottom: 10px;
    color: white;
    font-weight: 700;
}

.card-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: white;
    line-height: 1.6;
    margin-bottom: 15px;
}

.card-content i {
    color: #FFD700;
    margin-right: 10px;
}

.card-link {
    display: inline-block;
    padding: 12px 25px;
    background-color: #FFD700;
    color: #333;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s;
}

.card-link:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Harita Alani */
.map-area {
    margin-top: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    height: 550px;
    position: relative;
}

.google-map {
    width: 100%;
    height: 100%;
}
/* İLETİŞİM SAYFASI STİLLERİ */

.contact-section {
    padding-top: 100px;
    padding-bottom: 50px;
    min-height: calc(100vh - 150px);
}

.contact-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

.contact-form-area,
.contact-info-area {
    flex: 1;
    padding: 30px;
    background-color: #f7f7f7;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #3f51b5;
    box-shadow: 0 0 8px rgba(63, 81, 181, 0.2);
    outline: none;
}

.contact-form button {
    background-color: #3f51b5;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background-color: #303f9f;
    transform: translateY(-2px);
}

.contact-info h3,
.map-area h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.contact-info li {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

.contact-info li i {
    margin-right: 10px;
    color: #3f51b5;
}

.contact-info li a {
    color: #3f51b5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info li a:hover {
    text-decoration: underline;
}

.map-area {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* responsive tasarim */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}

/* Sıkça SORULAN SORULAR SAYFASI STİLLERİ */
.faq-section {
    padding-top: 100px;
    padding-bottom: 50px;
    min-height: calc(100vh - 150px);
}

.faq-accordion {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    background-color: #f7f7f7;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e9e9e9;
}

.faq-question i {
    transition: transform 0.4s ease;
    color: #3f51b5;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #fff;
    color: #555;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Cevabin uzunluğuna göre artirabilirsiniz */
    padding: 20px 25px;
}

/* ÜRÜN SAYFASI STİLLERİ */

.products-section {
    padding-top: 100px;
    padding-bottom: 50px;
    background-color: #f9f9f9;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .image-overlay {
    opacity: 1;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: #3f51b5;
    margin-bottom: 15px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background-color: black;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #303f9f;
}
/* ÖZELLİKLER BÖLÜMÜ STİLLERİ */

.features-section {
    padding: 60px 0;
    background-color: #f7f7f7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 48px;
    color: black;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}
/* ÜRÜN DETAY SAYFASI STİLLERİ */
.product-detail-section {
    padding-top: 100px;
    padding-bottom: 50px;
}

.product-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.product-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(50px);
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease-in-out;
}

.product-images.visible-animation {
    transform: translateX(0);
}

.image-thumbnails {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.thumbnail-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.thumbnail-image:hover,
.thumbnail-image.active {
    border-color: #3f51b5;
    transform: scale(1.05);
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 16px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-name {
    font-size: 38px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.product-price {
    font-size: 32px;
    font-weight: 700;
    color: #3f51b5;
    margin-bottom: 25px;
}

.color-options {
    margin-bottom: 25px;
}

.color-options p {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
}

.colors {
    display: flex;
    gap: 10px;
}

.color-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ccc;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.color-circle:hover {
    transform: scale(1.1);
    border-color: #3f51b5;
}

.whatsapp-product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366; /* WhatsApp yeşili */
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-bottom: 30px;
}

.whatsapp-product-btn:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
}

.whatsapp-product-btn i {
    font-size: 24px;
    margin-right: 10px;
}

.phone-number {
    margin-left: 10px;
    font-weight: 400;
}

.product-details h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.product-details ul {
    list-style: none;
    padding: 0;
}

.product-details li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.product-details li i {
    color: #3f51b5;
    margin-right: 10px;
}

/* responsive tasarim */
@media (max-width: 992px) {
    .product-container {
        flex-direction: column;
    }

    .product-images {
        width: 100%;
        transform: translateX(0); /* Mobil görünümde animasyonu kaldir */
    }
} 
/* ORTALANMIŞ ANA SAYFA BLOKLARI */
/* GÖRSEL SAĞDA, YAZILAR SOLDAN HİZALI STİLİ */

.product-detail-section {
    padding-top: 100px;
    padding-bottom: 50px;
}

/* Tüm ürün bloğunu sayfada ortalar */
.product-container {
    max-width: 1200px; /* İçerik için maksimum genişlik */
    margin: 0 auto; /* Sayfada yatayda ortalar */
    
    display: flex;
    justify-content: space-between; /* İki ana bloğu (bilgi ve görsel) ayirir */
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap; /* Mobil görünümde alt alta gelmesi için */
}

/* Sol taraftaki ürün bilgileri kutusu */
.product-info {
    flex: 1; 
    display: flex;
    flex-direction: column;
    /* Metinleri sola hizalar */
    text-align: left;
}

/* Sağ taraftaki görsellerin bulunduğu kutu */
.product-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* İçeriği sağa hizalar */
}

.main-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.image-thumbnails {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.thumbnail-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.thumbnail-image:hover,
.thumbnail-image.active {
    border-color: #3f51b5;
    transform: scale(1.05);
}


/* Eklenen bazi stiller */
.product-info .product-category,
.product-info .product-name,
.product-info .product-price,
.product-info .color-options,
.product-info .whatsapp-product-btn,
.product-info .product-details {
    /* Yazilarin bulunduğu bloklarin hizalanmasi */
    width: 100%; 
    margin-left: 0;
    margin-right: 0;
}


/* Bu kodu ekleyerek butonun sola hizali olmasini sağlayin */
.whatsapp-product-btn {
    align-self: flex-start;
}

/* Ek özellikler için font-awesome ikonu */
.product-details li i {
    color: #3f51b5; /* Mavi tik ikonu */
}

/* Küçük ekranlarda düzenin bozulmamasi için */
@media (max-width: 992px) {
    .product-container {
        flex-direction: column;
        align-items: center;
    }
    
    .product-images,
    .product-info {
        max-width: 100%;
        text-align: left;
        align-items: flex-start;
    }
    .whatsapp-product-btn {
      align-self: flex-start;
    }
}


/* İncele Butonu Stil Örneği */
.product-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #007bff; /* Mavi arka plan rengi */
  color: white; /* Beyaz yazi rengi */
  text-align: center;
  text-decoration: none; /* Alt çizgiyi kaldir */
  border-radius: 5px; /* Yuvarlak köşeler */
  font-weight: bold;
  transition: background-color 0.3s ease; /* Renk geçiş efekti */
}

.product-button:hover {
  background-color: #0056b3; /* Fare üzerine gelince koyu mavi */
}


/* GÜNCELLENMİŞ KATEGORİ BAŞLIĞI STİLİ */
.category-heading {
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

.category-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    letter-spacing: 2px;
    display: inline-block;
    opacity: 0; /* Başlangiçta gizli olacak */
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Animasyon aktif olduğunda başliğin görünmesi */
.category-heading.visible-animation h2 {
    opacity: 1;
    transform: translateY(0);
}

/* Ekstra stil dokunuşlari */
.category-heading h2 .highlight {
    color: #3f51b5;
}

/* Genel Ayarlar */
body {
  margin: 0;
  font-family: sans-serif;
}

/* Çerez Bildirimi Kutusu */
#cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.4s ease-in-out;
}

.cookie-notice-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Küçük ekranlar için sarmalama */
}

#cookie-notice p {
  margin: 0;
  flex: 1;
}

#cookie-notice button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-left: 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#cookie-notice button:hover {
  background-color: #45a049;
}

/* Gizleme ve Gösterme Animasyonu */
.cookie-notice-hidden {
  transform: translateY(100%);
}


/* Genel Ürün Detayları Bölümü */
.product-details {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

.product-details h4 {
  font-size: 1.1rem;
  font-weight: 500; /* Daha ince font */
  margin-bottom: 20px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Her bir detay satırı */
.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid #eee; /* İnce, gri ayırıcı çizgi */
}

/* Detay etiketleri (Renk, Dolap, vb.) */
.detail-label {
  font-weight: 400; /* Normal font ağırlığı */
  color: #555;
  flex: 1; /* Uzun isimler için esnek alan */
}

/* Değerler ve ölçüler */
.detail-value {
  font-weight: 500;
  color: #333;
}

.dims {
  display: flex;
  gap: 15px; /* Ölçüler arası daha fazla boşluk */
  font-size: 0.9rem;
  color: #777;
  white-space: nowrap;
}

/* İlk satırın üst çizgisini kaldırır */
.product-details .detail-row:first-of-type {
  border-top: none;
}

/* Son satırın alt çizgisini kaldırır */
.product-details .detail-row:last-of-type {
  border-bottom: none;
}

