/* Dokunsat â€” ortak (base) stiller: token, reset, bileÅŸenler */
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@500;600;700;800&display=swap");

:root {
  --brand: #174873;
  --brand-mid: #1e5a8c;
  --brand-teal: #2a6fa3;
  --brand-dark: #0f3558;
  --brand-soft: #e8f0f6;
  --brand-grad: linear-gradient(90deg, #0f3558 0%, #174873 55%, #1e5a8c 100%);
  --letgo: var(--brand);
  --letgo-dark: var(--brand-dark);
  --ink: #1a1a1a;
  --ink-2: #333;
  --muted: #757575;
  --bg: #f3f5f7;
  --white: #ffffff;
  --line: #e4e8ec;
  --success: #2e7d32;
  --error: #d32f2f;
  --warning: #ed6c02;
  --info: #174873;
  --radius: 8px;
  --nav-h: 56px;
  --tab-h: 60px;
  --font: "Nunito", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 720px;
  --bp-desktop: 768px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.45;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
.brand-name,
.brand {
  font-family: var(--font);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  font-weight: 800;
}

.page-enter {
  animation: fadeIn 0.35s var(--ease) both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.logo {
  height: 42px;
  width: auto;
  max-width: min(220px, 58vw);
  display: block;
  object-fit: contain;
  background: transparent;
}

.logo-lg {
  height: 72px;
  width: auto;
  max-width: min(360px, 90vw);
  margin: 0 auto;
  display: block;
  object-fit: contain;
  background: transparent;
}

.letgo-header .brand,
.topnav .brand,
.desk-nav .brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
}

.icon-btn:hover {
  background: var(--bg);
}

.icon-btn:active {
  transform: scale(0.96);
}

.icon-btn svg {
  width: 22px;
  height: 22px;
}

.container {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0.85rem 0.75rem 1.25rem;
}

.container.narrow {
  width: min(420px, 100%);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.85rem 0 0.65rem;
  padding: 0 0.15rem;
}

.section-head h2 {
  font-size: 1.05rem;
  font-weight: 800;
}

.section-head a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.page-title {
  font-size: 1.35rem;
  margin: 0.15rem 0 0.85rem;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.7rem 1.2rem;
  border: 0;
  border-radius: 24px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, filter 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 12px rgba(23, 72, 115, 0.28);
}

.btn-primary:hover {
  background: var(--brand-dark);
  filter: none;
}

.btn-ghost {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--bg);
}

.btn-outline-brand {
  background: var(--white);
  border: 1.5px solid var(--brand);
  color: var(--brand);
}

.btn-outline-brand:hover {
  background: var(--brand-soft);
}

.btn-light {
  background: #fff;
  color: var(--brand);
  border: 0;
}

.btn-block {
  width: 100%;
}

.btn-sm {
  min-height: 36px;
  padding: 0.35rem 0.9rem;
  font-size: 0.82rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.field label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-2);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  outline: none;
  font-weight: 600;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(23, 72, 115, 0.22);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.letgo-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg);
  border-radius: 24px;
  padding: 0 0.35rem 0 1rem;
  min-height: 44px;
}

.letgo-search input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: none;
  min-height: 44px;
  font-weight: 600;
  font-size: 0.92rem;
}

.letgo-search input::placeholder {
  color: #9e9e9e;
  font-weight: 600;
}

.letgo-search .btn {
  min-height: 36px;
  border-radius: 20px;
  padding: 0 1rem;
  font-size: 0.85rem;
}

.letgo-loc {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-2);
}

.letgo-loc svg {
  width: 14px;
  height: 14px;
  color: var(--brand);
}

.cat-scroll {
  display: none;
}

.cat-menu {
  background: #f7f7f7;
  border-bottom: 1px solid var(--line);
}

.cat-menu-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0.55rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.cat-menu-all {
  position: relative;
  flex-shrink: 0;
}

.cat-menu-all-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
}

.cat-menu-all-btn:hover,
.cat-menu-all-btn[aria-expanded="true"] {
  border-color: var(--brand);
  color: var(--brand);
}

.cat-dropdown {
  display: none;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 60;
  display: flex;
  width: min(920px, calc(100vw - 1.5rem));
  max-height: min(70vh, 520px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(15, 53, 88, 0.16);
  overflow: hidden;
}

.mega-menu[hidden] {
  display: none !important;
}

.mega-sidebar {
  width: 240px;
  flex-shrink: 0;
  overflow-y: auto;
  border-right: 1px solid var(--line);
  background: #fafafa;
  padding: 0.35rem;
}

.mega-side-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0.7rem 0.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink-2);
  cursor: pointer;
}

.mega-side-item:hover,
.mega-side-item.active {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.mega-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.85;
  flex-shrink: 0;
}

.mega-panel {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.1rem;
}

.mega-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.mega-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.mega-group-title {
  color: #c62845;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.mega-group a {
  color: var(--ink-2);
  font-weight: 600;
  font-size: 0.84rem;
  padding: 0.15rem 0;
}

.mega-group a:hover {
  color: var(--brand);
}

.mega-see-all {
  margin-top: 0.25rem !important;
  font-weight: 800 !important;
  color: var(--ink) !important;
}

@media (max-width: 767px) {
  .mega-menu {
    position: fixed;
    left: 0.5rem;
    right: 0.5rem;
    top: auto;
    bottom: calc(var(--tab-h) + 0.5rem);
    width: auto;
    max-height: 65vh;
    flex-direction: column;
  }

  .mega-sidebar {
    width: 100%;
    max-height: 38%;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0.25rem;
  }

  .mega-side-item {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .mega-groups {
    grid-template-columns: 1fr 1fr;
  }
}

.cat-menu-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  overflow-x: auto;
  scrollbar-width: none;
  min-width: 0;
  flex: 1;
}

.cat-menu-links::-webkit-scrollbar {
  display: none;
}

.cat-menu-links a {
  flex: 0 0 auto;
  padding: 0.5rem 0.7rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink-2);
  white-space: nowrap;
  border-radius: 6px;
}

.cat-menu-links a:hover,
.cat-menu-links a.active {
  color: var(--brand);
}

.product-grid {
  display: grid;
  gap: 0.65rem;
}

.product-cell {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.product-cell:hover {
  box-shadow: 0 8px 24px rgba(23, 72, 115, 0.12);
}

.product-cell .thumb {
  aspect-ratio: 1;
  background: #ebebeb;
  position: relative;
  overflow: hidden;
}

.product-cell .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-cell .fav {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #bdbdbd;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
  font-size: 0.95rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.product-cell .fav.active,
.product-cell .fav.is-on {
  color: #e53935;
  animation: heartPop 0.3s var(--ease);
}

@keyframes heartPop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.product-cell .meta {
  padding: 0.55rem 0.6rem 0.7rem;
}

.product-cell .price {
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
}

.product-cell .title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-top: 0.15rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

.product-cell .loc {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 0.25rem;
}

.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  background: var(--bg);
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.badge-sold {
  background: #ffebee;
  color: var(--error);
}

.badge-reserved {
  background: #fff3e0;
  color: var(--warning);
}

.badge-new {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.auth-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1rem;
  background: var(--white);
}

.auth-brand {
  text-align: center;
  margin-bottom: 1.5rem;
}

.auth-brand .logo-wrap {
  margin-bottom: 0.35rem;
}

.auth-brand p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-weight: 600;
}

.auth-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.25rem;
}

.auth-links {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.auth-links a {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-underline-offset: 3px;
}

.auth-links p {
  margin: 0.5rem 0 0;
}

.gallery {
  position: relative;
  aspect-ratio: 1;
  background: #ebebeb;
  overflow: hidden;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.gallery-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.gallery-dots span.on {
  background: var(--brand);
}

.detail-body {
  padding: 1rem;
  background: var(--white);
}

.detail-price {
  font-size: 1.75rem;
  font-weight: 800;
}

.detail-title {
  font-size: 1.1rem;
  margin: 0.35rem 0 0.55rem;
  font-weight: 700;
  letter-spacing: 0;
  font-family: var(--font);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin-bottom: 0.9rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.seller-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0.9rem 0;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg);
}

.avatar.lg {
  width: 88px;
  height: 88px;
}

.filters-bar {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.search-inline {
  flex: 1;
  min-height: 42px;
  border: 0;
  border-radius: 21px;
  padding: 0 1rem;
  background: var(--white);
  font-weight: 600;
  outline: none;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  max-height: 80vh;
  overflow: auto;
  background: var(--white);
  border-radius: 16px 16px 0 0;
  padding: 1.1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  transform: translateY(110%);
  transition: transform 0.28s var(--ease);
}

.drawer.open {
  transform: none;
}

.drawer h3 {
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.list {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.list-item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.list-item:last-child {
  border-bottom: 0;
}

.list-item:active {
  background: var(--bg);
}

.list-item .thumb-sm {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--bg);
  flex-shrink: 0;
}

.list-item .body {
  flex: 1;
  min-width: 0;
}

.list-item .body strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
}

.list-item .body p {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.list-item .time {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  flex-shrink: 0;
}

.tabs {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 20px;
  padding: 0.45rem 0.95rem;
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
}

.tabs button.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.chat-page {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: var(--bg);
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.chat-stream {
  flex: 1;
  overflow: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bubble {
  max-width: 78%;
  padding: 0.65rem 0.9rem;
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

.bubble.them {
  align-self: flex-start;
  background: var(--white);
  border-bottom-left-radius: 4px;
}

.bubble.me {
  align-self: flex-end;
  background: var(--brand);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-compose {
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: var(--white);
  border-top: 1px solid var(--line);
}

.chat-compose input {
  flex: 1;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 21px;
  padding: 0 1rem;
  background: var(--bg);
  outline: none;
  font-weight: 600;
}

.profile-hero {
  text-align: center;
  padding: 1.25rem 0.5rem 0.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 0.75rem;
}

.profile-hero .avatar {
  margin: 0 auto 0.65rem;
  border: 3px solid var(--brand);
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 1rem 0;
  text-align: center;
}

.profile-stats div strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
}

.profile-stats div span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}

.settings-list {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.settings-list a,
.settings-list button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.9rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
}

.settings-list a:last-child,
.settings-list button:last-child {
  border-bottom: 0;
}

.upload-zone {
  border: 2px dashed var(--brand);
  border-radius: var(--radius);
  padding: 1.35rem 1rem;
  text-align: center;
  color: var(--muted);
  background: var(--brand-soft);
  margin-bottom: 1rem;
  cursor: pointer;
  font-weight: 600;
}

.upload-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.upload-preview .ph {
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--line);
}

.empty {
  text-align: center;
  padding: 2.5rem 1.25rem;
  color: var(--muted);
  font-weight: 600;
  background: var(--white);
  border-radius: var(--radius);
}

.empty h3 {
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.subcats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.subcats a {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 700;
}

.subcats a.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0.9rem;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  background: var(--white);
}

.switch {
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: #cfcfcf;
  position: relative;
  border: 0;
  cursor: pointer;
}

.switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
}

.switch.on {
  background: var(--brand);
}

.switch.on::after {
  transform: translateX(20px);
}

#toast-root {
  position: fixed;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: flex-end;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  min-width: 200px;
  max-width: min(340px, calc(100vw - 1.7rem));
  padding: 0.8rem 1rem;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  animation: toastIn 0.25s var(--ease);
}

.toast.success {
  background: var(--success);
}
.toast.error {
  background: var(--error);
}
.toast.warning {
  background: var(--warning);
}
.toast.info {
  background: var(--info);
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.home-banner {
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1rem;
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
}

/* â€”â€” Seller shop profile (Gardrops-like) â€”â€” */
.seller-page {
  background: var(--white);
  min-height: 60vh;
}

.seller-head {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 1rem 1.25rem;
}

.seller-head-main {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem 1rem;
  align-items: start;
}

.seller-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg);
  border: 2px solid var(--line);
}

.seller-info {
  min-width: 0;
}

.seller-name {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.25rem;
}

.seller-rating {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.seller-rating .stars {
  color: #f5a623;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

.seller-rating a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.seller-follow-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-2);
}

.seller-follow-stats a {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: inherit;
}

.seller-follow-stats strong {
  font-weight: 800;
  color: var(--ink);
}

.seller-meta-list {
  list-style: none;
  margin: 0 0 0.65rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.seller-meta-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-2);
}

.seller-meta-list .sm-ico {
  width: 1.1rem;
  text-align: center;
  color: var(--brand);
  font-size: 0.85rem;
}

.seller-meta-list .sm-svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--ink-2);
}

.seller-bio {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.45;
  max-width: 36rem;
}

.seller-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.seller-actions .btn-dark,
.seller-actions .btn-primary {
  min-width: 140px;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
}

.btn-dark:hover {
  filter: brightness(1.08);
}

.seller-tabs.tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 0.5rem;
  background: transparent;
}

.seller-tabs::-webkit-scrollbar {
  display: none;
}

.seller-tabs button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 0;
  background: transparent;
  padding: 0.9rem 1rem;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  border-radius: 0;
}

.seller-tabs button svg {
  width: 18px;
  height: 18px;
}

.seller-tabs button.active {
  color: var(--ink);
  border-bottom-color: var(--ink);
  background: transparent;
}

.seller-toolbar {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.seller-count {
  font-size: 0.95rem;
}

.seller-toolbar-actions {
  display: flex;
  gap: 0.45rem;
}

.seller-toolbar-actions .btn {
  border-radius: 20px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.seller-toolbar-actions .btn svg {
  width: 16px;
  height: 16px;
}

.seller-listings {
  padding-top: 0;
}

.seller-grid .product-cell {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.seller-grid .product-cell:hover {
  box-shadow: none;
  transform: none;
}

.seller-grid .thumb {
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  overflow: hidden;
}

.thumb-badge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.35rem 0.5rem;
  background: rgba(245, 245, 245, 0.92);
  color: var(--ink-2);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

.thumb-badge.sold {
  background: rgba(26, 26, 26, 0.72);
  color: #fff;
}

.seller-grid .meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
}

.seller-grid .fav-inline {
  position: static;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1;
  padding: 0;
}

.seller-grid .fav-inline.is-on,
.seller-grid .fav-inline.active {
  color: #e11d48;
  background: transparent;
}

.seller-grid .submeta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 0.2rem;
}

.topnav,
.letgo-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.topnav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.75rem;
}

.topnav .logo {
  height: 40px;
  max-width: 200px;
}

.topnav .spacer,
.letgo-header .spacer {
  flex: 1;
}

.hero {
  background: var(--brand-dark);
  padding: 1.5rem 1rem 1.75rem;
  color: #fff;
}

/* —— Letgo-style home —— */
.lg-top {
  display: none;
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.lg-top-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.lg-top .logo {
  height: 48px;
  max-width: 220px;
}

.lg-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0 1.1rem;
  background: #f2f2f2;
  border-radius: 999px;
  border: 1px solid transparent;
}

.lg-search:focus-within {
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(23, 72, 115, 0.12);
}

.lg-search-ico {
  width: 20px;
  height: 20px;
  color: var(--muted);
  flex: 0 0 auto;
}

.lg-search input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: none;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  min-width: 0;
}

.lg-search input::placeholder {
  color: #9a9a9a;
  font-weight: 600;
}

.lg-loc {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
  max-width: 220px;
}

.lg-loc svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  flex: 0 0 auto;
}

.lg-loc .lg-chev {
  width: 16px;
  height: 16px;
  color: var(--muted);
}

.lg-loc [data-loc-label] {
  overflow: hidden;
  text-overflow: ellipsis;
}

.lg-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.lg-sell {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lg-sell svg {
  width: 16px;
  height: 16px;
}

.cat-grid-ico {
  width: 14px;
  height: 14px;
  fill: currentColor;
  margin-right: 0.25rem;
  vertical-align: -1px;
}

.home-section-pad {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 1rem 1.25rem;
}

.home-h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.85rem;
}

.home-hero {
  background: linear-gradient(105deg, #0f3558 0%, #174873 48%, #2a6a9a 100%);
  color: #fff;
  margin: 0.75rem 1rem 0;
  border-radius: 16px;
  overflow: hidden;
}

.home-hero-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  display: grid;
  gap: 1rem;
  align-items: center;
}

.home-hero-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.home-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
}

.home-hero-sub {
  margin: 0 0 1rem;
  font-weight: 600;
  opacity: 0.92;
  max-width: 32rem;
}

.home-hero .btn-primary {
  background: #fff;
  color: var(--brand);
  box-shadow: none;
}

.home-hero .btn-primary:hover {
  background: #f0f6fb;
}

.home-hero-visual {
  display: none;
  gap: 0.65rem;
  justify-content: flex-end;
}

.home-hero-visual img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transform: rotate(-4deg);
}

.home-hero-visual img:nth-child(2) {
  transform: rotate(3deg) translateY(10px);
}

.home-hero-visual img:nth-child(3) {
  transform: rotate(-2deg);
}

.home-trends {
  padding-top: 1.25rem;
}

.trend-row {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
}

.trend-chip {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 168px;
  padding: 0.7rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.25;
}

.trend-chip small {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.72rem;
}

.trend-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brand-soft);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex: 0 0 auto;
}

.home-feed {
  padding-top: 0.5rem;
}

.home-scroll {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.home-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  display: block;
  color: inherit;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.home-grid .home-card {
  flex: none;
  width: auto;
}

.home-card-thumb {
  position: relative;
  aspect-ratio: 1;
  background: #ebebeb;
  overflow: hidden;
}

.home-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-card-seller {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.55rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.home-card-avatar {
  width: 22px !important;
  height: 22px !important;
  border-radius: 50%;
  border: 1.5px solid #fff;
  object-fit: cover;
}

.home-card-arrow {
  margin-left: auto;
  font-size: 1.1rem;
  opacity: 0.9;
}

.home-card-thumb .fav {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #bdbdbd;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
}

.home-card-thumb .fav.is-on,
.home-card-thumb .fav.active {
  color: #e11d48;
}

.home-card-meta {
  padding: 0.55rem 0.65rem 0.7rem;
}

.home-card-meta .price {
  font-weight: 800;
  font-size: 0.98rem;
}

.home-card-meta .title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-2);
  margin-top: 0.15rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-card-meta .loc {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.home-card-promo {
  background: linear-gradient(145deg, #174873, #2f7eb8 55%, #5bb0d6);
  border: 0;
  color: #fff;
  min-height: 260px;
}

.home-card-promo .promo-inner {
  height: 100%;
  min-height: 260px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.45rem;
}

.home-card-promo strong {
  font-size: 1.15rem;
}

.home-card-promo p {
  margin: 0;
  font-weight: 600;
  opacity: 0.92;
  font-size: 0.88rem;
}

.muted {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.88rem;
}

/* Konum seçici */
.loc-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 80;
}

.loc-sheet {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, calc(100% - 2rem));
  max-height: min(80vh, 560px);
  overflow: auto;
  background: var(--white);
  border-radius: 16px;
  z-index: 90;
  padding: 1rem 1.1rem 1.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.loc-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.loc-sheet-head h2 {
  margin: 0;
  font-size: 1.1rem;
}

.loc-sheet-hint {
  margin: 0 0 0.85rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
}

.loc-gps-btn {
  width: 100%;
  margin-bottom: 0.85rem;
}

.loc-city-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.loc-city-btn {
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 10px;
  padding: 0.65rem 0.5rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.loc-city-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft);
}

.trend-ico-new { background: #e8f5e9; }
.trend-ico-new::before { content: ""; width: 14px; height: 14px; border-radius: 3px; border: 2px solid #2e7d32; display: block; }
.trend-ico-star { background: #fff8e1; }
.trend-ico-star::before { content: ""; width: 0; height: 0; border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 12px solid #f5a623; display: block; }
.trend-ico-heart { background: #fce4ec; }
.trend-ico-heart::before { content: "?"; color: #e11d48; font-size: 1rem; line-height: 1; }
.trend-ico-pin { background: #e3f2fd; }
.trend-ico-pin::before { content: ""; width: 10px; height: 10px; border-radius: 50% 50% 50% 0; background: var(--brand); transform: rotate(-45deg); display: block; }
.trend-ico-tech { background: #ede7f6; }
.trend-ico-tech::before { content: ""; width: 16px; height: 12px; border: 2px solid #5e35b1; border-radius: 2px; display: block; }
.trend-ico-home { background: #e0f2f1; }
.trend-ico-home::before { content: ""; width: 14px; height: 10px; border: 2px solid #00897b; border-top: 0; display: block; box-shadow: 0 -6px 0 -2px #00897b; }

/* —— Auth modal (Ilan Ver kapisi) —— */
body.am-open {
  overflow: hidden;
}

.am-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  z-index: 100;
}

.am-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(440px, calc(100vw - 1.5rem));
  max-height: min(92vh, 720px);
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  z-index: 110;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
}

.am-head {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 0.25rem;
  padding: 0.85rem 0.85rem 0.75rem;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}

.am-head h2 {
  margin: 0;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 800;
}

.am-icon {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
}

.am-icon:hover {
  background: var(--bg);
}

.am-icon svg {
  width: 22px;
  height: 22px;
}

.am-body {
  padding: 1.1rem 1.25rem 1.35rem;
}

.am-welcome {
  text-align: center;
}

.am-art {
  width: min(280px, 100%);
  height: auto;
  margin: 0.25rem auto 0.85rem;
  display: block;
}

.am-welcome h3 {
  margin: 0 0 0.45rem;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
}

.am-welcome > p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.45;
}

.am-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  font: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  margin-bottom: 0.65rem;
}

.am-btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.am-btn-primary:hover {
  background: var(--brand-dark);
}

.am-btn-primary:disabled {
  background: #d8d8d8;
  border-color: #d8d8d8;
  color: #fff;
  cursor: not-allowed;
}

.am-btn-outline {
  background: #fff;
  color: var(--brand);
  border-color: var(--brand);
}

.am-btn-outline:hover {
  background: var(--brand-soft);
}

.am-btn-pill {
  border-radius: 999px;
  margin-top: 1.5rem;
}

.am-btn-icon svg {
  width: 20px;
  height: 20px;
}

.am-or {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.35rem 0 0.9rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.am-or::before,
.am-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.am-google {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 56px;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  text-align: left;
  font: inherit;
  margin-bottom: 1rem;
}

.am-google:hover {
  border-color: #c9c9c9;
  background: #fafafa;
}

.am-g-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex: 0 0 auto;
}

.am-google strong {
  display: block;
  font-size: 0.9rem;
}

.am-google small {
  color: var(--muted);
  font-weight: 600;
}

.am-g-logo {
  width: 22px;
  height: 22px;
  margin-left: auto;
}

.am-legal {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.45;
  text-align: center;
}

.am-legal a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.am-phone {
  text-align: center;
  padding-top: 0.35rem;
}

.am-logo {
  height: 42px;
  max-width: 200px;
  margin: 0.25rem auto 1rem;
  display: block;
  object-fit: contain;
}

.am-phone h3 {
  margin: 0 0 1.25rem;
  font-size: 1.2rem;
  font-weight: 800;
}

.am-phone-field {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  min-height: 52px;
}

.am-flag {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.am-cc {
  font-weight: 800;
  color: var(--ink-2);
  padding-right: 0.45rem;
  border-right: 1px solid var(--line);
}

.am-phone-field input {
  flex: 1;
  border: 0;
  outline: none;
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  min-width: 0;
  background: transparent;
}

.am-email .am-label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0.35rem 0 0.35rem;
  text-align: left;
}

.am-input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.85rem;
  font: inherit;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.am-input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(23, 72, 115, 0.12);
}

@media (max-width: 767px) {
  .am-modal {
    width: min(100vw - 1rem, 420px);
    border-radius: 16px;
  }
}
