/* Genel Ayarlar */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;

    }


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

.social-fixed {
  position: fixed;
  top: 45%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.social-fixed a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: white;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.social-fixed a:hover {
  background-color: #f2f2f2;
}

.social-fixed svg {
  width: 24px;
  height: 24px;
}

/* Kapsayıcı */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* === Top Bar (aynı kalabilir) */
.topbar {
  background-color: #222; /* koyu gri */
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 40px;
  font-size: 14px;
}

.topbar-left span {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.topbar-right a {
  color: white;
  margin-left: 12px;
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 1px solid white;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-size: 13px;
  transition: 0.3s;
}

.topbar-right a:hover {
  background: white;
  color: #222;
}

/* === Header & Logo */
.main-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 20px 15px 0;
}

.logo-center img {
  max-height: 80px;
  width: auto;
  margin-bottom: 20px;
}

/* === Menü ve Buton Satırı */
.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Menü */
.menu ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.menu a {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu a.active,
.menu a:hover {
  color: #ddb770;
}

/* Buton */
.quote-btn a {
  background-color: #ddb770;
  color: #fff;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.quote-btn a:hover {
  background-color: #caa24f;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-row {
    flex-direction: column;
    align-items: center;
  }

  .quote-btn {
    margin-top: 10px;
  }
}
/* ------ Menü ------ */
.main-menu ul{
  list-style:none;
  margin:35px 0 0;
  padding:0;
  display:flex;
  justify-content:center;
  gap:55px;                         /* maddeler arası mesafe */
  flex-wrap:wrap;
}

.main-menu a{
  position:relative;                /* alt çizgi için */
  font-family:'Poppins',sans-serif;
  font-size:15px;
  font-weight:600;
  letter-spacing:.5px;
  text-decoration:none;
  color:#000;
  transition:color .25s ease;
}

/* Alt çizgi (pseudo-element) */
.main-menu a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-8px;                      /* metnin hemen altı */
  width:0;
  height:2px;
  background:#c6943e;               /* orijinal altın tonu */
  transition:width .45s ease;       /* yavaş soldan sağa */
  transform-origin:left center;
}

/* Hover & Active durumları */
.main-menu a:hover,
.main-menu a.active{
  color:#c6943e;
}

.main-menu a:hover::after,
.main-menu a.active::after{
  width:100%;
}

/* --------- Responsive küçük ekran dokunuşu --------- */
@media(max-width:768px){
  .main-menu ul{gap:25px}
  .logo-wrap img{max-height:90px}
}



/* Header */
.header {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  float: left;
}

.header nav {
  float: right;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-list li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.nav-list li a:hover {
  color: #007bff;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.products {
  padding: 4rem 0;
}
.section-header h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.products-grid {
  display: grid;
  /* Masaüstünde 3 sütun */
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.product-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
}
.image-container {
  height: 180px;
  overflow: hidden;
}
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .image-container img {
  transform: scale(1.05);
}
.card-content {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.card-content h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: .75rem;
}
.card-content p {
  color: #ccc;
  font-size: .9rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.btn {
  margin-top: auto;
  display: inline-block;
  padding: .6rem 1.5rem;
  border-radius: 50px;
  background: #dcb25f;
  color: #111;
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  text-align: center;
  transition: background .3s;
}
.btn:hover {
  background: #c5a052;
}

/* Tablet: 2 sütun */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Mobil: 1 sütun */
@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .image-container {
    height: 150px;
  }
}

/* Catalog Section Container */
.catalog-section {
  background-color: var(--light-bg);
  padding: 4rem 0;
  font-family: var(--font-main);
}

/* Header */
.catalog-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.catalog-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.catalog-header h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}
.catalog-header p {
  margin-top: 0.5rem;
  color: var(--subtext-color);
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Button Grid */
.catalog-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Individual Button */
.catalog-btn {
  background-color: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 4px 8px var(--shadow-light), 0 8px 16px var(--shadow-dark);
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--text-color);
  font-size: 0.95rem;
  font-weight: 600;
  flex: 1 1 160px;
  max-width: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.catalog-btn i {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-right: 0.6rem;
}
.catalog-btn span {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hover & Focus Effects */
.catalog-btn:hover,
.catalog-btn:focus {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px var(--shadow-light), 0 12px 24px var(--shadow-dark);
  background: linear-gradient(135deg, #fff, #f5f5f5);
}

/* Responsiveness */
@media (max-width: 768px) {
  .catalog-header h2 {
    font-size: 2rem;
  }
  .catalog-header p {
    font-size: 1rem;
  }
  .catalog-btn {
    flex: 1 1 100%;
    max-width: none;
    justify-content: center;
  }
}

/* ===============================
   Layout & Sidebar
   =============================== */
.product-tabs-section {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  align-items: flex-start;;
}
.sidebar {
  width: 300px;
  display: flex;
  flex-direction: column;
}

/* ===============================
   Tabs (left column top)
   =============================== */
.product-tabs {
  background: #f0f0f0;
  padding: 6px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.5rem;
}
.product-tabs .tab {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s;
}
.product-tabs .tab.active {
  background: #e5c176;
}
.product-tabs .tab:not(.active):hover {
  background: #333;
}

/* ===============================
   Promo Box
   =============================== */
.promo-box {
  background: #222;
  color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.promo-box h4 {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}
.promo-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.promo-box p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ===============================
   Quote Form Styles
   =============================== */
/* Compact & Centered Quote Form */
.quote-form {
  width: 90%;            /* responsive up to the max-width */
  max-width: 480px;      /* increased from 360px */
  margin: 0 auto 1rem;   /* center horizontally */
    margin-top: 5rem;   /* one “gap” */

}


/* Form groups */
.quote-form .form-group {
  margin-bottom: 0.75rem;
}

.quote-form .form-group.inline {
  display: flex;
  gap: 0.5rem;
}

/* Labels */
.quote-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #333333;
  margin-bottom: 0.3rem;
}

/* Inputs */
.quote-form input {
  width: 100%;
  padding: 0.4rem 0.6rem;
  font-size: 0.9rem;
  color: #222222;
  background: #f9f9f9;
  border: 1px solid #dddddd;
  border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.quote-form input:focus {
  background: #ffffff;
  border-color: #e5c176;                  /* accent on focus */
  box-shadow: 0 0 0 3px rgba(229, 193, 118, 0.3);
  outline: none;
}

/* Submit Button */
.btn-quote {
  width: 100%;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  background: linear-gradient(90deg, #e5c176, #d4a54a);
  border: none;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-quote:hover {
  transform: translateY(-1px);
  background: linear-gradient(90deg, #d4a54a, #b7892f);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.btn-quote:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
/* ===============================
   Main Content Panels
   =============================== */
.content {
  width: 100%;
  border-radius: 8px;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.main-image {
  width: 100%;
  max-height: 500px;        /* <-- adjust this value until it matches your promo‐box height */
  object-fit: cover;
  border-radius: 8px;
}
.description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
}

/* ===============================
   Thumbnails Row
   =============================== */
/* Thumbnails Container */
.thumbnails {
  display: flex;
  justify-content: space-between;  /* tüm resimleri eşit boşlukla yayar */
  gap: 0.75rem;                     /* resimler arası sabit boşluk */
  margin-top: 1rem;
}

/* Her bir küçük resim */
.thumbnails img {
  /* 4 parça + 3 boşluk hesaba katılarak genişlik hesaplanıyor */
  flex: 0 0 calc((100% - (3 * 0.75rem)) / 4);
  width: calc((100% - (3 * 0.75rem)) / 4);
  height: 100px;                    /* 100px yükseklik */
  object-fit: cover;
  border-radius: 8px;
}

/* ===============================
   Responsive
   =============================== */
@media (max-width: 900px) {
  .product-tabs-section {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    order: 2;
  }
  .content {
    order: 1;
  }
  .thumbnails {
    overflow-x: auto;
  }
}


    .footer {
  background: #191919;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding-top: 2rem;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.feature-box {
  display: flex;
  gap: 1rem;
  max-width: 250px;
  flex: 1;
}
.feature-number {
  font-size: 2.5rem;
  color: #eab85b;
  font-weight: bold;
}
.feature-content strong {
  display: block;
  color: #fff;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  padding: 3rem 0;
  flex-wrap: wrap;
  text-align: left;
  gap: 2rem;
}
.footer-col {
  flex: 1;
  min-width: 200px;
  padding: 1rem;
}
.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #fff;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  line-height: 2;
}
.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #eab85b;
}
.footer-col .tag {
  background-color: #eab85b;
  color: #111;
  padding: 0 5px;
  border-radius: 5px;
  font-size: 0.7rem;
  margin-left: 5px;
}
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.logo-col img {
  max-width: 100px;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .footer-top, .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .feature-box {
    max-width: 100%;
    justify-content: center;
  }
  .footer-col {
    padding: 0.5rem;
  }
}

