.cncbul-machine-specs {
    font-family: 'Inter', sans-serif;
    padding: 20px;
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.filter-bar {
    text-align: right;
    margin-bottom: 15px;
}

.dropdown-filter {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

.cncbul-specs-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cncbul-specs-table th, .cncbul-specs-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.cncbul-specs-table th {
    background: #f8f8f8;
    font-weight: 600;
}

.thumb-img {
    height: 80px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
    background: #f9f9f9;
}

.details-btn {
    background: #c00;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

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

@media (max-width: 768px) {
    .cncbul-specs-table th, .cncbul-specs-table td {
        font-size: 13px;
        padding: 8px;
    }
    .thumb-img { height: 60px; }
}
.thumb-img {
    height: 80px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
    background: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* ==========================================================
   🔹 Responsive Card View (Mobil için)
   ========================================================== */
@media (max-width: 768px) {
  /* 🔹 Tabloyu gizle */
  .cncbul-specs-table thead {
    display: none;
  }

  .cncbul-specs-table,
  .cncbul-specs-table tbody,
  .cncbul-specs-table tr,
  .cncbul-specs-table td {
    display: block;
    width: 100%;
  }

  /* 🔹 Satırlar (kart gibi görünür) */
  .cncbul-specs-table tr {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 10px;
  }

  /* 🔹 Görsel */
  .cncbul-specs-table td.thumb {
    text-align: center;
    margin-bottom: 8px;
  }

  .cncbul-specs-table td.thumb img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }

  /* 🔹 Kart içi başlık ve bilgi */
  .cncbul-specs-table td {
    border: none;
    padding: 6px 8px;
    text-align: left;
    font-size: 14px;
  }

  .cncbul-specs-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #555;
    display: inline-block;
    width: 110px;
  }

  /* 🔹 “View” ve “Compare” */
  .cncbul-specs-table td:last-child {
    text-align: center;
    margin-top: 10px;
  }

  .details-btn {
    background: #3498db;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-right: 5px;
  }

  .compare-label {
    display: inline-block;
    margin-top: 8px;
  }
}
/* ✅ Pagination görünümü */
.pagination {
  margin: 20px 0;
  text-align: center;
}
.pagination button {
  border: 1px solid #e74c3c;
  background: white;
  color: #e74c3c;
  padding: 6px 12px;
  margin: 2px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pagination button:hover:not(:disabled):not(.active) {
  background: #ffecec;
}
.pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.pagination button.active {
  background: #e74c3c;
  color: #fff;
  border-color: #e74c3c;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.3);
}
.compare-btn[disabled],
.compare-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
/* ✅ Aktif sayfa vurgusu kalıcı */
.pagination button.active {
  background: #e74c3c !important;
  color: #fff !important;
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.3);
  font-weight: 600;
}
