/*
Theme Name: LightningWP
Theme URI: https://github.com/aagedik/lightningwp
Author: Ahmet Gedik
Author URI: mailto:aagedik@gmail.com
Description: AG Lightning WP, 2025'in tüm tasarım ve hız trendlerini bir arada sunan, eklentisiz ve ultra hızlı bir WordPress temasıdır. Neumorphism ve glassmorphism efektlerinin modern bir sentezi, mikro-interaktiviteler, dinamik renk geçişleri ve içerik odaklı düzeni ile öne çıkar. Sıfır eklentiyle; slider, renk ve tipografi ayarları, sosyal medya ve iletişim ikonları, bülten formu, karanlık/aydınlık mod ve daha fazlası native olarak gelir. Tüm kodları optimize, SEO uyumlu ve Lighthouse skoru 98+ hedefli. Demo içerik, Customizer'dan yönetilebilir alanlar ve örnek sayfa/yazı ile kurulumdan itibaren profesyonel bir görünüm sunar. Hedefiniz hız ve kullanıcı deneyimi ise, LightningWP tam size göre!
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lightningwp
== Changelog ==
1.1 - 2025-05-02
- WebP desteği eklendi
- Renk kontrastı iyileştirildi
- Header logo erişilebilirliği artırıldı

1.0 - İlk sürüm
Tags: fast, minimal, modern, responsive, seo, glassmorphism, neumorphism, 2025, zero plugin, sıfır eklenti, plugin-free
*/

/* =============================
   === GENEL HEADER STİLLERİ ===
   ============================= */
   
/* Slider Modern */
.hero-slider {
  width: 100vw;
  max-width: 100vw;
  min-height: 90vh;
  height: 90vh;
  overflow: hidden;
  position: relative;
  margin: 0;
  padding: 0;
}

.hero-slider .slide {
  width: 100vw;
  min-height: 90vh;
  height: 90vh;
  transition: opacity .6s cubic-bezier(0.4,0.0,0.2,1);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  /* position: relative; */ /* Kaldırıldı - absolute ile çakışıyor */
  overflow: hidden;
}

/* Yeni: Slider arka plan resmi için */
.slide-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.hero-slider .slide.active { 
  opacity: 1; 
  pointer-events: auto; 
  position: relative; 
  z-index: 2; 
  transition: opacity .6s cubic-bezier(0.4,0.0,0.2,1);
  background: #6e45e2; 
}

/* Düzenlendi: Slider içeriği için temel ve duyarlı stiller */
.hero-slider .content {
  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  max-width: 90%;
  height: auto;
  background: rgba(255, 255, 255, 0.90);
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  padding: 12px 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  z-index: 5;
}

/* Media Query: Tabletler ve altı */
@media (max-width: 768px) {
  .hero-slider .content {
    left: 5%;
    width: 90%;
    max-width: 400px;
    padding: 10px 20px;
  }
  .hero-slider .gradient-text {
    font-size: 1rem !important;
  }
  .hero-slider .content p {
    font-size: 0.85rem !important;
    margin-bottom: 8px;
  }
  .hero-slider .cta-button {
    font-size: 0.9rem !important;
    padding: 5px 12px;
    margin-top: 6px;
  }
}

/* Media Query: Mobil telefonlar */
@media (max-width: 480px) {
  .hero-slider .content {
    left: 5%;
    width: 90%;
    padding: 8px 15px;
  }
  .hero-slider .gradient-text {
    font-size: 0.9rem !important;
  }
  .hero-slider .content p {
    font-size: 0.8rem !important;
    margin-bottom: 6px;
  }
  .hero-slider .cta-button {
    font-size: 0.85rem !important;
    padding: 4px 10px;
    margin-top: 4px;
  }
}

.hero-slider .progress-bar { 
  position: absolute; 
  left: 0; 
  bottom: 0; 
  height: 5px; 
  background: linear-gradient(90deg,#00d084,#6e45e2); 
  transition: width .7s; 
  z-index: 10; 
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.6rem;
  color: #00d084;
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, color .18s;
}

.slider-arrow-left {
  left: 16px;
}

.slider-arrow-right {
  right: 16px;
}

.slider-arrow:hover {
  background: #00d084;
  color: #fff;
}

/* === HAKKIMIZDA MODÜLÜ === */
.about-module {
  margin: 64px 0 48px 0;
  padding: 0 0 32px 0;
  background: #f9fafc;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px;
}

.about-images {
  position: relative;
  width: 510px;
  min-width: 320px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img {
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  object-fit: cover;
  position: absolute;
  transition: box-shadow .3s;
}

.about-img-top {
  width: 66%;
  height: 60%;
  left: 0;
  top: 0;
  z-index: 2;
}

.about-img-bottom {
  width: 66%;
  height: 60%;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.about-content {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}

.about-title {
  color: #00d084;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: .01em;
}

.about-desc {
  color: #222;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.5;
}

.about-btn {
  display: inline-block;
  padding: 10px 28px;
  background: linear-gradient(90deg,#00d084,#6e45e2);
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 10px;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.about-btn:hover {
  background: linear-gradient(90deg,#6e45e2,#00d084);
  color: #fff;
}

/* === NELER YAPIYORUZ MODÜLÜ === */
.services {
  background: #fff;
  padding: 48px 0 32px 0;
}

.services-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 32px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.service-card {
  background: #f9fafc;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 32px 24px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: box-shadow .2s;
}

.service-card:hover {
  box-shadow: 0 6px 32px rgba(0,0,0,0.10);
}

.service-card h3 {
  font-size: 1.18rem;
  font-weight: 600;
  color: #6e45e2;
  margin: 12px 0 4px 0;
}

.service-card p {
  font-size: 1rem;
  color: #333;
  margin: 0;
}

/* === SON YAZILAR === */
.recent-posts-section {
  background: #fff;
  padding: 64px 0 54px 0;
}

.recent-posts-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.recent-posts-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 38px;
}

.recent-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.recent-post-card {
  background: #f9fafc;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(110,69,226,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .22s, transform .18s;
  min-width: 0;
}

.recent-post-card:hover {
  box-shadow: 0 6px 32px rgba(110,69,226,0.13);
  transform: translateY(-4px) scale(1.025);
}

.recent-post-img-wrap {
  display: block;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #eaeaea;
}

.recent-post-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  transition: transform .3s;
  display: block;
}

.recent-post-card:hover .recent-post-img {
  transform: scale(1.06);
}

.recent-post-content {
  padding: 22px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
}

.recent-post-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #23272f;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.recent-post-title a {
  color: inherit;
  text-decoration: none;
  transition: color .18s;
}

.recent-post-title a:hover {
  color: #6e45e2;
}

.recent-post-meta {
  font-size: 0.96rem;
  color: #888;
  margin-bottom: 4px;
}

.recent-post-cat {
  color: #00d084;
  text-decoration: none;
  font-weight: 600;
  margin-left: 2px;
  transition: color .18s;
}

.recent-post-cat:hover {
  color: #6e45e2;
}

.recent-post-excerpt {
  color: #444;
  font-size: 1.07rem;
  margin: 8px 0 16px 0;
  line-height: 1.5;
  min-height: 44px;
}

.recent-post-more {
  display: inline-block;
  padding: 8px 22px;
  background: linear-gradient(90deg,#00d084,#6e45e2);
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 6px;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.recent-post-more:hover {
  background: linear-gradient(90deg,#6e45e2,#00d084);
  color: #fff;
}

/* === SINGLE POST MODERN === */
.single-featured-img-banner-wrap {
  width: 100%;
  max-width: 100vw;
  height: 250px;
  overflow: hidden;
  margin: 0 auto 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-featured-img-banner {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.single-featured-img-header {
  width: 100%;
  height: 120px;
  overflow: hidden;
  background: #f5f5f5;
  margin: 0 auto;
  position: relative;
}

.single-featured-img-header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.single-content-with-img {
  display: flex;
  flex-direction: row-reverse;
  gap: 30px;
  align-items: flex-start;
}

.featured-img-wrapper {
  flex: 0 0 320px;
  max-width: 320px;
}

.single-featured-img-inside {
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  height: auto;
  max-width: 100%;
  margin-bottom: 10px;
}

.single-content-text {
  flex: 1 1 0;
  max-width: 100%;
  overflow-wrap: break-word;
  white-space: normal;
}

.single-header.align-left, 
.single-title.align-left, 
.single-meta.align-left {
  text-align: left !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

.single-title.align-left {
  font-size: 2rem;
  margin-bottom: 6px;
}

.single-meta.align-left {
  font-size: 0.98rem;
  gap: 10px;
}

.single-featured-img-inline {
  float: left;
  width: 360px;
  height: 280px;
  object-fit: cover;
  margin: 0 18px 10px 0;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  display: block;
}

.tag-link {
  color: #222;
  text-decoration: underline;
  font-weight: 600;
  padding: 1px 9px;
  border-radius: 6px;
  background: none;
  transition: color .18s;
}

.tag-link:hover {
  color: #00d084; 
  background: none;
}

.single-share svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  width: 22px;
  height: 22px;
}

.single-share.align-left {
  justify-content: flex-start;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  gap: 8px;
}

.single-share span {
  margin-right: 10px;
}

/* Modern yorum alanı */
.modern-comments-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 600px;
  margin: 32px 0 0 0;
  padding: 24px 0 0 0;
  border-top: 1px solid #f0f0f0;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  min-height: 350px;
}

.modern-comment-form {
  align-items: flex-start;
  width: 100%;
  position: relative;
}

.modern-comment-form input[type="text"],
.modern-comment-form input[type="email"],
.modern-comment-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  padding: 10px 14px;
  font-size: 1.04rem;
  background: #f7f7f7;
  transition: border .18s;
  outline: none;
  box-sizing: border-box;
}

.modern-comment-btn {
  position: absolute;
  right: 0;
  bottom: -56px;
  background: linear-gradient(90deg,#00d084 0%,#6e45e2 100%);
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 12px 38px;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: background .18s, box-shadow .18s;
  margin-top: 8px;
}

.modern-comment-btn:hover {
  background: linear-gradient(90deg,#6e45e2 0%,#00d084 100%);
  box-shadow: 0 4px 16px rgba(0,0,0,0.09);
}

.single-featured-img-wrap {
  width: 1200px;
  max-width: 96vw;
  height: 120px;
  overflow: hidden;
  margin: 0 auto 22px auto;
  background: #f5f5f5;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-featured-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  display: block;
}

.single-container {
  width: 1200px;
  max-width: 98vw;
  margin: 84px auto 0 auto;
  padding: 0 0 24px 0;
}

.single-header {
  text-align: center;
  padding: 0 0 14px 0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 22px;
}

.single-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #23272f;
  margin: 0 0 10px 0;
  letter-spacing: .01em;
  text-align: center;
}

.single-meta {
  font-size: 1.06rem;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}

.single-cats {
  color: #23272f;
  font-weight: 600;
  margin-left: 6px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.cat-sep {
  color: #b0b0b0;
  margin: 0 8px;
  font-size: 1.1em;
}

.single-layout {
  display: flex;
  gap: 76px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 0;
}

.sidebar-right .single-main {
  order: 1;
}

.sidebar-right .single-sidebar {
  order: 2;
}

.sidebar-left .single-sidebar {
  order: 1;
}

.sidebar-left .single-main {
  order: 2;
}

.single-main {
  flex: 1 1 0;
  min-width: 0;
  max-width: 900px;
}

.single-sidebar {
  width: 270px;
  min-width: 170px;
  max-width: 320px;
  position: sticky;
  top: 98px;
  align-self: flex-start;
  background: #fafbfc;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  padding: 22px 16px 18px 16px;
  margin-bottom: 24px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.reading-time {
  font-size: 1.08rem;
  color: #00d084;
  margin-bottom: 12px;
  font-weight: 600;
  text-align: center;
}

.single-tags {
  margin: 18px 0 8px 0;
  font-size: 1.04rem;
  color: #23272f;
  text-align: center;
}

.single-tags .tag {
  display: inline-block;
  background: #f2f7f5;
  color: #23272f;
  border-radius: 6px;
  padding: 2px 10px;
  margin-right: 0;
  font-size: 0.98rem;
  font-weight: 600;
}

.tag-sep {
  color: #b0b0b0;
  margin: 0 6px;
  font-size: 1.1em;
}

.single-nav {
  display: flex;
  justify-content: space-between;
  margin: 28px 0 18px 0;
  gap: 16px;
}

.single-prev, .single-next {
  color: #6e45e2;
  font-weight: 700;
  font-size: 1.06rem;
}

.single-share {
  margin: 18px 0 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  justify-content: center;
}

.single-share svg {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  fill: #00d084;
  transition: fill .18s;
}

.single-share a:hover svg {
  fill: #6e45e2;
}

.single-comments {
  width: 600px;
  max-width: 98vw;
  margin: 32px auto 0 auto;
  padding: 24px 0 0 0;
  border-top: 1px solid #f0f0f0;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.comment-list {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 24px auto;
  list-style: none;
  padding: 0;
}

.comment-list li {
  border-bottom: 1px solid #eee;
  padding: 14px 0 10px 0;
  margin: 0;
  font-size: 1.01rem;
}

.comment-list li:last-child {
  border-bottom: none;
}

.comments-title {
  text-align: center;
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #23272f;
}

/* Kategori Sayfası Stilleri */
.category-hero {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-bottom: 32px;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.category-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cat-posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.cat-post {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  text-align: center;
  transition: box-shadow .2s;
}

.cat-post:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
}

.cat-post img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.cat-post h3 {
  font-size: 18px;
  margin: 0;
  color: #333;
}

/* Breadcrumb */
.cat-breadcrumb {
  max-width: 1200px;
  margin: 18px auto 18px auto;
  font-size: 15px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 8px;
}

.cat-breadcrumb a {
  color: #6e45e2;
  text-decoration: none;
  transition: color .2s;
}

.cat-breadcrumb a:hover {
  color: #ff7e5f;
  text-decoration: underline;
}

.cat-breadcrumb .sep {
  color: #bbb;
  margin: 0 2px;
  font-weight: bold;
}

.cat-breadcrumb .current-cat {
  color: #333;
  font-weight: bold;
}

/* SAYFA ŞABLON CSS */
.page-content-outer {
  max-width: 1200px;
  margin: 0 auto 48px auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.04);
  padding: 32px 24px;
}

.page-header {
  margin-bottom: 24px;
}

.page-title {
  font-size: 1.4rem;
  color: #222;
  margin: 0;
  font-weight: 700;
}

.page-content {
  font-size: 1.08rem;
  color: #444;
  line-height: 1.7;
}

.page-featured-image img {
  width: 100%;
  max-width: 1200px;
  height: 408px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 24px auto 0 auto;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.06);
}

/* Ürün Arşiv Sayfası Stilleri */
.product-archive {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Arial', sans-serif;
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.product-item {
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 15px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  transform: perspective(500px) translateZ(0);
}

/* Border Animasyonu */
.product-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4CAF50, #2196F3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}

/* 3D Hover Efekti */
.product-item:hover {
  transform: perspective(500px) translateZ(10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-item:hover::before {
  transform: scaleX(1);
}

/* Pulsing Shadow Efekti */
@keyframes pulseShadow {
  0% { box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(33, 150, 243, 0); }
  100% { box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
}

.product-item:hover {
  animation: pulseShadow 1.5s infinite alternate;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
  min-height: 44px;
  transition: color 0.3s ease;
}

.product-item:hover .product-title {
  color: #2196F3;
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: #d32f2f;
  margin: 10px 0;
  transition: transform 0.3s ease;
}

.product-item:hover .product-price {
  transform: scale(1.05);
}

.product-stock {
  font-size: 14px;
  color: #388e3c;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.product-stock.out-of-stock {
  color: #f44336;
}

.product-btn {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 10px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateY(0);
}

.product-btn:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Teknik Özellikler Listesi */
.teknik-ozellikler-listesi {
  list-style-type: disc;
  padding-left: 24px;
  margin: 10px 0 10px 0;
  display: block;
}

.teknik-ozellikler-listesi li {
  margin-bottom: 6px;
  display: list-item;
  font-size: 1.05em;
  color: #222;
}

/* Ürün Detay Sayfası Stilleri */
.product-single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.4s ease;
  position: relative;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* Gradient Border Efekti */
.product-detail::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff5722, #3f51b5);
  z-index: -1;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-detail:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.product-detail:hover::after {
  opacity: 0.8;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.product-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: zoom-in;
}

.product-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-gallery img:first-child {
  grid-column: span 2;
}

.product-tech {
  margin-top: 30px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.product-tech:hover {
  background: #f1f1f1;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-tech h3 {
  margin-top: 0;
  color: #333;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 10px;
  transition: color 0.3s ease;
}

.product-tech:hover h3 {
  color: #2196F3;
}

.product-tech table {
  width: 100%;
  border-collapse: collapse;
}

.product-tech table tr {
  transition: background-color 0.3s ease;
}

/* Ürün Teknik Özellikler Tablosu Stilleri */
.product-tech table tr:hover {
  background-color: #e3f2fd;
}

.product-tech table tr:nth-child(even) {
  background: #f1f1f1;
}

.product-tech table td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  transition: padding 0.3s ease;
}

.product-tech table tr:hover td {
  padding-left: 15px;
}

/* Responsive Düzen */
@media (max-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-list {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .product-tech table tr:hover td {
    padding-left: 10px;
  }
}

@media (max-width: 480px) {
  .product-list {
    grid-template-columns: 1fr;
  }
  
  .product-gallery {
    grid-template-columns: 1fr;
  }
  
  .product-gallery img:first-child {
    grid-column: span 1;
  }
}

/* Son Yazılar Mobil Uyumluluk */
@media (max-width: 768px) {
  .recent-posts-grid {
    grid-template-columns: 1fr; /* Tek sütunlu düzene geç */
    gap: 24px; /* Sütunlar arası boşluğu ayarla (isteğe bağlı) */
  }
}

/* İsteğe bağlı: Daha küçük mobil cihazlar için ek ayarlar */
/*
@media (max-width: 480px) {
  .recent-post-card {
    // Mobil için kart özelinde ek stil gerekirse buraya eklenebilir
  }
}
*/

/* =============================
   === FOOTER STİLLERİ ===
   ============================= */

.site-footer {
  background-color: #f8f9fa; /* Açık gri arka plan */
  color: #6c757d; /* Biraz daha soluk metin rengi */
  padding: 40px 0 20px 0;
  border-top: 1px solid #e9ecef; /* Üstte ince bir çizgi */
  font-size: 0.95rem;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.footer-top {
  display: flex;
  flex-direction: column; /* Varsayılan olarak alt alta */
  align-items: center; /* Ortala */
  gap: 20px; /* Öğeler arası boşluk */
  margin-bottom: 30px;
  text-align: center;
}

.footer-socials a {
  color: #6c757d;
  margin: 0 8px;
  transition: color 0.2s ease-in-out;
}

.footer-socials a:hover {
  color: #007bff; /* Veya temanızın ana rengi */
}

.footer-socials svg {
    width: 22px;
    height: 22px;
    vertical-align: middle;
}

.footer-description {
  max-width: 600px; /* Açıklamanın çok geniş olmasını engelle */
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  flex-direction: column; /* Varsayılan olarak alt alta */
  align-items: center; /* Ortala */
  gap: 10px; /* Öğeler arası boşluk */
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
  font-size: 0.9rem;
  text-align: center;
}

.footer-legal-links a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.footer-legal-links a:hover {
  color: #007bff; /* Veya temanızın ana rengi */
  text-decoration: underline;
}

.footer-legal-links .link-separator {
  margin: 0 8px;
  color: #ced4da; /* Ayırıcı rengi */
}

/* Orta Boy Ekranlar ve Üzeri İçin Düzenlemeler */
@media (min-width: 768px) {
  .footer-top {
    flex-direction: row; /* Yan yana */
    justify-content: space-between; /* Aralarına boşluk koy */
    align-items: center;
    text-align: left;
  }

  .footer-description {
      text-align: left; /* Soldan hizala */
      max-width: none; /* Geniş ekranda limiti kaldır */
      flex: 1; /* Esnek genişlik */
      margin-left: 30px; /* Sosyal ikonlardan boşluk */
  }
  
  .footer-socials {
    flex-shrink: 0; /* Küçülmesini engelle */
  }

  .footer-bottom {
    flex-direction: row; /* Yan yana */
    justify-content: space-between; /* Aralarına boşluk koy */
    align-items: center;
    text-align: left;
  }

   .footer-legal-links {
     text-align: right;
   }
}