/* ---- GENEL BODY & TYPOGRAPHY ---- */
body {
    margin: 0;
    padding-top: 60px; /* navbar yüksekliği kadar boşluk */
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
  }
  h1, h2, h3, h4, h5 {
    color: #6a1b9a;
    margin-bottom: 1rem;
  }
  a {
    color: inherit;
    text-decoration: none !important;
  }
  
  /* ---- ÜST NAVBAR ---- */
  .main-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: linear-gradient(135deg, #6a1b9a, #ab47bc);
    height: 60px;
    z-index: 200;
    display: flex;
    align-items: center;
  }
  .main-header .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
  }
  .desktop-nav {
    display: none;
  }
  .desktop-nav a {
    color: #fff;
    margin-left: 1.5rem;
    font-weight: 500;
  }
  
  /* ---- MOBİL DRAWER ---- */
  .nav-toggle-label {
    display: block;
    cursor: pointer;
    z-index: 210;
  }
  .nav-toggle-label span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px;
    background: #fff;
  }
  .drawer {
    position: fixed;
    top: 60px;
    left: -240px;
    width: 240px;
    height: calc(100% - 60px);
    background: #fff;
    transition: left .3s;
    z-index: 150;
  }
  #nav-toggle:checked + .drawer {
    left: 0;
  }
  .drawer ul {
    list-style: none;
    padding: 2rem;
  }
  .drawer li {
    margin-bottom: 1rem;
  }
  .drawer a {
    color: #333;
  }
  
  /* ---- HERO ---- */
  .hero {
    background: url('/static/images/healthcare.jpg') center/cover no-repeat;
    height: 60vh;
    position: relative;
  }
  .hero .overlay {
    background: rgba(0, 0, 0, .5);
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .hero button {
    padding: 1rem 2rem;
    border: none;
    background: #6a1b9a;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity .2s;
  }
  .hero button:hover {
    opacity: .85;
  }
  
  /* ---- HAKKIMIZDA ---- */
  .about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .about-text, .about-img {
    flex: 1 1 300px;
  }
  .about-img img {
    width: 100%;
    border-radius: 12px;
  }
  
  /* ---- SLIDER (PAKET & OYUN KARTLARI) ---- */
  .slider-section .slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
  }
  .slide {
    display: inline-block;
    width: 260px;
    margin: 0 1rem 2rem 0;
    vertical-align: top;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform .2s, box-shadow .2s;
    overflow: hidden;
  }
  .slide:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }
  .slide img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  .slide h3 {
    margin: .75rem;
    font-size: 1.1rem;
  }
  .slide p {
    margin: 0 .75rem 1rem;
    font-size: .95rem;
  }
  .game-price {
    margin: 0 .75rem .5rem;
    font-weight: bold;
    color: #6a1b9a;
  }
  
  /* ---- FORM BÖLÜMÜ (TEKLİF & ÖDEME) ---- */
  .form-section form,
  .cart-section form {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    max-width: 500px;
    margin: 0 auto 3rem;
  }
  .form-section label,
  .cart-section label {
    display: block;
    margin-bottom: .5rem;
    font-weight: 600;
  }
  .form-section input,
  .form-section select,
  .form-section textarea,
  .cart-section input,
  .cart-section select,
  .cart-section textarea,
  .form-section button,
  .cart-section button {
    width: 100%;
    padding: .75rem;
    margin-bottom: 1.25rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
  }
  .form-section button,
  .cart-section button {
    background: #6a1b9a;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: opacity .2s;
  }
  .form-section button:hover,
  .cart-section button:hover {
    opacity: .85;
  }
  /* Stripe Elements Card container */
  #card-element {
    padding: .75rem;
    border: 1px solid #ccc;
    border-radius: 8px;
  }
  #card-errors {
    color: #e53e3e;
    margin-top: -.5rem;
    margin-bottom: 1rem;
  }
  
  /* ---- CONTACT & FOOTER ---- */
  .contact p {
    margin: .5rem 0;
  }
  .footer {
    text-align: center;
    padding: 2rem 1rem;
    background: #f4f4f4;
    border-top: 1px solid #e2e2e2;
  }
  
  /* ---- RESPONSIVE ---- */
  @media (min-width: 768px) {
    .desktop-nav { display: flex; }
    .nav-toggle-label { display: none; }
    .drawer { display: none; }
    .about-content { display: flex; }
  }
  @media (max-width: 767px) {
    .slider-section .slide {
      width: 80%;
      margin-right: .75rem;
    }
  }
  /* ---- GAMES CARD ALT BÖLÜMÜ ---- */
.slide {
  display: inline-block;
  width: 240px;
  margin-right: 1rem;
  vertical-align: top;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* Kart içeriği arasına boşluk */
.slide .game-price,
.slide .cart-controls {
  padding: 0.5rem 0.75rem;
}

/* Fiyat kısmı */
.slide .game-price {
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

/* Sepet kontrolleri */
.slide .cart-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

/* Gün seçici input */
.slide .cart-controls input[type="number"] {
  width: 4rem;
  padding: 0.25rem;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: center;
}

/* Add to Cart butonu */
.slide .cart-controls .btn-add-cart {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  background: #6a1b9a;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.slide .cart-controls .btn-add-cart:hover {
  background: #59307a;
}

  