/* Technical Specifications Styles */

.specs-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.spec-category {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
  border: 1px solid #e2e8f0;
  height: fit-content;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.spec-category:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.spec-category-header {
  background: #f7fafc;
  border-bottom: 1px solid #e2e8f0;
  color: #2d3748;
  padding: 20px;
  text-align: left;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.spec-icon {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.spec-category-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
  flex: 1;
}

.spec-items {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f7fafc;
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 500;
  color: #4a5568;
  font-size: 0.9rem;
}

.spec-value {
  font-weight: 600;
  color: #2d3748;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.spec-item.highlight {
  background: linear-gradient(135deg, #ebf8ff, #bee3f8);
  padding: 16px;
  border-radius: 6px;
  border: 1px solid #90cdf4;
  margin: 12px 0;
  position: relative;
}

.spec-item.highlight .spec-value {
  color: #1a365d;
  font-weight: 700;
}

.performance-bar {
  width: 60px;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.performance-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.5s ease;
}

.performance-ultra { width: 95%; }
.performance-high { width: 80%; }
.performance-standard { width: 60%; }

.spec-badge {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  margin-left: 8px;
  background: #718096;
}

.badge-ultra {
  background: var(--primary);
}

.badge-high {
  background: #4a5568;
}

.badge-standard {
  background: #718096;
}

.badge-new {
  background: #38a169;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(56, 161, 105, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 4px rgba(56, 161, 105, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(56, 161, 105, 0);
  }
}

.download-section {
  background: white;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-top: 40px;
  border: 1px solid #e2e8f0;
}

.download-section h3 {
  color: #2d3748;
  margin-bottom: 10px;
  font-weight: 600;
}

.download-section p {
  color: #718096;
  margin-bottom: 25px;
}

.download-btn {
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px;
  text-decoration: none;
}

.download-btn:hover {
  background: #003d7a;
  transform: translateY(-1px);
  color: white;
  text-decoration: none;
}

.download-btn.secondary {
  background: #718096;
}

.download-btn.secondary:hover {
  background: #4a5568;
}

.download-btn.success {
  background: #38a169;
}

.download-btn.success:hover {
  background: #2f855a;
}

/* Tablet için 2x2, Mobile için 1 sütun */
@media (max-width: 1024px) and (min-width: 769px) {
  .specs-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .specs-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
    max-width: 100%;
  }
  
  .spec-category-header {
    padding: 15px;
    gap: 10px;
  }
  
  .spec-icon {
    font-size: 1.3rem;
  }
  
  .spec-category-header h3 {
    font-size: 1.1rem;
  }
  
  .spec-items {
    padding: 15px;
  }
}