/* Veneer Seçim Aracı Stilleri */
    /* Genel sayfa stilleri */
    body {
      font-family: 'Segoe UI', Arial, sans-serif;
      background: #f7f7f7;
      margin: 0;
      padding: 0;
    }
    /* Ana konteyner stili - Tüm içeriği saran kutu */
    .container {
      max-width: 420px;
      margin: 30px auto;
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 4px 24px #0001;
      padding: 20px 10px 30px 10px;
    }
    /* Veneer seçim bölümlerinin stili */
    .section-group {
      margin-bottom: 18px;
      padding-bottom: 8px;
      background: transparent;
    }
    /* Seçim butonlarının yatay düzeni */
    .selector-row {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }
    /* Seçim butonlarının stili */
    .selector-btn {
      background: #0eb9ba;
      color: #fff;
      border: none;
      border-radius: 12px;
      padding: 10px 18px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
      min-width: 48px;
    }
    /* Aktif seçim butonunun stili */
    .selector-btn.active {
      background: #f19036;
      color: #fff;
      font-weight: bold;
    }
    /* Veneer etiketlerinin stili */
    .veneers-label {
      font-size: 1em;
      font-weight: 500;
      color: #222;
      margin: 12px 0 10px 0;
      text-align: left;
      padding-left: 8px;
    }
    /* Veneer görsellerinin konteyner stili */
    .veneers-imgs {
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: center;
      margin-bottom: 0;
    }
    /* Veneer görsellerinin stili */
    .veneers-imgs img {
      width: 100%;
      max-width: 320px;
      border-radius: 16px;
      display: block;
    }
    /* Fiyat kartının stili */
    .price-card {
      background: #f8faff;
      border-radius: 16px;
      padding: 22px 10px 18px 10px;
      text-align: center;
      margin-top: 10px;
      box-shadow: 0 2px 8px #0001;
    }
    /* Fiyat kartı başlık stili */
    .price-card h2 {
      margin: 0 0 8px 0;
      font-size: 1.3em;
      font-weight: 600;
      color: #f19036;
    }
    /* Fiyat gösteriminin stili */
    .price-card .price {
      font-size: 2.2em;
      color: #0eb9ba;
      font-weight: bold;
      margin-bottom: 12px;
    }
    /* Teklif alma butonunun stili */
    .get-quote-btn {
      background: #0eb9ba;
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 12px 36px;
      font-size: 1.1em;
      cursor: pointer;
      margin-top: 8px;
      transition: background 0.2s;
    }
    /* Teklif alma butonunun hover efekti */
    .get-quote-btn:hover {
      background: #f19036;
    }
    /* Mobil cihazlar için responsive tasarım */
    @media (max-width: 600px) {
      .container {
        max-width: 100vw;
        padding: 8px 0 18px 0;
      }
      .section-group {
        margin-bottom: 12px;
        padding-bottom: 4px;
      }
      .selector-row {
        gap: 8px;
        margin-bottom: 12px;
      }
      .veneers-imgs img {
        max-width: 95vw;
      }
    }
    #bottom-count-row {
      margin-top: 16px;
    }