/* =========================================================
 * Auth & Select ekranları
 * ========================================================= */

.auth-body {
  min-height: 100vh;
  display: flex; flex-direction: column;
  position: relative; overflow-x: hidden;
  background:
    radial-gradient(1200px 800px at 100% 0%, #ffe7c4 0%, transparent 60%),
    radial-gradient(900px 700px at 0% 100%, #ffe5c5 0%, transparent 55%),
    linear-gradient(180deg, #fff8ee 0%, #fff1dc 100%);
}

/* Animasyonlu arka plan blob'ları */
.auth-bg {
  position: fixed; inset: 0;
  overflow: hidden; z-index: 0;
  pointer-events: none;
}
.auth-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  animation: blobFloat 18s ease-in-out infinite;
}
.auth-blob.b1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #ff9242 0%, transparent 65%);
  top: -120px; left: -100px;
}
.auth-blob.b2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #ffb27b 0%, transparent 65%);
  bottom: -200px; right: -150px;
  animation-delay: -6s;
}
.auth-blob.b3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #fdba74 0%, transparent 70%);
  top: 40%; left: 60%;
  animation-delay: -12s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.08); }
  66%      { transform: translate(-25px, 25px) scale(.95); }
}

/* ========== Login shell ========== */
.auth-shell {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
  position: relative; z-index: 1;
}

.auth-card {
  width: 100%; max-width: 440px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,210,155,.5);
  border-radius: 24px;
  padding: 38px 36px 32px;
  box-shadow:
    0 24px 64px -16px rgba(242,122,26,.25),
    0 8px 24px -8px rgba(120,80,40,.1),
    inset 0 1px 0 rgba(255,255,255,.6);
  animation: cardIn .55s cubic-bezier(.16,1,.3,1) both;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.auth-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  padding: 8px 0 22px;
  border-bottom: 1px dashed rgba(255,210,155,.6);
  margin-bottom: 22px;
}
.auth-logos.sm { padding: 0; border: 0; margin: 0; gap: 12px; }
.auth-logo {
  height: 38px;
  object-fit: contain;
}
.auth-logos.sm .auth-logo { height: 28px; }
.logo-trendyol { filter: none; }
.logo-13brave  { height: 44px; }
.auth-logos.sm .logo-13brave { height: 32px; }
.auth-x {
  font-size: 22px; font-weight: 300; color: #b4a692;
  margin-top: -2px;
}
.auth-logos.sm .auth-x { font-size: 16px; }

.auth-title {
  text-align: center;
  font-size: 22px; font-weight: 800; letter-spacing: -.02em;
  margin: 0 0 6px;
  color: #1a1310;
}
.auth-subtitle {
  text-align: center;
  color: #7c6c5c;
  font-size: 13px; font-weight: 500;
  margin: 0 0 24px;
}

.auth-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 12.5px; font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}

.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-field { display: flex; flex-direction: column; gap: 6px; }
.auth-field span {
  font-size: 10.5px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase;
  color: #d85a00;
}
.auth-field input {
  padding: 12px 14px;
  border: 1px solid rgba(255,210,155,.6);
  border-radius: 11px;
  font: inherit; font-size: 14px; font-weight: 500;
  background: rgba(255,255,255,.85);
  color: #1a1310;
  transition: all .15s ease;
}
.auth-field input:focus {
  outline: none;
  border-color: #f27a1a;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(242,122,26,.15);
}

.auth-submit {
  margin-top: 10px;
  padding: 13px 20px;
  font-size: 14px; font-weight: 700;
  border-radius: 12px;
  justify-content: center;
  gap: 9px;
}

.auth-foot {
  text-align: center;
  color: #b4a692;
  font-size: 11px; font-weight: 600;
  letter-spacing: .04em;
  margin: 24px 0 0;
}

/* ========== Select ekranı ========== */
.select-top {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,210,155,.5);
  position: sticky; top: 0; z-index: 10;
}
.select-top-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  gap: 18px; flex-wrap: wrap;
}
.select-userbox {
  display: flex; align-items: center; gap: 12px;
}
.select-user {
  font-size: 13px; color: #4a3f35; font-weight: 500;
  padding: 6px 12px;
  background: #fff5e6;
  border: 1px solid #ffd29b;
  border-radius: 999px;
}
.select-user strong { color: #1a1310; font-weight: 700; }

.select-shell {
  flex: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 50px 28px 60px;
  position: relative; z-index: 1;
}
.select-head {
  text-align: center;
  margin-bottom: 40px;
  animation: cardIn .5s cubic-bezier(.16,1,.3,1) both;
}
.select-head h1 {
  font-size: 32px; font-weight: 800; letter-spacing: -.025em;
  margin: 0 0 8px;
  color: #1a1310;
  background: linear-gradient(135deg, #1a1310 0%, #d85a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.select-head p { color: #7c6c5c; font-size: 14px; font-weight: 500; margin: 0; }

.select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .select-grid { grid-template-columns: 1fr; } }

.select-card {
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
  padding: 30px 28px 26px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,210,155,.5);
  border-radius: 22px;
  box-shadow:
    0 8px 24px -10px rgba(242,122,26,.18),
    inset 0 1px 0 rgba(255,255,255,.6);
  text-decoration: none;
  color: #1a1310;
  transition: all .25s cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
  overflow: hidden;
  animation: cardIn .55s cubic-bezier(.16,1,.3,1) both;
}
.select-card:nth-child(2) { animation-delay: .08s; }
.select-card:nth-child(3) { animation-delay: .16s; }
.select-card:hover:not(.disabled) {
  transform: translateY(-4px);
  border-color: #f27a1a;
  box-shadow:
    0 24px 48px -16px rgba(242,122,26,.35),
    0 8px 16px -6px rgba(120,80,40,.12);
}
.select-card::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #ff9242, #f27a1a, #d85a00);
  opacity: 0;
  transition: opacity .2s ease;
}
.select-card:hover:not(.disabled)::before { opacity: 1; }

.select-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #fff5e6 0%, #ffe0bf 100%);
  border: 1px solid #ffd29b;
  color: #d85a00;
  margin-bottom: 4px;
}
.select-icon svg { width: 28px; height: 28px; }
.select-card:hover:not(.disabled) .select-icon {
  background: linear-gradient(135deg, #f27a1a 0%, #d85a00 100%);
  color: #fff;
  border-color: #d85a00;
  box-shadow: 0 8px 18px -6px rgba(242,122,26,.45);
}
.select-card h2 {
  font-size: 20px; font-weight: 800; letter-spacing: -.02em;
  margin: 0;
}
.select-card p {
  margin: 0;
  font-size: 13px; line-height: 1.5;
  color: #7c6c5c;
}
.select-go {
  display: inline-block;
  margin-top: auto;
  padding-top: 8px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .04em;
  color: #d85a00;
  text-transform: uppercase;
}

/* Disabled card (Radyo) */
.select-card.disabled {
  cursor: not-allowed;
  opacity: .65;
  pointer-events: auto;
  background: rgba(255,255,255,.45);
  filter: grayscale(.55);
}
.select-card.disabled:hover { transform: none; box-shadow: 0 8px 24px -10px rgba(242,122,26,.18), inset 0 1px 0 rgba(255,255,255,.6); }
.select-card.disabled .select-icon {
  background: #f3e3cc; color: #b4a692;
}
.select-badge {
  position: absolute;
  top: 14px; right: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #fbbf24;
  color: #92400e;
  font-size: 10px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  box-shadow: 0 4px 10px -3px rgba(217,119,6,.25);
}

.select-foot {
  text-align: center;
  padding: 28px 16px;
  color: #b4a692;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .04em;
  position: relative; z-index: 1;
}

/* Outdoor placeholder */
.placeholder-card {
  max-width: 540px; margin: 60px auto;
  text-align: center;
  padding: 48px 36px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,210,155,.5);
  border-radius: 22px;
  box-shadow: 0 16px 40px -16px rgba(242,122,26,.25);
}
.placeholder-icon {
  width: 80px; height: 80px;
  margin: 0 auto 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff5e6 0%, #ffe0bf 100%);
  border: 1px solid #ffd29b;
  display: inline-flex; align-items: center; justify-content: center;
  color: #d85a00;
}
.placeholder-icon svg { width: 40px; height: 40px; }
.placeholder-card h1 {
  font-size: 26px; font-weight: 800; letter-spacing: -.02em;
  margin: 0 0 8px;
}
.placeholder-card p {
  color: #7c6c5c; font-size: 14px; font-weight: 500;
  margin: 0 0 24px;
}
