/* =========================================
   1. GLOBAL AYARLAR VE KAPSAYICILAR
========================================= */
:root {
  --primary-color: #6fc276; 
  --bg-soft: #f9fbf9;
  --text-dark: #333;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  overflow-x: hidden; 
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: var(--text-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================
   2. HEADER VE NAVİGASYON
========================================= */
.header {
  height: 100px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-bottom: 8px solid #0f940a;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0;
}

.logo img { 
  height: 70px; 
}

.menu { 
  display: flex; 
  gap: 30px; 
}

.menu a { 
  text-decoration: none; 
  color: #222; 
  font-weight: 500; 
  transition: 0.3s; 
}

.menu a:hover { 
  color: #6BCB77; 
}

.header-btns { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
}

.header-cart-wrap {
  position: relative;
  cursor: pointer;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f7f0;
  border-radius: 50%;
}

.cart-icon {
  font-size: 18px;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff4d4d;
  color: white;
  font-size: 10px;
  font-weight: 600;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-btn {
  padding: 12px 28px;
  border-radius: 35px;
  border: none;
  background: #6BCB77;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #0f940a;
}

.lang-btn {
  padding: 6px 12px;
  border: none;
  border-radius: 20px;
  background: #FFD93D;
  cursor: pointer;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: 15px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #0f940a;
  border-radius: 5px;
}

/* =========================================
   SAĞDAN SÜZÜLEN SEPET PANELİ (SIDEBAR)
========================================= */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -350px; 
  width: 350px;
  height: 100%;
  background: white;
  box-shadow: -5px 0 25px rgba(0,0,0,0.15);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-sidebar.active {
  right: 0; 
}

.cart-sidebar-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-sidebar-header h3 {
  font-weight: 600;
  color: var(--text-dark);
}

.cart-sidebar-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
}

.cart-sidebar-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f5f5f5;
}

.cart-item-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
}

.cart-item-info span {
  font-size: 13px;
  color: #0f940a;
  font-weight: 600;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #ff4d4d;
  cursor: pointer;
  font-size: 14px;
}

.cart-sidebar-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  background: #fafafa;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 16px;
}

.cart-checkout-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
}

/* =========================================
   3. ANA SAYFA SLIDER ALANI (MOBİL UYUMLU 🚀)
========================================= */
.slider { 
  position: relative; 
  width: 100%; 
  max-width: 1200px; 
  aspect-ratio: 16 / 6.5; /* Sabit yükseklik yerine altın oran kullanarak telefonda daralmasını sağladık */
  margin: 30px auto;  
  border-radius: 20px;
  overflow: hidden; 
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.slide { 
  position: absolute; 
  width: 100%; 
  height: 100%; 
  background-size: cover; 
  background-position: center; 
  opacity: 0; 
  transition: opacity 0.8s; 
}

.slide.active { 
  opacity: 1; 
}

.dots { 
  position: absolute; 
  bottom: 15px; 
  width: 100%; 
  text-align: center; 
  z-index: 10; 
}

.dot { 
  display: inline-block; 
  width: 10px; 
  height: 10px; 
  margin: 0 5px; 
  background: rgba(255,255,255,0.5); 
  border-radius: 50%; 
  cursor: pointer; 
}

.dot.active { 
  background: #68b42e; 
  transform: scale(1.2); 
}

.prev, .next { 
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
  font-size: 24px; 
  background: rgba(0,0,0,0.3); 
  color: white; 
  border: none; 
  padding: 8px 12px; 
  border-radius: 50%; 
  cursor: pointer; 
  z-index: 11; 
  transition: var(--transition);
}

.prev:hover, .next:hover {
  background: var(--primary-color);
}

.prev { left: 15px; } 
.next { right: 15px; }

/* =========================================
   4. SEKMELER (TABS)
========================================= */
.tabs-container {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

.tabs-header {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: -10px;
  position: relative;
  z-index: 2;
}

.tab-link {
  background: white;
  border: none;
  padding: 15px 25px;
  border-radius: 15px 15px 0 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #777;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
}

.tab-link.active {
  background: var(--primary-color);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(111, 194, 118, 0.3);
}

.tab-link:hover:not(.active) {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.tabs-body {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  position: relative;
  z-index: 1;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  color: var(--primary-color);
  margin-top: 0;
  font-size: 1.5rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-icon { font-size: 1.2rem; }

/* =========================================
   5. YEMEK MENÜSÜ TABLOSU 
========================================= */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin-top: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.menu-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background-color: white;
  text-align: left;
}

.menu-table th {
  background-color: var(--primary-color);
  color: white;
  padding: 16px;
  font-size: 1.05rem;
  font-weight: 500;
  white-space: nowrap;
}

.menu-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f0f0f0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  vertical-align: top;
}

.menu-table tbody tr:hover {
  background-color: rgba(111, 194, 118, 0.08);
}

.menu-table td strong {
  color: var(--primary-color);
  font-weight: 600;
  display: block;
}

/* =========================================
   6. MEGA GALERİ
========================================= */
.mega-gallery {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.gallery-section-title {
  font-size: 2.2rem;
  color: #0f940a;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  position: relative;
}

.gallery-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  width: 100%; 
  gap: 15px;
  border-radius: 15px;
}

.gallery-card { 
  position: relative; 
  aspect-ratio: 1; 
  overflow: hidden; 
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  transition: var(--transition);
}

.gallery-card img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.5s ease; 
}

.gallery-card:hover img { 
  transform: scale(1.05); 
}

/* =========================================
   7. HAKKIMIZDA SAYFASI PARÇALARI
========================================= */
.about-banner {
  width: 100%;
  height: 400px;
  background-image: url('img/galeri3.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  z-index: 1;
}

.banner-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4); 
  z-index: -1;
}

.banner-content h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-content p {
  font-size: 1.3rem;
  font-weight: 300;
}

.about-story {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

.story-text { flex: 1; }
.story-text h2 {
  color: #0f940a;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.story-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.story-image { flex: 1; }
.story-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 15px 15px 0px var(--primary-color); 
}

.our-values {
  background-color: var(--bg-soft);
  padding: 80px 20px;
  text-align: center;
}

.our-values h2 {
  color: #0f940a;
  font-size: 2.2rem;
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: var(--transition);
  border-bottom: 5px solid var(--primary-color);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(111, 194, 118, 0.2);
}

.value-card .icon { font-size: 3rem; margin-bottom: 15px; }
.value-card h3 {
  color: var(--text-dark);
  margin-bottom: 15px;
  font-size: 1.4rem;
}
.value-card p { color: #666; line-height: 1.6; }

/* =========================================
   8. FOOTER ALANI
========================================= */
.footer {
  background-color: #1e3b20;
  color: #f9fbf9;
  padding: 70px 20px 20px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
}

.footer-col h3 { font-size: 1.8rem; margin-bottom: 15px; }
.footer-col h3 .color-green { color: var(--primary-color); }
.footer-col h4 { font-size: 1.2rem; margin-bottom: 20px; color: var(--primary-color); }
.footer-col p { color: #c9d1c9; line-height: 1.8; font-size: 0.95rem; margin-bottom: 15px; }

.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white; text-decoration: none;
  border-radius: 50%; transition: var(--transition);
  font-size: 1.2rem;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.links-col ul { list-style: none; }
.links-col ul li { margin-bottom: 12px; }
.links-col ul li a { color: #c9d1c9; text-decoration: none; transition: var(--transition); display: inline-block; }
.links-col ul li a:hover { color: var(--primary-color); transform: translateX(5px); }

.footer-bottom { text-align: center; padding-top: 20px; }
.footer-bottom p { font-size: 0.9rem; color: #8b998b; }

/* =========================================
   9. İLETİŞİM SAYFASI ÖZEL STİLLERİ
========================================= */
.contact-banner {
  background-image: url('img/slide1.png');
}

.contact-section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.contact-info-wrap h2 {
  color: #0f940a;
  font-size: 2.3rem;
  margin-bottom: 15px;
}

.contact-desc {
  color: #555;
  line-height: 1.7;
  margin-bottom: 35px;
  font-size: 1.05rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-soft);
  padding: 20px;
  border-radius: 15px;
  border-left: 5px solid var(--primary-color);
  transition: var(--transition);
}

.c-card:hover {
  transform: translateX(8px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.c-icon {
  font-size: 2rem;
  background: white;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.c-text h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.c-text p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-form-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-bottom: 5px solid #0f940a;
}

.contact-form-card h3 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 25px;
  position: relative;
}

.contact-form-card h3::after {
  content: '';
  position: absolute;
  left: 0; bottom: -8px;
  width: 50px; height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.lupin-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 4px rgba(111, 194, 118, 0.15);
}

.form-submit-btn {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  margin-top: 10px;
}

.map-section {
  margin-bottom: 60px;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 6px solid white;
}

/* =========================================
   10. MESAJ ALINDI POPUP STİLLERİ
========================================= */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(30, 59, 32, 0.6);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.popup-card {
  background: white;
  padding: 40px 30px;
  border-radius: 25px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  transform: scale(0.8) translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 6px solid var(--primary-color);
}

.popup-overlay.show .popup-card {
  transform: scale(1) translateY(0);
}

.popup-icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.popup-card h2 {
  color: #0f940a;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.popup-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.popup-close-btn {
  width: 100%;
  padding: 12px;
  font-size: 16px;
}

/* =========================================
   11. YENİLENMİŞ ÜRÜNLER ALANI STİLLERİ
========================================= */
.products-banner-wrap {
  width: 100%;
  height: 400px;
  background-image: url('img/slide2.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  z-index: 1;
}

.products-main-section {
  margin-top: 60px;
  margin-bottom: 80px;
}

.category-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  border: 2px solid #e2e8f0;
  padding: 10px 24px;
  border-radius: 30px;
  font-family: inherit;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, 
.filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  box-shadow: 0 8px 20px rgba(111, 194, 118, 0.25);
}

.products-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 35px;
}

.p-premium-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid #f1f5f9;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.p-premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(111, 194, 118, 0.12);
  border-color: rgba(111, 194, 118, 0.2);
}

.p-badge {
  position: absolute;
  top: 15px; left: 15px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.text-wooden { background: #e3f2fd; color: #1e88e5; }
.text-books { background: #fff3e0; color: #fb8c00; }
.text-kits { background: #f3e5f5; color: #8e24aa; }

.p-image-box {
  width: 100%;
  aspect-ratio: 1.25;
  background: #f8fafc;
  overflow: hidden;
  position: relative;
}

.p-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.p-premium-card:hover .p-image-box img {
  transform: scale(1.06);
}

.p-info-box {
  padding: 25px;
}

.p-info-box h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.p-info-box p {
  color: #627180;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 25px;
  height: 70px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 18px;
}

.p-price {
  font-size: 1.35rem;
  font-weight: 600;
  color: #0f940a;
}

.p-view-btn {
  padding: 8px 20px;
  font-size: 14px;
  border-radius: 12px;
}

/* =========================================
   12. BİLGİ AL MODAL / POPUP STİLLERİ
========================================= */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(30, 59, 32, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: white;
  width: 90%;
  max-width: 750px;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
  position: relative;
  overflow: hidden;
  transform: scale(0.85) translateY(30px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 6px solid #0f940a;
}

.modal-overlay.show .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-x {
  position: absolute;
  top: 15px; right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #94a3b8;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.modal-close-x:hover {
  color: #333;
  transform: rotate(90deg);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.modal-quick-info {
  background: var(--bg-soft);
  padding: 40px 30px;
  border-right: 1px solid #f1f5f9;
}

.modal-quick-info h3 {
  color: #0f940a;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.modal-sub {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 30px;
}

.modal-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.m-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.m-item-icon {
  width: 42px; height: 42px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.m-item-text h4 {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.m-item-text p {
  font-size: 0.85rem;
  color: #555;
}

.modal-form-area {
  padding: 40px;
}

.modal-form-area h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.modal-minimal-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.m-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.m-form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #444;
}

.m-form-group input,
.m-form-group select {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.m-form-group input:focus,
.m-form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 4px rgba(111, 194, 118, 0.12);
}

.m-submit-btn {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  border-radius: 10px;
  margin-top: 10px;
}

/* =========================================
   13. GLOBAL MOBİL UYUM (RESPONSIVE)
========================================= */
@media (max-width: 768px) {
  html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .header { height: 70px; }
  .header .container { padding: 0 20px; }
  .logo img { height: 45px; }
  .hamburger { display: flex; }
  
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0;
    width: 100%;
    background: white;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    text-align: center;
    gap: 15px;
  }
  .menu.active { display: flex; }
  
  .header-btns .cta-btn { 
    display: inline-block !important; 
    padding: 8px 18px; 
    font-size: 13px;
  }

  /* ⚠️ TELEFONLARDA SLIDER EN-BOY ORANINI KORUYAN DÜZENLEME */
  .slider { 
    height: auto !important; /* Sabit yüksekliği ezerek esnek hale getirdik */
    aspect-ratio: 16 / 9;   /* Mobil ekran formatına tam uyumlu en-boy oranı */
    margin: 15px auto;
    border-radius: 0;
  }
  
  .prev, .next { font-size: 16px; padding: 5px 10px; }

  .tabs-header { flex-direction: column; gap: 5px; }
  .tab-link { border-radius: 10px; padding: 10px; font-size: 14px; }
  .tabs-body { padding: 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); } /* Mobilde yan yana şık 2'li düzen */
  
  .banner-content h1 { font-size: 2.2rem; }
  .about-story { flex-direction: column; text-align: center; gap: 30px; margin: 40px auto; }
  .story-image img { box-shadow: 10px 10px 0px var(--primary-color); }
  .our-values { padding: 50px 20px; }
  
  .footer { padding: 50px 20px 20px; }
  .footer-container { gap: 30px; text-align: center; }
  .social-links { justify-content: center; }
  .links-col ul li a:hover { transform: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { flex-direction: column; gap: 20px; }
  .contact-info-wrap { text-align: center; }
  .c-card { text-align: left; }
  .contact-form-card { padding: 25px; }

  .products-premium-grid { grid-template-columns: 1fr; gap: 30px; }
  .category-filter { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 14px; }
  
  .cart-sidebar {
    width: 290px;
    right: -290px;
  }
}

@media (max-width: 680px) {
  .modal-grid { grid-template-columns: 1fr; }
  .modal-quick-info { padding: 30px 25px 20px; border-right: none; border-bottom: 1px solid #e2e8f0; }
  .modal-form-area { padding: 30px 25px; }
  .modal-card { max-width: 400px; }
  .modal-sub { margin-bottom: 15px; }
  .modal-info-list { display: grid; grid-template-columns: 1fr; gap: 12px; }
}

/* =========================================
   14. TANITIM VİDEOSU POPUP STİLLERİ
========================================= */
.video-popup-card {
  max-width: 600px;
  padding: 35px 25px;
}

.popup-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  height: 0;
  margin: 20px 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.popup-video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* =========================================
   LIGHTBOX (AÇILIR GALERİ) STİLLERİ
   ========================================= */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-header {
  width: 85%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}

.lightbox-header h2 {
  color: white; 
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 1px;
}

.lightbox-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  transition: all 0.2s;
}

.lightbox-close:hover {
  transform: rotate(90deg);
  color: #6BCB77;
}

.lightbox-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 85%;
  max-height: 75%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  object-fit: contain;
  user-select: none;
}

/* Sağ-Sol Navigasyon Okları */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: white;
  font-size: 26px;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s;
  user-select: none;
}

.lightbox-nav:hover {
  background: #6BCB77;
  color: white;
}

.lightbox-prev { left: -80px; }
.lightbox-next { right: -80px; }

@media (max-width: 768px) {
  /* ... Diğer mevcut mobil stillerin ... */

  /* ⚠️ SLIDER'I TELEFONLARDA DAHA BASIK VE KÜÇÜK YAPACAK AYAR */
  .slider { 
    height: auto !important;
    aspect-ratio: 16 / 6.5 !important; /* Buradaki 6.5 değerini 5.5 veya 5 yaparsan slider dikeyde daha da küçülür */
    margin: 10px auto !important;
    border-radius: 0;
  }

  /* Telefon ekranlarında sağ-sol yön butonlarını biraz daha küçültüyoruz */
  .prev, .next {
    font-size: 14px !important;
    padding: 4px 8px !important;
  }

  /* Alt taraftaki noktaları (dots) görsele çok girmesin diye biraz yukarı veya aşağı hizalayabilirsin */
  .dots {
    bottom: 8px !important;
  }
}