/* CSS Değişkenleri */
:root { 
  --primary: #d1c0a5; 
  --primary-dark: #b8a892; 
  --primary-light: #e8ddd0; 
  --secondary: #c5af8d; 
  --secondary-dark: #a8957a; 
  --secondary-light: #d4c4a8; 
  --accent: #8b7355; 
  --accent-light: #a08b6a; 
  --white: #fff; 
  --black: #000; 
  --gray-light: #f8f9fa; 
  --gray: #6c757d; 
  --gray-dark: #495057; 
}

/* Genel Stiller */
body {
  font-family: "Libertinus Mono", monospace;
  background: #fff;
  font-size: 16px !important;
}

h1, h2, h3, h4, h5, h6, .fw-bold { 
  font-family: "Libertinus Mono", monospace;
}

/* Ürün Detay Sayfası */
.product-main-img { 
  max-width: 100%;  
  object-fit: cover; 
}

.gallery-thumbs { 
  display: flex; 
  gap: 10px; 
  margin-top: 18px; 
}

.gallery-thumb { 
  cursor: pointer; 
  border: 2px solid #eee; 
  border-radius: 4px; 
  width: 64px; 
  height: 64px; 
  object-fit: cover; 
  transition: .2s; 
}

.gallery-thumb.active, .gallery-thumb:hover { 
  border-color: var(--primary); 
}

.product-box { 
  padding: 32px 28px; 
  margin-bottom: 32px; 
}

.icon-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); 
  gap: 16px; 
}

.icon-item { 
  text-align: center; 
  font-size: 15px; 
}

.icon-item img { 
  width: 60px; 
  height: 48px; 
  object-fit: cover; 
  margin-bottom: 6px; 
  border-radius: 6px; 
}

/* Tablo Stilleri */
.product-table th, .product-table td { 
  vertical-align: middle; 
  font-size: 15px; 
  border: solid thin var(--primary);
}

.product-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  width: 33%;
}

.product-table {
  border-radius: 0px;
  overflow: hidden;
  text-align: center;
  width: 100%;
}

.product-table ul li { 
  list-style: none; 
}

/* Ürün Filtreleri */
.product-filters { 
  font-size: 15px; 
  color: var(--primary); 
  margin-bottom: 18px; 
}

.product-filters span { 
  background: var(--primary); 
  color: var(--white); 
  border-radius: 6px; 
  padding: 4px 14px; 
  margin-right: 8px; 
   
}

/* Ürün Aksiyonları */
.product-actions { 
  margin-top: 32px; 
  display: flex; 
  gap: 24px; 
}

.product-actions a { 
  text-decoration: none; 
   
  font-weight: 600; 
  font-size: 16px; 
  display: flex; 
  align-items: center; 
  gap: 8px; 
}

.product-actions .desc { 
  color: var(--secondary); 
}

.product-actions .detail { 
  color: var(--primary); 
}

.product-actions .request { 
  color: var(--white); 
  background: var(--secondary); 
  border-radius: 6px; 
  padding: 8px 18px; 
}

/* Form Elemanları */
.bg-light {
  background-color: white !important;
}

.form-select { 
  font-size: 16px; 
  border: 1px solid var(--primary-light);
  border-radius: 6px;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(209, 192, 165, 0.25);
  outline: none;
}

.btn { 
  font-size: 16px; 
  background: var(--primary); 
  border: 1px solid var(--primary); 
  color: var(--white); 
  padding: 8px 20px; 
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn:hover { 
  background: var(--primary-dark); 
  border-color: var(--primary-dark); 
  color: var(--white); 
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(209, 192, 165, 0.3);
}

/* Header ve Navigasyon */
.lang_header { 
  display: inline-block;
  vertical-align: middle;
  border-radius: 3px;
  overflow: hidden;
}

.sticky-navbar { 
  position: sticky; 
  top: 0; 
  z-index: 1030; 
  box-shadow: 0 2px 12px rgba(0,0,0,0.1); 
  background: var(--white); 
}

.social-icons a { 
  color: var(--primary); 
  font-size: 1.3rem; 
  margin-left: 12px; 
  transition: color .2s; 
}

.social-icons a:hover { 
  color: var(--secondary); 
}

/* Responsive */
@media (max-width: 991px) { 
  .product-box { 
    padding: 18px 8px; 
  } 
}

/* Kategori Stilleri */
.maincategory {
  background: var(--primary);
  background: linear-gradient(90deg, rgba(209, 192, 165, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(209, 192, 165, 1) 100%);
}

.maincategory img { 
  width: 100%; 
}

/* Header Title */
.header-title {
  width: 100%;
  min-height: 300px;
  max-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.header-title .overlay { 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  background: rgba(0,0,0,0.4); 
  z-index: 1; 
}

.header-title .container { 
  position: relative; 
  z-index: 2; 
}

.header-title h1 { 
  font-size: 3rem; 
  font-weight: 700; 
  margin-bottom: 1rem; 
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7); 
}

.header-title p { 
  font-size: 1.2rem; 
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7); 
}

@media (max-width: 768px) { 
  .header-title { 
    min-height: 200px; 
    padding: 40px 0 !important; 
  }
  
  .header-title h1 { 
    font-size: 2rem; 
  }
  
  .header-title p { 
    font-size: 1rem; 
  }
}

/* Breadcrumb */
.breadcrumb { 
  background: var(--primary); 
  margin: 0; 
  padding: 6px 0; 
}

.breadcrumb-item a { 
  color: var(--white); 
  text-decoration: none; 
  font-weight: 500; 
}

.breadcrumb-item a:hover { 
  color: var(--secondary); 
}

/* Ürün Kartları */
.product-card img { 
  transition: border-radius 0.5s ease; 
}

.product-card img:hover { 
  border-radius: 20px; 
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(209, 192, 165, 0.3);
  border: 1px solid var(--primary-light);
}

.product-card .product-img {
  transition: all 0.3s ease;
}

.product-card:hover .main-img {
  opacity: 0;
}

.product-card:hover .hover-img {
  opacity: 1 !important;
}

.product-title {
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.4;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 600;
}

/* Sayfalama */
.pagination {
  gap: 0.25rem;
}

.page-link {
  color: var(--primary);
  border: 1px solid #dee2e6;
  padding: 0.5rem 0.75rem;
  transition: all 0.2s ease;
}

.page-link:hover {
  color: var(--secondary);
  background-color: var(--gray-light);
  border-color: var(--primary);
}

.page-item.active .page-link {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .product-card {
    margin-bottom: 1rem;
  }
  
  .product-title {
    font-size: 0.9rem;
    min-height: 50px;
  }
}

