/* Genel Tema KartÄ± */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #e3f2fd, #fce4ec);
}

.theme-store {
  padding: 60px 20px;
}

.theme-store h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 50px;
  color: #333;
  font-weight: 700;
  letter-spacing: 1px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.theme-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Tema KartÄ± */
.theme-card {
  flex: 1 1 calc(33.333% - 30px);
  background: rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.theme-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Tema BaÅŸlÄ±k ve GÃ¶rsel */
.theme-card img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin-bottom: 15px;
}

.theme-card h2 {
  font-size: 1.4rem;
  margin: 15px 0 10px;
  color: #222;
  font-weight: 600;
  text-align: center;
}

/* Fiyat Bilgisi */
.theme-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 10px 0 20px;
  flex-wrap: nowrap; /* Alt alta dÃ¼ÅŸmesini engeller */
  overflow-x: auto; /* Ã‡ok dar cihazda kaydÄ±rma saÄŸlar */
}

.price-badge {
  background: #ffc107;
  color: #333;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.25);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* Tema Paneli ve Mobil Uyumlu */
.extra-info {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px; /* Burada boÅŸluk ekledik */
}

.theme-panel, .mobile-compatible {
  background: #17a2b8;
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(23, 162, 184, 0.25);
}

.theme-panel {
  background: #007bff;
}

.mobile-compatible {
  background: #28a745;
}

/* Butonlar */
.btn-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px; /* Butonlar ile tema paneli arasÄ±na boÅŸluk */
}

.btn {
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.05rem; /* YazÄ± bÃ¼yÃ¼tÃ¼ldÃ¼ */
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Ã–nizleme Butonu */
.btn.preview {
  background: linear-gradient(to right, #922ca3, #000000);
  color: #fff;
}

.btn.preview:hover {
  background: linear-gradient(to right, #218838, #1e7e34);
}

/* SatÄ±n Al Butonu */
.btn.buy {
  background: linear-gradient(to right, #000000, #f18a00);
  color: white;
}

.btn.buy:hover {
  background: linear-gradient(to right, #0055cc, #003b99);
}

/* Responsive */
@media (max-width: 992px) {
  .theme-card {
    flex: 1 1 calc(50% - 30px);
  }
}

@media (max-width: 600px) {
  .theme-card {
    flex: 1 1 100%;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    margin-top: 5px;
  }

  /* Mobilde tema paneli ve mobil uyumlu yazÄ±larÄ± yan yana yapmak iÃ§in */
  .extra-info {
    flex-direction: row; /* Burada `column` yerine `row` yapÄ±yoruz */
    gap: 10px; /* Aradaki boÅŸluÄŸu ayarladÄ±k */
  }
}