/* Genel Stil Ayarları */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #eef2ff;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column; /* Dikey sıralama için */
  align-items: center;    /* Tüm içerikleri ortalamak için */
}



.ustbilgi {
  padding: 15px;
  width: 100%;
  background-color: #2a3f82;
  display: flex;              /* Flex container */
  justify-content: space-between; /* İçerikleri uçlara yerleştirir */
  align-items: center;        /* Dikey ortalama */
}

.ustbilgi .p1 {
  color: #a9b3d6;
  font-style: italic;
  font-size: 14px;
  margin: 0; /* Varsayılan marginleri kaldırıyoruz */
}

.right-side {
  display: flex;
  align-items: center;
}

.phone {
  color: white;
  font-size: 15px;
  margin-right: 40px;  /* p2 ile arasında biraz boşluk olsun */
}

.ustbilgi .p2 {
  color: white;
  margin: 0; /* Varsayılan marginleri kaldırıyoruz */
  letter-spacing: 0.7px;
}











.ustcontainer

{

  padding: 25px;
  width: 100%;

}







/* Üst Menü Stil Ayarları */
.top-menu {
  background-color: #2a3f82;
  padding: 18px 0;
  width: 100%;
}

.top-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.top-menu li {
  margin: 0 25px;
}

.top-menu a {
  text-decoration: none;
  color: #a9b3d6;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.top-menu a:hover {
  color: #eef2ff;
}


.container {
  width: 70%;
  position: relative;
}





/* Arama Alanı Stil Ayarları */
.search-container {
  text-align: right;
  margin-bottom: 30px;
  margin-top: 20px;
}




.search-container input {
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 60%;
  max-width: 300px;
  margin-right: 10px;
}

.search-container button {
  padding: 8px 16px;
  font-size: 16px;
  background-color: #6680d6;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-container button:hover {
  background-color: #5a6cc6;
}











/* Öneri Kutusu Stil Ayarları */
.suggestions-container {
  position: absolute;
  top: 40px; /* input'un altına yerleştirmek için */
  left: calc(73% - 0px); /* input yaklaşık 300px genişliğinde */
  width: 300px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
}

.suggestion-item {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  cursor: pointer;
}

.suggestion-item img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 4px;
}

.suggestion-item:hover {
  background-color: #eef2ff;
}










/* Galeri Stil Ayarları */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 70px;
}

.row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 20px;
}

.column {
  text-align: center;
  width: 30%;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}












/* Buton Stil Ayarları */
button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #6680d6;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #5a6cc6;
}

/* Navigasyon Stil Ayarları */
.navigation {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.navigation button {
  margin: 0 10px;
}

/* Sayfa Numarası Stil Ayarları */
.page-number {
  text-align: center;
  font-size: 18px;
  margin-top: 20px;
  color: #555;
}

/* Responsive Ayarlar */

@media only screen and (max-width: 768px) {

  .suggestions-container {

      position: absolute;
  top: 40px; /* input'un altına yerleştirmek için */
  left: calc(45% - 0px); /* input yaklaşık 300px genişliğinde */
  width: 300px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
}
  


@media only screen and (max-width: 600px) {

  .suggestions-container {

      position: absolute;
  top: 40px; /* input'un altına yerleştirmek için */
  left: calc(25% - 0px); /* input yaklaşık 300px genişliğinde */
  width: 300px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
}
  }


  .row {
    display: block;
  }
  .column {
    width: 100%;
    margin-bottom: 20px;
  }
}






/* Ürün Sayfası Başlığı */
header h1 {
  text-align: center;
  margin: 20px 0;
  font-size: 2em;
  color: #2a3f82; /* Örnek renk, dilediğiniz gibi değiştirebilirsiniz */
}

/* Ürün Detay Container'ı */
.product-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 70%;
  margin: 20px auto;
  gap: 20px;
}

/* Sol Bölüm: Ürün Resmi */
.product-image {
  flex: 1;
  min-width: 300px;
}

.product-image img {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 5px;
}

/* Sağ Bölüm: Ürün Detayları */
.product-details {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-details .detail {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  font-size: 16px;
  color: #333;
}

.product-details .detail a {
  color: #6680d6;
  text-decoration: none;
}

.product-details .detail a:hover {
  text-decoration: underline;
}







/* Ürün Sayfası Başlığı */
header h1 {
  text-align: center;
  margin: 20px 0;
  font-size: 2em;
  color: #2a3f82;
}

/* Ürün Detayları Container'ı */
.product-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 70%;
  margin: 20px auto;
  gap: 20px;
}

.product-image {
  flex: 1;
  min-width: 300px;
}

.product-image img {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.product-details {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-details .detail {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  font-size: 16px;
  color: #333;
}

.product-details .detail a {
  color: #6680d6;
  text-decoration: none;
}

.product-details .detail a:hover {
  text-decoration: underline;
}

/* İlgili Ürünler Slider */
.related-products {
  margin: 40px auto;
  width: 70%;
}

.related-products h2 {
  text-align: center;
  margin-bottom: 20px;
}

.slider {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-item {
  min-width: 200px; /* Öğenin genişliği */
  margin-right: 10px;
  text-align: center;
}

.slider-item img {
  width: 100%;
  border-radius: 5px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #6680d6;
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

/* Diğer stil kodlarınız (üst menü, arama, vs.) mevcut dosyanızda kalmaya devam eder */







.whatsapp-icon {
  position: fixed;      /* Sayfa kaydırılsa bile sabit kalır */
  right: 5px;          /* Sağdan 20px boşluk */
  bottom: 10px;         /* Alttan 20px boşluk (isteğe bağlı olarak top: 20px; da kullanılabilir) */
  z-index: 1000;        /* Diğer içeriklerin üstünde görünmesini sağlar */
  width: 150px;          /* İkon genişliği */
  height: 100px;         /* İkon yüksekliği */
}

.whatsapp-icon img {
  width: 100%;
  height: auto;
  display: block;
}


/* Epiroc Gallery Başlığı Stil Ayarları */
.epiroc-title {
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2em;
  margin: 20px 0 10px;
}

/* Epiroc Açıklama Metni Stil Ayarları */
.epiroc-description {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 1.1em;
  color: #555;
  margin: 0 auto 20px;
  max-width: 1000px;
}


/* Slider Bölümü Stil Ayarları */
.slider-section {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 20px;
}

.slider-section img {
  width: 100%;
  max-width: 1903px;
  height: auto; /* Oran korunur, ekran genişliğine uyum sağlar */
  object-fit: cover;
  display: block;
}








.gallery {
  padding: 60px 60px;
  background-color: #ffffff;
  text-align: center;
}

.gallery h2 {
  font-size: 28px;
  color: #222;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.part-number {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  margin: 10px 0 5px 0;
}

.product-name {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.details-btn {
  background-color: red;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.details-btn:hover {
  background-color: #e0a800;
}







/* 1) Desktop default: 3 kolon */
.gallery2{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

/* 2) Tablet (≤1024px): 2 kolon */
@media (max-width: 1024px){
  .gallery2{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3) Telefon (≤600px): 1 kolon */
@media (max-width: 600px){
  .gallery2{
    grid-template-columns: 1fr;
  }
}


.card {
  background: #eef2ff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 10px;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 80%;
    height: auto;
    object-fit: contain;
}

.card .product-code {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  color: #000;
}

.card .product-name {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

.card button {
  background-color: #ff0000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.card button:hover {
  background-color: #cc0000;
}




/* === Pagination links as pill buttons (anchors) === */
.pagination nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 36px 0;
}

.pagination nav a {
  display: inline-block;
  text-decoration: none;
  appearance: none;
  border: 1px solid #d9def7 !important;
  background: #ffffff !important;
  color: #2a3f82 !important;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.pagination nav a:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(0,0,0,.12);
  border-color: #b8c3f3 !important;
}

/* Aktif sayfa */
.pagination nav a.current,
.pagination nav a[aria-current="page"] {
  background: #2a3f82 !important;
  color: #fff !important;
  border-color: #2a3f82 !important;
  box-shadow: 0 6px 12px rgba(42,63,130,.25);
  pointer-events: none;
  cursor: default;
}

/* Devre dışı (gerekirse) */
.pagination nav a.disabled,
.pagination nav a[aria-disabled="true"] {
  background: #ecf0ff !important;
  color: #9aa7d9 !important;
  border-color: #e1e7ff !important;
  box-shadow: none;
  pointer-events: none;
}

/* Prev/Next ikoncıkları */
.pagination nav a[rel="prev"]::before {
  content: "‹";
  margin-right: 6px;
  font-size: 16px;
}
.pagination nav a[rel="next"]::after {
  content: "›";
  margin-left: 6px;
  font-size: 16px;
}

/* Mobil */
@media (max-width: 480px) {
  .pagination nav { gap: 8px; }
  .pagination nav a { padding: 10px 12px; font-size: 13px; }
}





/* === Fancy Pagination (pill buttons) === */
.pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 36px 0;
}

/* Genel buton görünümü */
.pagination button {
  appearance: none;
  border: 1px solid #d9def7;
  background: #ffffff;
  color: #2a3f82;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

/* Hover efekti */
.pagination button:hover:not(.active):not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(0,0,0,.12);
  border-color: #b8c3f3;
}

/* Aktif sayfa */
.pagination button.active {
  background: #2a3f82;
  color: #fff;
  border-color: #2a3f82;
  box-shadow: 0 6px 12px rgba(42,63,130,.25);
  cursor: default;
}

/* Devre dışı */
.pagination button:disabled,
.pagination button.disabled {
  background: #ecf0ff;
  color: #9aa7d9;
  border-color: #e1e7ff;
  cursor: not-allowed;
  box-shadow: none;
}

/* Prev/Next okları (butonlara class veriyorsan) */
.pagination button.prev::before {
  content: "‹";
  margin-right: 6px;
  font-size: 16px;
}
.pagination button.next::after {
  content: "›";
  margin-left: 6px;
  font-size: 16px;
}

/* Klavye erişilebilirliği */
.pagination button:focus-visible {
  outline: 3px solid #ff6600;
  outline-offset: 2px;
  border-color: #ff6600;
}

/* Mobilde daha dolgun */
@media (max-width: 480px) {
  .pagination { gap: 8px; }
  .pagination button { padding: 10px 12px; font-size: 13px; }
}


#product-detail

{
  display:block;
  width:100% !important;
  max-width:none !important;  /* başka bir yerdeki 300px sınırı varsa iptal eder */
  height:auto !important;
  object-fit:contain;
  margin:0 auto 20px;
      
}

/* === PRODUCT IMAGE OVERRIDE – EN SONDA DURMALI === */
#product-detail img,
#product-image,
.product-image img {
  display: block !important;
  width: 60% !important;        /* mevcut halinden %35 daha geniş istiyorsun diye dolgun */
  max-width: 1550px !important; /* 1150 → 1550 gibi düşün, büyük ekranı doldursun */
  height: auto !important;
  margin: 0 auto 30px !important;
  object-fit: contain !important;
  max-height: none !important;  /* başka yerde 70–80vh sınırı varsa iptal et */
}




@media (min-width:1600px){
  #product-detail img {
    max-width: 1250px;
  }
}



#product-detail h1

{
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;       /* başlığı ortalar */
  font-weight: 600;         /* isteğe bağlı: biraz daha vurgulu */
  color: #222;
}


#product-detail p

{
  font-size: 18px;
      color: #333;
      text-align: center;
}

.product-detail-wrapper {
  display: flex;
  justify-content: center; /* Yatay ortalama */
  align-items: center;     /* Dikey ortalama */
  min-height: 100vh;       /* Ekranın tamamını kapla */
  padding: 20px;           /* Mobilde nefes aldırır */
}




@media (min-width:1200px){
  #product-detail{ max-width:1100px; }
}

/* 3) Görsel çok uzun kalıyorsa (yüksek ekranlarda) yükseklik emniyeti */
@media (min-height:700px){
  #product-detail img{ max-height:80vh; }
}




.related-products {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}
.related-products h2 {
  font-size: 20px;
  margin: 0 0 16px;
  color: #333;
}
.related-products .related-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.related-products .related-item {
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  background: #fafafa;
  transition: box-shadow .2s ease, background .2s ease;
}
.related-products .related-item:hover {
  box-shadow: 0 3px 8px rgba(0,0,0,.15);
  background: #fff;
}
.related-products .related-item img {
  max-width: 80%;            /* 100 → 80, %20 küçülme */
  height: auto;
  margin-bottom: 8px;
  border-radius: 4px;
}

.related-products .related-item p {
  margin: 0;
  font-size: 14px;
  color: #444;
}


/* Tablet (≤1024px): 2 kolon */
@media (max-width: 1024px){
  .related-products .related-list{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

/* Telefon (≤600px): 1 kolon */
@media (max-width: 600px){
  .related-products .related-list{
    grid-template-columns: 1fr;
  }
}

/* Küçük ekranlarda görseli biraz daha dolgun göster (opsiyonel) */
@media (max-width: 1024px){
  .related-products .related-item img{ max-width: 90%; }
}
@media (max-width: 600px){
  .related-products .related-item img{ max-width: 100%; }
}

















/* Diğer stil kodlarınız mevcut dosyanızda kalmaya devam eder */



/* Default: Menü simgesini gizle */
.menu-toggle {
  display: none;
}

/* 768px ve altı ekranlarda menü simgesini göster */
@media only screen and (max-width: 840px) {
  .menu-toggle {
    display: block;
    text-align: right;
    padding-right: 10px;
    
    cursor: pointer;
  }
  
  .menu-toggle img {
    width: 50px;  /* İstediğiniz boyuta göre ayarlayın */
    height: auto;
  }
}



/* Overlay menü kapalı durumda (sağdan dışarıda) */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;               /* Sağdan konumlandırma */
  width: 50%;
  height: 100%;
  background-color: #2a3f82;
  transform: translateX(100%); /* Başlangıçta ekranın dışında (sağ) */
  transition: transform 0.3s ease-in-out;
  z-index: 9999;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Menü açıldığında ekrana kayar */
.mobile-menu.show {
  transform: translateX(0); /* Sağdan sıfıra gelerek ekranda görünür */
}

/* Kapatma butonu (X) konumunu da sağda tutmak isterseniz: */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px; /* Sağ üst köşede kapatma butonu */
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}


/* Menü listesi */
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center; /* Menü metinlerini ortalamak isterseniz */
}

.mobile-menu li {
  margin: 20px 0; /* Menü öğeleri arası boşluk */
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  color: #ffcccc; /* Üzerine gelince açık ton */
}



@media only screen and (max-width: 840px) {
  /* Normal menüyü gizle */
  .nav-list {
    display: none;
  }
}





















.modern-contact {
  background-color: #2a3f82; 
  color: #fff;
  width: 100%;
  padding: 40px;
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 25px; /* Menü ve contact arasında boşluk */
}

/* Başlık sağda görünsün */
.contact-title {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: right;     /* Metni de sağa yasla */
  align-self: flex-end;  /* Başlık bloğunu sağ kenara sabitle */
  position: relative;
}

/* Başlık altındaki çizgi de başlığın sağında kalsın isterseniz: */
.contact-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  /* varsayılan left: 0; -> soldan çizgi çıkar. 
     Sağda çıkarmak isterseniz: */
  right: 0;      
  width: 40px;
  height: 2px;
  background-color: #fff;
}

/* İkonlu satırlar (Telefon, E-Mail, Adres) */
.contact-item {
  display: flex;         /* Yatay hizalama */
  align-items: center;   /* Dikey ortalama */
  justify-content: flex-end; /* Satırın tamamını sağa yasla */
  margin-bottom: 15px;
}

/* İkon solda kalsın, metin sağda */
.contact-item .icon img {
  width: 30px;
  height: 30px;
  margin-right: 10px;  /* İkon ile metin arasında boşluk */
}

/* Metni sağa yaslamak isterseniz */
.contact-item .info {
  text-align: right;  
}

/* Sosyal medya ikonları da sağ kenarda */
.social-icons {
  margin-top: 15px;
  align-self: flex-end;  /* Kutuyu sağ kenara sabitle */
  text-align: right;     /* İçerikteki ikonları da sağa yasla */
}

/* İkonların arasındaki boşluk ayarı */
.social-icons a {
  display: inline-block;
  margin-left: 10px;  /* Soldan boşluk bırakalım */
  margin-right: 0;    /* Sağda boşluk olmasın */
}

.social-icons a img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.social-icons a img:hover {
  transform: scale(1.1);
}



.contactus {
  background-color: #eef2ff;
  width: 70%;
  padding: 50px 0px;
  margin: 0 auto; /* Ortalamak için */
}

.contact-row {
  display: flex;          /* İkon ve metni aynı satıra yerleştirir */
  align-items: center;    /* Dikeyde ortalar */
  margin-bottom: 20px;    /* Satırlar arası boşluk */
}

.contact-icon {
  width: 40px;            /* İkon genişliği (isteğe göre artırılabilir) */
  height: 40px;           /* Yüksekliği sabitlemek isterseniz */
  margin-right: 15px;     /* İkon ile metin arasında boşluk */
}

.contact-row p {
  font-size: 16px;
  color: #333;
  margin: 0;              /* Varsayılan boşlukları sıfırlıyoruz */
  line-height: 1.5;       /* Daha rahat okunsun diye satır yüksekliği */
}

.contactus img

{

}






.contactus2 {
  background-color: #eef2ff;
  width: 70%;
  padding: 50px 0px;
  margin: 0 auto; /* Ortalamak için */
}

.contact-row2 {
  display: flex;          /* İkon ve metni aynı satıra yerleştirir */
  align-items: center;    /* Dikeyde ortalar */
  margin-bottom: 20px;    /* Satırlar arası boşluk */
}

.contact-icon2 {
  width: 40px;            /* İkon genişliği (isteğe göre artırılabilir) */
  height: 40px;           /* Yüksekliği sabitlemek isterseniz */
  margin-right: 15px;     /* İkon ile metin arasında boşluk */
}

.contact-row2 p {
  font-size: 16px;
  color: #333;
  margin: 0;              /* Varsayılan boşlukları sıfırlıyoruz */
  line-height: 1.5;       /* Daha rahat okunsun diye satır yüksekliği */
}

.contactus2 img

{

}











/* Mobil uyumluluk (örnek) */
@media only screen and (max-width: 600px) {
  .modern-contact {
    /* Mobilde belki genişliği %100 yapıp ortalamak isteyebilirsiniz */
    width: 100%;
    box-sizing: border-box;
    align-items: flex-end;  /* Yine sağda kalsın */
  }
}


@media only screen and (max-width: 1200px) {
  .ustbilgi .p1 {
    /* Mobilde belki genişliği %100 yapıp ortalamak isteyebilirsiniz */
    display: none;
    
  }
}


@media only screen and (max-width: 900px) {
  .ustbilgi .p1 {
    /* Mobilde belki genişliği %100 yapıp ortalamak isteyebilirsiniz */
    display: none;
    
  }
}

@media only screen and (max-width: 800px) {
  .ustbilgi .p1 {
    /* Mobilde belki genişliği %100 yapıp ortalamak isteyebilirsiniz */
    display: none;
    
  }
}


@media only screen and (max-width: 600px) {
  .ustbilgi .p1 {
    /* Mobilde belki genişliği %100 yapıp ortalamak isteyebilirsiniz */
    display: none;
    
  }
}






@media only screen and (max-width: 900px) {
  .modern-contact {
    /* Mobilde belki genişliği %100 yapıp ortalamak isteyebilirsiniz */
    padding: 20px 70px;
    
  }
}


@media only screen and (max-width: 840px) {
  .top-menu ul{
   display: none;
    
  }
}




.aboutus

{
  width: 70%;
  padding: 50px 0px;
}

.aboutus h1

{
  padding: 5px 0px;
}

.aboutus h2

{
  padding: 5px 0px;
}

.aboutus h3

{
  padding: 10px 0px 10px 0px;
}


.aboutus img

{
  width: 90%;
}




@media only screen and (max-width: 900px) {
  .contactus img {
    /* Mobilde belki genişliği %100 yapıp ortalamak isteyebilirsiniz */
    width: 90%;
    
  }
}

@media only screen and (max-width: 900px) {
  .contactus2 img {
    /* Mobilde belki genişliği %100 yapıp ortalamak isteyebilirsiniz */
    
    
  }
}































.gallery .column {
  text-align: center;
}

.gallery-item {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  border-radius: 5px;
  transition: transform 0.2s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.img-title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 8px;
  color: #333;
}


.home-gallery-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.home-gallery-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
}

.home-gallery-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 16px;
  color: #555;
}

/* 4’lü kart grid yapısı */
.home-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

/* Kart tasarımı – Epiroc galerisindeki karta benzer */
.home-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-card img {
  max-width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Epiroc gallery’deki .code / .name stilini yakalıyoruz */
.home-card .code {
  font-weight: bold;
  margin-top: 5px;
  font-size: 16px;
}

.home-card .name {
  font-size: 14px;
  color: #666;
  margin: 8px 0 12px;
}

/* Mavi buton – Epiroc kartlarındaki ile uyumlu */
.home-btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: #007bff;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-top: auto;        /* kartı dikeyde dengeler */
}

.home-btn:hover {
  background-color: #0056b3;
}




/* Piston bilgi bloğu kartı */
.piston-info-text {
  max-width: 1000px;
  margin: 30px auto 40px;
  padding: 20px 24px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* Başlık */
.piston-info-text h3 {
  margin-top: 18px;
  margin-bottom: 10px;
  font-size: 18px;
}

/* Liste genel stil */
.piston-list {
  list-style: disc;
  margin: 0;
  padding-left: 20px;
  
  /* Desktop’ta çok uzun olmasın diye sütuna bölüyorum */
  columns: 2;
  column-gap: 40px;
}

/* Liste elemanları */
.piston-list li {
  margin-bottom: 4px;
  font-family: monospace; /* part number’lar daha okunaklı dursun istersen */
  font-size: 14px;
}

/* Mobilde tek sütuna düşsün */
@media (max-width: 768px) {
  .piston-list {
    columns: 1;
  }
}




/* TÜM BLOK - full background ve hizalama */
.contact-box {
  width: 100%;
  background-color: #2a3f82;
  color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);


  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* SOL MENÜ */
.contact-left {
  width: 250px;
}

.contact-left .menu-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-left .menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-left .menu-list li {
  margin-bottom: 8px;

}

.contact-left .menu-list li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-family: 'Inter', sans-serif;

}

.contact-left .menu-list li a:hover {
  text-decoration: underline;
}

/* SAĞ KONTAKT BLOĞU */
.contact-right {
  flex: 1;
  text-align: right;
}

.contact-right .contact-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;

}

.contact-right .contact-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 40px;
  height: 2px;
  background: #fff;

}

/* CONTACT SATIRLARI */
.contact-right .contact-item {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 15px;
  gap: 10px;
}

.contact-right .contact-item img {
  width: 28px;
  height: 28px;
}

.contact-right .contact-item .info {
  text-align: right;
}


















.product-box-wrapper {
  display: flex;
  max-width: 912px;
    margin: 20px auto 50px auto;
  gap: 35px;
  font-family: Arial, sans-serif;
}

/* SOL GÖRSEL */
.product-image-box {
  width: 45%;
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  overflow: hidden;   /* ✅ TAŞAN ZOOM KESİLSİN */
}


.product-image-box img {
  width: 100%;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

/* SAĞ BİLGİ PANELİ */
.product-info-box {
  width: 55%;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ORTAK SATIR */
.info-row {
  padding: 15px 18px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid #e5e7eb;
}

/* BAŞLIK */
.info-row.title {
  background: #2a3f82;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

/* NORMAL SATIR */
.info-row.normal {
  background: #ffffff;
  color: #1e293b;
  font-weight: 600;
}

/* ETİKET GÖRÜNÜMÜ */
.info-label {
  color: #64748b;
  font-weight: 500;
}

/* VURGU SATIRI */
.info-row.stock {
  background: #f8fafc;
  color: #16a34a;
  font-weight: bold;
}

/* FİYAT BUTONU */
.info-row.price {
  background: #2a3f82;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  display: block;
  text-decoration: none;
}

.info-row.price:hover {
  background: #ffffff;
  color: #2a3f82;
}


.product-image-box:hover img {
  transform: scale(1.2);
}

/* ✅ MOBİL */
@media (max-width: 768px) {
  .product-box-wrapper {
    flex-direction: column;
  }

  .product-image-box,
  .product-info-box {
    width: 100%;
  }
}

















.product-header {
  max-width: 760px;
  margin: 20px 0 10px 0;
  text-align: center;
}

.product-header h1 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #1e293b;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.product-subtext {
  font-size: 15px;
  color: #475569;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}



@media (max-width: 768px) {
  .product-header h1 {
    font-size: 24px;
  }

  .product-subtext {
    font-size: 14px;
  }
}






















.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: auto;
    padding: 20px;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    padding: 20px;
    text-align: center;
    transition: 0.25s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 10px;
    background: #cfe0ff;
}

.code {
    font-size: 20px;
    font-weight: bold;
    margin: 8px 0 3px;
}

.name {
    font-size: 16px;
    color: #444;
    margin-bottom: 15px;
}

.details-btn {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.details-btn:hover {
    background: #0056d4;
}






/* Tablet (2 kolon) */


@media (max-width: 1250px) {
    .gallery-container {
       grid-template-columns: repeat(3, 1fr) !important;
    }

    .product-card img {
        height: 200px;
    }
}


@media (max-width: 1100px) {
    .gallery-container {
       grid-template-columns: repeat(3, 1fr) !important;
    }

    .product-card img {
        height: 200px;
    }
}



@media (max-width: 1000px) {
    .gallery-container {
       grid-template-columns: repeat(3, 1fr) !important;
    }

    .product-card img {
        height: 200px;
    }
}





@media (max-width: 900px) {
    .gallery-container {
       grid-template-columns: repeat(2, 1fr) !important;
    }

    .product-card img {
        height: 200px;
    }
}


@media (max-width: 800px) {
    .gallery-container {
         grid-template-columns: repeat(2, 1fr) !important;
    }

    .product-card img {
        height: 200px;
    }
}

/* Küçük tablet & büyük telefon */
@media (max-width: 600px) {
    .gallery-container {
        grid-template-columns: 1fr !important;
    }

    .product-card img {
        height: 200px;
    }
}

/* Mobil (tek kolon — iPhone, Samsung) */
@media (max-width: 430px) {
    .gallery-container {
        grid-template-columns: 1fr !important;
    }

    .product-card {
        padding: 15px;
    }

    .product-card img {
        height: 160px;
    }
}










.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.page-btn,
.next-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: #1f2a7a;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.25s ease;
}

.page-btn:hover,
.next-btn:hover {
  background: #1f2a7a;
  color: #ffffff;
}

.page-btn.active {
  background: #1f2a7a;
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(31,42,122,0.4);
}

.next-btn {
  width: auto;
  padding: 0 18px;
  border-radius: 22px;
}





@media (max-width: 900px) {
  .contact-box .menu-list li a {
    font-size: 13px;
  }
}



@media (max-width: 780px) {
    .contact-box {
   display: none;
  }
   
}



.piston-list li a {
  text-decoration: none;
  color: inherit;
  cursor: pointer; /* tıklanabilir olduğunu yine hissettirir */
}

.piston-list li a:hover {
  color: inherit;
}





