/* 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;
}

.detail-layout {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.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(--bg);
}

.detail-body.pd-info {
  padding: 0.75rem 0.85rem 1rem;
  background: transparent;
}

.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;
  flex: 0 0 auto;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.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;
}

/* ?? Sat?c? profili (Letgo tarz? ma?aza) ?? */
.seller-page {
  background: #f7f8fa;
  min-height: 60vh;
  padding-bottom: 1.5rem;
}

.sp-body .sp-topnav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
}

.sp-top-brand {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sp-top-brand .logo {
  height: 28px;
  width: auto;
}

.sp-top-actions {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.sp-hero {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1rem 1rem 1.1rem;
}

.sp-hero-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
}

.seller-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg);
  border: 2px solid var(--line);
}

.sp-hero-main {
  min-width: 0;
}

.sp-name-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.seller-name {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.sp-plus {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #174873, #2a9d8f 55%, #e9c46a);
  line-height: 1;
}

.seller-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.3rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-2);
}

.seller-rating .stars {
  color: #f5a623;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.seller-rating strong {
  color: var(--ink);
  font-weight: 800;
}

.sp-info-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.sp-info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  box-shadow: 0 1px 2px rgba(15, 35, 58, 0.03);
}

.sp-info-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.sp-info-card strong {
  font-size: 0.95rem;
  font-weight: 800;
}

.sp-verified {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 1.4rem;
}

.sp-v-ico {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
}

.sp-v-ico svg {
  width: 16px;
  height: 16px;
}

.sp-stats {
  width: min(var(--max), 100%);
  margin: 0 auto;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 1rem;
}

.sp-stat {
  text-align: center;
  border-right: 1px solid var(--line);
  padding: 0 0.35rem;
}

.sp-stat:nth-child(3) {
  border-right: 0;
}

.sp-stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.sp-stat strong {
  font-size: 1.05rem;
  font-weight: 800;
}

.sp-follow-fab {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  margin-left: 0.35rem;
  box-shadow: 0 4px 12px rgba(23, 72, 115, 0.28);
}

.sp-follow-fab:hover {
  background: var(--brand-dark);
}

.sp-follow-fab svg {
  width: 22px;
  height: 22px;
}

.sp-filters {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0.85rem 1rem 0.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.sp-search {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  min-height: 42px;
}

.sp-search svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex: 0 0 auto;
}

.sp-search input {
  border: 0;
  outline: 0;
  width: 100%;
  font: inherit;
  font-weight: 600;
  background: transparent;
}

.sp-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.sp-pill {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  min-height: 40px;
}

.sp-pill:hover {
  border-color: #c5d5e4;
  background: #f8fafc;
}

.sp-tabs {
  width: min(var(--max), 100%);
  margin: 0.35rem auto 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0 1rem;
}

.sp-tabs button,
.sp-tabs.tabs button {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  padding: 0.85rem 0.25rem;
  font: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  border-radius: 0;
}

.sp-tabs button.active,
.sp-tabs.tabs button.active {
  color: var(--brand);
  background: transparent;
  border: 0;
  border-bottom: 3px solid var(--brand);
  border-radius: 0;
}

.seller-listings {
  padding-top: 0.85rem;
}

.seller-grid .product-cell.sp-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  overflow: visible;
}

.seller-grid .product-cell.sp-card:hover {
  box-shadow: none;
  transform: none;
}

.sp-card .thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: #eee;
}

.sp-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-card .fav {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  color: #94a3b8;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.sp-card .fav.is-on {
  color: #e11d48;
}

.sp-card-trust {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 800;
  color: #1b7a45;
  z-index: 1;
}

.sp-card-trust svg {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
}

.sp-card-pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  background: #eaf7ef;
  color: #1b7a45;
  border-radius: 8px;
  padding: 0.35rem 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.sp-card-pay svg {
  width: 14px;
  height: 14px;
}

.sp-card .meta {
  padding: 0.4rem 0.1rem 0;
}

.sp-card .meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
}

.sp-card .price {
  font-weight: 800;
  font-size: 0.95rem;
}

.sp-card-taksit {
  font-size: 0.72rem;
  font-weight: 800;
  color: #1a5f9e;
  background: #e8f3fc;
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
  white-space: nowrap;
}

.sp-card .title {
  margin-top: 0.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* eski s?n?flar (geriye uyumluluk) */
.seller-head,
.seller-actions,
.seller-tabs,
.seller-toolbar,
.seller-follow-stats,
.seller-meta-list,
.seller-bio {
  /* yeni d?zende kullan?lm?yor */
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
}

.btn-dark:hover {
  filter: brightness(1.08);
}

.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.35rem;
}

.trend-wrap {
  position: relative;
}

.trend-track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding: 0.15rem 0.25rem 0.85rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.trend-track::-webkit-scrollbar {
  display: none;
}

.trend-card {
  flex: 0 0 148px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: inherit;
  text-decoration: none;
}

.trend-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 11;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(165deg, #d7e8f6 0%, #b9d4ea 55%, #a8c8e2 100%);
}

.trend-pedestal {
  position: absolute;
  left: 50%;
  bottom: 10%;
  width: 62%;
  height: 18%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.15) 70%, transparent 72%);
  box-shadow: 0 8px 16px rgba(23, 72, 115, 0.12);
  z-index: 1;
}

.trend-card-media img {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 58%;
  height: 68%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  z-index: 2;
  filter: drop-shadow(0 6px 10px rgba(15, 53, 88, 0.22));
  transition: transform 0.25s var(--ease);
}

.trend-card:hover .trend-card-media img {
  transform: translate(-50%, -54%) scale(1.04);
}

.trend-card-label {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  padding: 0 0.15rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}

.trend-next {
  position: absolute;
  right: 0.15rem;
  top: 28%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand);
  box-shadow: 0 6px 18px rgba(23, 72, 115, 0.16);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
}

.trend-next svg {
  width: 20px;
  height: 20px;
}

.trend-next:hover {
  background: var(--brand-soft);
}

.trend-next.is-end,
.trend-next:disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Eski chip stilleri (ba?ka sayfada kullan?lm?yorsa zarars?z) */
.trend-row {
  display: none;
}

.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;
}

/* display:flex/grid overrides UA [hidden]; keep close working */
.am-backdrop[hidden],
.am-modal[hidden] {
  display: none !important;
}

/* Keep back-button grid cell so X stays on the right */
.am-icon[hidden] {
  display: grid !important;
  visibility: hidden;
  pointer-events: none;
}

.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;
  }
}

/* ?? Site footer ?? */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  padding: 2rem 0 1.25rem;
}

.sf-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.sf-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1.25rem;
}

.sf-col h3 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.sf-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.sf-links a {
  color: var(--ink-2);
  font-weight: 600;
  font-size: 0.88rem;
}

.sf-links a:hover {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sf-seal {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #4a90d9, #174873 70%);
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 14px rgba(23, 72, 115, 0.28);
}

.sf-seal span {
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
}

.sf-seal small {
  font-weight: 700;
  font-size: 0.72rem;
  opacity: 0.9;
}

.sf-pays {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.sf-pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 0.5rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--ink-2);
  background: #fafafa;
}

.sf-ssl {
  gap: 0.25rem;
}

.sf-ssl::before {
  content: "";
  width: 10px;
  height: 12px;
  border: 2px solid var(--brand);
  border-radius: 3px 3px 2px 2px;
  display: inline-block;
  margin-right: 4px;
  vertical-align: -2px;
  box-shadow: inset 0 -5px 0 -3px var(--brand);
}

.sf-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.sf-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #fff;
}

.sf-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.sf-social:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.sf-stores {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.sf-store {
  display: block;
  border: 1px solid var(--ink);
  border-radius: 8px;
  padding: 0.45rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

.sf-store strong {
  font-size: 0.82rem;
}

.sf-bottom {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sf-bottom p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.sf-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}

.sf-legal a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-2);
}

.sf-legal a:hover {
  color: var(--brand);
}

.home-lazy-status {
  text-align: center;
  padding: 0.75rem 0 0.25rem;
  font-size: 0.85rem;
}

.home-lazy-sentinel {
  height: 24px;
}

@media (min-width: 768px) {
  .sf-cols {
    grid-template-columns: 1.1fr 1.1fr 0.9fr 1fr 1fr;
    gap: 1.5rem;
  }

  .sf-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .sf-stores {
    flex-direction: row;
  }
}

body.has-tab .site-footer {
  padding-bottom: 1.5rem;
}

/* ?? Kurumsal / yasal sayfalar ?? */
.corp-page {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 1.25rem 1rem 2.5rem;
}

.corp-hero {
  margin-bottom: 1.25rem;
}

.corp-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
}

.corp-hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
}

.corp-lead {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.55;
}

.corp-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.5rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: var(--nav-h, 56px);
  background: rgba(243, 245, 247, 0.92);
  backdrop-filter: blur(6px);
  z-index: 5;
}

.corp-toc a {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-2);
}

.corp-toc a:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.corp-prose section {
  margin-bottom: 1.75rem;
  scroll-margin-top: 110px;
}

.corp-prose h2 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  font-weight: 800;
}

.corp-prose h3 {
  margin: 1rem 0 0.4rem;
  font-size: 1rem;
  font-weight: 800;
}

.corp-prose p,
.corp-prose li {
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.6;
}

.corp-prose p {
  margin: 0 0 0.75rem;
}

.corp-prose ul,
.corp-prose ol {
  margin: 0 0 0.85rem;
  padding-left: 1.2rem;
}

.corp-prose a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.corp-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 0.75rem 0 1rem;
}

.corp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.05rem;
}

.corp-card h3 {
  margin: 0 0 0.4rem;
}

.corp-card p {
  margin: 0;
  font-size: 0.92rem;
}

.corp-steps {
  counter-reset: step;
}

.corp-faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.5rem;
}

.corp-faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--ink);
}

.corp-faq p {
  margin: 0.55rem 0 0;
  font-size: 0.92rem;
}

.corp-alert {
  background: #fff4e5;
  border: 1px solid #f0c36d;
  color: #6b4a00;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.corp-alert a {
  color: #5a3d00;
  font-weight: 800;
}

.corp-danger-list li {
  color: #9f1239;
}

.corp-contact {
  background: var(--brand-soft);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin: 0.75rem 0;
}

.corp-contact p {
  margin: 0 0 0.35rem;
  color: var(--ink);
}

.corp-note {
  font-size: 0.86rem;
  color: var(--muted) !important;
}

.corp-related {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.corp-related h2 {
  width: 100%;
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.corp-related a {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-2);
}

.corp-related a:hover {
  border-color: var(--brand);
  color: var(--brand);
}

@media (min-width: 768px) {
  .corp-page {
    padding: 1.75rem 1.25rem 3rem;
  }

  .corp-cards {
    grid-template-columns: 1fr 1fr;
  }

  body:has(.desk-nav) .corp-toc,
  body:has(.lg-top) .corp-toc {
    top: 72px;
  }
}

/* ?? Product detail (teklif / sohbet) ?? */
.pd-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  padding: 0.75rem 1rem 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  color: #8a9199;
}

.pd-breadcrumb a {
  color: #8a9199;
  text-decoration: none;
  font-weight: 600;
}

.pd-breadcrumb a:hover {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pd-bc-sep {
  color: #b0b6bd;
  font-weight: 500;
  user-select: none;
}

.pd-bc-current {
  color: #2a2f36;
  font-weight: 800;
}

.pd-gallery .gallery {
  position: relative;
  border-radius: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #f3f5f7;
}

.pd-main-img {
  cursor: zoom-in;
}

.pd-plus-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid var(--brand);
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 1px 4px rgba(15, 35, 58, 0.12);
}

.pd-gallery-tools {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  display: flex;
  gap: 0.45rem;
}

.pd-tool-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(15, 35, 58, 0.14);
  font-size: 1.05rem;
  line-height: 1;
}

.pd-tool-btn svg {
  width: 18px;
  height: 18px;
}

.pd-tool-btn:hover {
  background: #fff;
}

.pd-tool-fav.is-on,
.pd-tool-fav.active {
  color: #e11d48;
}

.pd-ad-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 56px;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  background: linear-gradient(90deg, #e8f0f6 0%, #f5f8fb 55%, #eef4f9 100%);
  border: 1px solid var(--line);
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 0.92rem;
}

.pd-ad-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.pd-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 1px 6px rgba(15, 35, 58, 0.14);
}

.pd-nav:hover {
  background: #fff;
}

.pd-nav-prev {
  left: 10px;
}

.pd-nav-next {
  right: 10px;
}

.pd-zoom-hint {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
}

.pd-count {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
}

.pd-thumbs {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.55rem;
  overflow-x: auto;
}

.pd-thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
  cursor: pointer;
}

.pd-thumb.on {
  border-color: var(--brand);
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.pd-lb-open {
  overflow: hidden;
}

.pd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 18, 28, 0.92);
  padding: 1.5rem;
}

.pd-lightbox[hidden] {
  display: none !important;
}

.pd-lb-img {
  max-width: min(96vw, 1100px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.pd-lb-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.pd-lb-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.pd-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.pd-lb-nav:hover {
  background: rgba(255, 255, 255, 0.28);
}

.pd-lb-prev {
  left: 1rem;
}

.pd-lb-next {
  right: 1rem;
}

.pd-lb-count {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.45);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.pd-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
  flex-wrap: wrap;
}

.pd-panel {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 1.1rem 1.15rem 1.25rem;
  box-shadow: 0 1px 2px rgba(15, 35, 58, 0.04);
}

.pd-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.95rem;
}

.pd-head-main {
  flex: 1;
  min-width: 0;
}

.pd-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
}

.pd-price-row .detail-price {
  margin: 0;
  font-size: 1.85rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.pd-taksit {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: #e8f3fc;
  color: #1a5f9e;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.pd-taksit svg {
  width: 14px;
  height: 14px;
}

.pd-price-row .pd-fav-link {
  margin-left: auto;
  font-size: 1.15rem;
}

.pd-head .detail-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.pd-head-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.pd-head-side {
  flex: 0 0 auto;
  text-align: right;
  max-width: 42%;
}

.pd-loc {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.3rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.pd-loc svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--muted);
}

.pd-date {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.pd-promo-pay {
  background: #eaf7ef;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
}

.pd-promo-pay-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.pd-promo-ico {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #cdeed8;
  color: #1b7a45;
  flex: 0 0 auto;
}

.pd-promo-ico svg {
  width: 16px;
  height: 16px;
}

.pd-promo-pay p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

.pd-promo-inline {
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  color: var(--brand);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pd-promo-inline:hover {
  color: var(--brand-dark);
}

.pd-promo-cta {
  margin-top: 0.65rem;
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
}

.pd-promo-cta:hover {
  background: var(--brand-dark);
}

.pd-trust {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 12px;
  background: #f3f5f7;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  font-size: 0.92rem;
  min-height: 46px;
  margin-bottom: 0.65rem;
  cursor: pointer;
}

.pd-trust svg {
  width: 18px;
  height: 18px;
  color: #22a05b;
}

.pd-credit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 1.15rem;
  background: var(--white);
}

.pd-credit:hover {
  border-color: #c5d5e4;
  background: #f8fafc;
}

.pd-credit-ico {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f3f5f7;
  color: var(--ink);
  flex: 0 0 auto;
}

.pd-credit-ico svg {
  width: 20px;
  height: 20px;
}

.pd-credit span:nth-child(2) {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.pd-credit strong {
  font-size: 0.95rem;
  font-weight: 800;
}

.pd-credit em {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.pd-credit-go {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--brand);
  font-weight: 800;
  font-size: 1.1rem;
}

.pd-yeni {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.72rem;
  font-weight: 800;
}

.pd-attrs {
  margin-bottom: 1.15rem;
}

.pd-attrs h2,
.pd-desc-block h2 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.pd-attrs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.25rem;
  margin-bottom: 0.95rem;
}

.pd-attr {
  display: grid;
  grid-template-columns: minmax(72px, auto) 1fr;
  gap: 0.45rem;
  align-items: baseline;
  font-size: 0.9rem;
}

.pd-attr-k {
  color: var(--muted);
  font-weight: 600;
}

.pd-attr-v {
  font-weight: 800;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.pd-copy {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.1rem;
}

.pd-copy:hover {
  color: var(--brand);
}

.pd-attrs-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.pd-secure-btn,
.pd-return-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 46px;
  border-radius: 12px;
  font: inherit;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
}

.pd-secure-btn {
  background: #fff;
  border: 1.5px solid var(--brand);
  color: var(--brand);
}

.pd-secure-btn:hover {
  background: var(--brand-soft);
}

.pd-return-btn {
  background: var(--brand);
  border: 1.5px solid var(--brand);
  color: #fff;
}

.pd-return-btn:hover {
  background: var(--brand-dark);
}

.pd-secure-btn svg,
.pd-return-btn svg {
  width: 18px;
  height: 18px;
}

.pd-desc-block {
  margin-bottom: 1.1rem;
}

.pd-desc-block p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink);
  white-space: pre-wrap;
}

.pd-views {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.pd-brand {
  color: var(--brand);
  font-weight: 800;
  font-size: 0.92rem;
}

.pd-fav-link {
  border: 0;
  background: transparent;
  color: #e11d48;
  font: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.pd-fav-link span {
  color: var(--muted);
  font-weight: 600;
}

.pd-fav-link.is-on span,
.pd-fav-link.active span {
  color: #e11d48;
}

.pd-price-box {
  background: var(--brand-soft);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin: 0.75rem 0 1rem;
}

.pd-price-box .detail-price {
  color: var(--brand-dark);
  margin: 0;
}

.pd-price-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.badge-ship {
  background: #ede7f6;
  color: #5e35b1;
}

.pd-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}

.pd-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin: 0.15rem 0 0;
}

.pd-btn-chat,
.pd-btn-offer,
.pd-btn-map,
.pd-btn-seller {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 46px;
  border-radius: 12px;
  font-weight: 800;
}

.pd-btn-chat svg,
.pd-btn-offer svg,
.pd-btn-map svg {
  width: 18px;
  height: 18px;
}

.pd-btn-chat,
.pd-btn-offer,
.pd-btn-map {
  background: #fff;
  border: 1.5px solid var(--brand);
  color: var(--brand);
}

.pd-btn-chat:hover,
.pd-btn-offer:hover,
.pd-btn-map:hover {
  background: var(--brand-soft);
}

.pd-btn-seller {
  background: #e8f0f6;
  border: 1.5px solid transparent;
  color: var(--brand-dark);
}

.pd-btn-seller:hover {
  background: #d7e6f2;
}

.pd-btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.65rem;
  min-height: 48px;
  font-weight: 800;
  border-radius: 12px;
}

.pd-btn-buy svg {
  width: 18px;
  height: 18px;
}

.pd-aside {
  min-width: 0;
}

.pd-aside-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1rem 1.1rem;
  box-shadow: 0 1px 2px rgba(15, 35, 58, 0.04);
}

.pd-aside-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.pd-aside .pd-btn-map {
  min-height: 40px;
  padding: 0.35rem 0.65rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.pd-aside .pd-btn-map:hover {
  color: var(--brand);
  background: transparent;
}

.pd-seller-card {
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0 0 0.85rem;
  background: transparent;
}

.pd-aside-card .pd-seller-card {
  margin-bottom: 0.95rem;
}

.pd-seller-link {
  margin: 0;
  border: 0;
  padding: 0;
  gap: 0.75rem;
}

.pd-seller-link strong {
  font-size: 1rem;
}

.pd-seller-name-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.pd-seller-text {
  min-width: 0;
}

.pd-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: #fff6d9;
  color: #b45309;
  font-size: 0.75rem;
  font-weight: 800;
}

.pd-seller-meta {
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

.pd-seller-more {
  color: var(--brand);
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
}

.pd-seller-more:hover {
  text-decoration: underline;
}

.pd-seller-more.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.pd-policy {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.pd-policy:hover {
  color: var(--brand);
}

.pd-report {
  width: 100%;
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
}

.pd-report svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
}

.pd-report:hover {
  border-color: #c5d5e4;
  background: #f8fafc;
}

.pd-ship {
  background: #eaf7ef;
  color: #1b5e20;
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.pd-desc {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.75rem;
  background: #fff;
}

.pd-desc summary {
  font-weight: 800;
  cursor: pointer;
}

.pd-desc p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.55;
  white-space: pre-wrap;
}

.pd-similar {
  width: min(var(--max, 1200px), 100%);
  margin: 0 auto;
  padding: 1.25rem 1rem 6rem;
}

.pd-similar .section-head {
  margin-bottom: 0.85rem;
}

.pd-sticky-actions {
  display: none;
}

body.pd-offer-open {
  overflow: hidden;
}

.pd-offer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 100;
}

.pd-offer-sheet {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(400px, calc(100vw - 1.5rem));
  background: #fff;
  border-radius: 16px;
  z-index: 110;
  padding: 1rem 1.1rem 1.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.pd-offer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.pd-offer-head h2 {
  margin: 0;
  font-size: 1.1rem;
}

.pd-offer-note {
  resize: vertical;
  min-height: 72px;
}

/* ?? Messenger / gelen kutusu ?? */
body.msg-body {
  background: #f3f5f7;
}

.msg-gate {
  min-height: calc(100vh - 60px);
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

/* display:grid, UA [hidden] kural?n? ezer ? kap? / uygulama gizlenemezdi */
.msg-gate[hidden],
.msg-app[hidden] {
  display: none !important;
}

.msg-gate-card {
  width: min(400px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(23, 72, 115, 0.1);
}

.msg-gate-card .logo {
  height: 48px;
  margin-bottom: 0.75rem;
}

.msg-gate-card h1 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.msg-gate-card p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-weight: 600;
}

.msg-gate-card .btn {
  width: 100%;
  margin-bottom: 0.5rem;
}

.msg-app {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 56px);
  background: #fff;
  border-top: 1px solid var(--line);
}

.msg-side {
  display: none;
}

.msg-inbox,
.msg-thread {
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.msg-inbox-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem 0.35rem;
}

.msg-inbox-head h1 {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.msg-inbox-tools {
  display: flex;
  gap: 0.15rem;
}

.msg-filters {
  display: flex;
  gap: 0.45rem;
  padding: 0.5rem 1rem 0.75rem;
  overflow-x: auto;
}

.msg-filter {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
}

.msg-filter.active {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft);
}

.msg-list {
  flex: 1;
  overflow: auto;
  border-top: 1px solid var(--line);
}

.msg-row {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.75rem 1rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.msg-row.unread {
  background: #eef5fb;
}

.msg-row.active {
  background: var(--brand-soft);
}

.msg-row-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg);
}

.msg-row-body strong {
  font-size: 0.92rem;
}

.msg-official {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  color: #15803d;
  background: #dcfce7;
  border-radius: 999px;
  padding: 0.1rem 0.4rem;
  vertical-align: middle;
}

.msg-row-snippet {
  color: var(--ink-2);
  font-size: 0.84rem;
  font-weight: 600;
  margin-top: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.msg-row-listing {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.msg-row-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.msg-row-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  background: #eee;
}

.msg-badge {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.msg-thread {
  display: none;
  background: #f7f8fa;
}

.msg-thread-empty {
  flex: 1;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--muted);
}

.msg-thread-empty h2 {
  margin: 0 0 0.35rem;
  color: var(--ink);
}

.msg-thread-active {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.msg-thread-empty[hidden],
.msg-thread-active[hidden] {
  display: none !important;
}

.msg-thread-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.msg-thread-head .avatar {
  width: 40px;
  height: 40px;
}

.msg-peer-sub {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.msg-product {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  background: #fff;
  border-bottom: 1px solid var(--line);
  color: inherit;
}

.msg-product[hidden] {
  display: none !important;
}

.msg-product img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
}

.msg-product strong {
  font-size: 0.86rem;
  display: block;
}

.msg-product-price {
  font-weight: 800;
  color: var(--brand);
  font-size: 0.9rem;
}

.msg-stream {
  flex: 1;
  overflow: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.msg-quick {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.45rem 0.75rem;
  background: #fff;
  border-top: 1px solid var(--line);
  scrollbar-width: none;
}

.msg-quick::-webkit-scrollbar {
  display: none;
}

.msg-quick button {
  flex: 0 0 auto;
  border: 1.5px solid var(--brand);
  background: #fff;
  color: var(--brand);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  white-space: nowrap;
}

.msg-compose {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: #fff;
  border-top: 1px solid var(--line);
}

.msg-compose input {
  flex: 1;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font: inherit;
  font-weight: 600;
  background: #f3f5f7;
}

.msg-send {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.msg-send svg {
  width: 18px;
  height: 18px;
}

body.msg-thread-open .msg-inbox {
  display: none;
}

body.msg-thread-open .msg-thread {
  display: flex;
}

.msg-back {
  display: inline-grid;
}

/* ?? Giris sonrasi userbar + profil men? ?? */
.lg-userbar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lg-ico {
  position: relative;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  border-radius: 50%;
  color: var(--ink-2);
  display: grid;
  place-items: center;
  cursor: pointer;
  text-decoration: none;
}

.lg-ico svg {
  width: 22px;
  height: 22px;
}

.lg-ico:hover {
  background: var(--bg);
  color: var(--brand);
}

.lg-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e11d48;
  border: 2px solid #fff;
}

.lg-dot-count {
  top: 4px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  width: auto;
  padding: 0 4px;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 12px;
  color: #fff;
  display: grid;
  place-items: center;
  border-width: 1.5px;
}

.lg-notif-wrap {
  position: relative;
}

.lg-notif-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(360px, calc(100vw - 1.5rem));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(15, 35, 58, 0.18);
  z-index: 80;
  overflow: hidden;
}

.lg-notif-panel[hidden] {
  display: none !important;
}

.lg-notif-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
}

.lg-notif-head strong {
  font-size: 0.98rem;
}

.lg-notif-readall {
  border: 0;
  background: transparent;
  color: var(--brand);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  padding: 0;
}

.lg-notif-list {
  max-height: 360px;
  overflow: auto;
}

.lg-notif-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--line);
}

.lg-notif-item:last-child {
  border-bottom: 0;
}

.lg-notif-item:hover {
  background: var(--bg);
}

.lg-notif-item.is-unread {
  background: rgba(23, 72, 115, 0.06);
}

.lg-notif-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-soft, #e8f0f6);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}

.lg-notif-item strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.15rem;
}

.lg-notif-item em {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--ink-2);
  line-height: 1.35;
}

.lg-notif-item small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 700;
}

.lg-notif-empty {
  margin: 0;
  padding: 1.5rem 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.lg-notif-foot {
  display: block;
  text-align: center;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--line);
  color: var(--brand);
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
}

.lg-notif-foot:hover {
  background: var(--bg);
}

.amenu-wrap {
  position: relative;
}

.amenu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.15rem;
  border-radius: 999px;
}

.amenu-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--line);
}

.amenu-caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--brand);
  margin-left: 2px;
}

.amenu-trigger.is-open .amenu-caret {
  border-top: 0;
  border-bottom: 6px solid var(--brand);
}

.amenu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: min(360px, calc(100vw - 1.5rem));
  max-height: min(78vh, 640px);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  z-index: 80;
  padding: 0.65rem;
}

.amenu-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: #fde68a;
  color: #78350f;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 0.65rem;
}

.amenu-count {
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-style: normal;
}

.amenu-user {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.35rem 0.25rem 0.75rem;
}

.amenu-user img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.amenu-user strong {
  display: block;
  font-size: 1rem;
}

.amenu-user div div {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.amenu-edit {
  color: var(--brand);
  font-weight: 800;
  font-size: 0.88rem;
}

.amenu-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: linear-gradient(105deg, #0f3558, #174873 55%, #2a6a9a);
  color: #fff;
  border-radius: 12px;
  padding: 0.85rem;
  margin-bottom: 0.55rem;
}

.amenu-promo strong {
  display: block;
  font-size: 0.9rem;
}

.amenu-promo p {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  opacity: 0.9;
  font-weight: 600;
}

.amenu-promo .btn-light {
  flex: 0 0 auto;
  white-space: nowrap;
}

.amenu-list {
  display: flex;
  flex-direction: column;
}

.amenu-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.55rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  text-align: left;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
  border-radius: 8px;
}

.amenu-item:last-child {
  border-bottom: 0;
}

.amenu-item:hover {
  background: var(--bg);
}

.amenu-item svg {
  width: 20px;
  height: 20px;
  color: var(--ink-2);
  flex: 0 0 auto;
}

.amenu-badge {
  margin-left: auto;
  background: #2563eb;
  color: #fff;
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}

.amenu-item .amenu-count,
.amenu-item .amenu-badge {
  margin-left: auto;
}

.amenu-logout {
  color: #be123c;
}

.amenu-list-page .amenu-item {
  border: 1px solid var(--line);
  margin-bottom: 0.45rem;
  background: #fff;
}

.amenu-user-page {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
  margin-bottom: 0.75rem;
}

.profile-page {
  max-width: 520px;
}

body.amenu-open {
  /* keep page scrollable; panel overlays */
}

.is-logged-in .lg-actions .btn-outline-brand {
  display: none;
}

.desk-links .lg-userbar {
  margin-left: 0.35rem;
}

.desk-links .lg-ico {
  color: var(--ink-2);
}

.amenu-wrap-mobile .amenu-avatar {
  width: 32px;
  height: 32px;
}

.lg-userbar .lg-sell svg {
  stroke: currentColor;
}

/* OTP adimi */
.am-otp {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.25rem 0 0.5rem;
}

.am-otp h3 {
  margin: 0;
  font-size: 1.15rem;
  text-align: center;
}

.am-hint {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
  text-align: center;
}

.am-otp-input {
  letter-spacing: 0.35em;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 800;
}

.am-otp-cells {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 0.15rem 0 0.25rem;
}

.am-otp-cell {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  min-height: 48px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  font-family: inherit;
  caret-color: var(--brand);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.am-otp-cell:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(23, 72, 115, 0.15);
}

.am-otp-cell:disabled {
  opacity: 0.65;
  background: var(--bg);
}

.am-btn-ghost {
  border: 0;
  background: transparent;
  color: var(--brand);
  font-weight: 800;
  padding: 0.55rem;
  cursor: pointer;
}

.am-btn-ghost:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.am-profile {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-bottom: 0.35rem;
}

.am-profile h3 {
  margin: 0 0 0.15rem;
  text-align: center;
  font-size: 1.15rem;
}

.am-profile .am-hint {
  margin-bottom: 0.55rem;
}

.am-profile .am-btn {
  margin-top: 0.65rem;
}

.am-opt {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.82em;
}

.am-phone .am-hint {
  margin: 0 0 0.75rem;
}

/* ?? Profilim (Bana ?zel / Profil Ayarlar?) ?? */
.ps-page {
  width: min(var(--max, 1200px), 100%);
  margin: 0 auto;
  padding: 0.75rem 1rem 5.5rem;
}

.ps-tabs {
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.15rem;
}

.ps-tab {
  border: 0;
  background: transparent;
  padding: 0.9rem 0.1rem;
  font: inherit;
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--muted);
  cursor: pointer;
  position: relative;
}

.ps-tab.is-active {
  color: var(--ink);
}

.ps-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--brand);
  border-radius: 3px 3px 0 0;
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 900px) {
  .ps-grid {
    grid-template-columns: 300px 1fr;
    gap: 1.35rem;
    align-items: start;
  }
}

.ps-side {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ps-promo {
  background: linear-gradient(120deg, #0b2f52 0%, #174873 48%, #2f7eb8 100%);
  color: #fff;
  border-radius: 14px;
  padding: 1.05rem 1.1rem;
  position: relative;
  overflow: hidden;
}

.ps-promo::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 110px;
  height: 110px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(18deg);
}

.ps-promo-copy {
  position: relative;
  z-index: 1;
}

.ps-promo strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.3;
}

.ps-promo p {
  margin: 0.4rem 0 0.85rem;
  font-size: 0.8rem;
  line-height: 1.4;
  opacity: 0.94;
}

.ps-promo .btn-light {
  border-radius: 999px;
  font-weight: 800;
  padding: 0.4rem 0.95rem;
}

.ps-nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  background: transparent;
  border: 0;
  overflow: visible;
}

.ps-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.92rem 1rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  margin: 0;
}

.ps-nav-item::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid #9aa3af;
  border-bottom: 2px solid #9aa3af;
  transform: rotate(-45deg);
  flex: 0 0 auto;
  margin-left: 0.5rem;
}

.ps-nav-item.is-active::after {
  border-color: var(--brand);
}

.ps-nav-item.is-active {
  background: rgba(23, 72, 115, 0.1);
  color: var(--brand);
  border-color: rgba(23, 72, 115, 0.28);
}

.ps-nav-item:hover {
  background: var(--bg);
}

.ps-nav-item.is-active:hover {
  background: rgba(23, 72, 115, 0.12);
}

.ps-nav-danger {
  color: #be123c;
}

.ps-main {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  min-height: 320px;
}

.ps-settings,
.ps-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem 1.2rem 1.4rem;
}

.ps-section-bare {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.ps-section-bare > h1 {
  margin: 0 0 1rem;
}

.ps-settings-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.15rem;
}

.ps-settings-head h1,
.ps-section > h1,
.ps-soon h1 {
  margin: 0;
  font-size: 1.35rem;
}

.ps-pill-btn {
  border-radius: 999px !important;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 40px;
  padding: 0.4rem 1rem;
}

.ps-plus {
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.ps-photo-box {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.45rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fafbfc;
}

@media (max-width: 560px) {
  .ps-photo-box {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

.ps-photo-copy p {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink-2);
}

.ps-avatar,
.ps-public-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--line);
}

.ps-avatar-wrap {
  position: relative;
  width: 88px;
  height: 88px;
  flex: 0 0 auto;
}

.ps-avatar-wrap .ps-avatar {
  display: block;
}

.ps-avatar-loading {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(15, 35, 58, 0.72);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  z-index: 2;
}

.ps-avatar-loading[hidden] {
  display: none !important;
}

.ps-spinner {
  width: 1.15rem;
  height: 1.15rem;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ps-spin 0.7s linear infinite;
}

@keyframes ps-spin {
  to {
    transform: rotate(360deg);
  }
}

.ps-photo-box.is-loading {
  pointer-events: none;
}

.ps-photo-box.is-loading #ps-upload-btn {
  opacity: 0.75;
}

.ps-muted {
  color: var(--muted);
  font-size: 0.85rem;
}

.ps-block {
  margin-top: 1.35rem;
}

.ps-block h2 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
}

.ps-field {
  display: block;
  position: relative;
  background: #fff;
  border: 1px solid #d7dde5;
  border-radius: 12px;
  padding: 0.55rem 0.9rem 0.7rem;
  margin-bottom: 0.7rem;
}

.ps-field-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.15rem;
}

.ps-field-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
}

.ps-field input,
.ps-field textarea {
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
  resize: vertical;
  outline: none;
  padding: 0;
}

.ps-field-area textarea {
  min-height: 96px;
}

.ps-count {
  position: static;
  font-size: 0.75rem;
  font-style: normal;
  color: var(--muted);
  font-weight: 700;
  flex: 0 0 auto;
}

.ps-note {
  display: flex;
  gap: 0.45rem;
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.ps-note::before {
  content: "i";
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--muted);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 0.1rem;
}

.ps-contact-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

@media (min-width: 768px) {
  .ps-contact-row {
    grid-template-columns: minmax(260px, 1.05fr) 1fr;
    align-items: center;
    gap: 1rem;
  }
}

.ps-contact-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  text-align: left;
  border: 1px solid #d7dde5;
  background: #fff;
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  cursor: pointer;
  font: inherit;
}

.ps-contact-card:hover {
  border-color: #b8c2cf;
}

.ps-contact-card small {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 700;
}

.ps-contact-card strong {
  font-size: 0.95rem;
}

.ps-contact-flag {
  font-size: 1.25rem;
}

.ps-chev {
  margin-left: auto;
  color: var(--muted);
  font-size: 1.25rem;
}

.ps-contact-help {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

.ps-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.45rem;
}

.ps-actions .btn-primary {
  min-width: min(100%, 280px);
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-weight: 800;
}

.ps-cancel {
  color: var(--brand) !important;
  font-weight: 800;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem 0.25rem;
}

.ps-public {
  text-align: center;
  padding: 1.5rem 1rem 2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.ps-public-avatar {
  width: 112px;
  height: 112px;
  margin-bottom: 0.75rem;
}

.ps-public h2 {
  margin: 0 0 0.35rem;
}

.ps-bio {
  max-width: 420px;
  margin: 0.75rem auto;
  color: var(--ink-2);
  line-height: 1.45;
}

.ps-public-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1rem;
}

.ps-soon p {
  color: var(--muted);
  line-height: 1.45;
}

.ps-opt {
  font-weight: 600;
  color: var(--muted);
}

.ps-section h1 {
  margin: 0;
  font-size: 1.35rem;
}

.ps-pill {
  border-radius: 999px !important;
  font-weight: 800;
  margin-bottom: 1rem;
}

.ps-addr-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ps-addr-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  background: #fafbfc;
}

.ps-addr-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.ps-addr-card p {
  margin: 0 0 0.65rem;
  color: var(--ink-2);
  font-size: 0.92rem;
}

.ps-edit-link {
  border: 0;
  background: transparent;
  color: var(--brand);
  font: inherit;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.ps-edit-ico {
  font-size: 0.95rem;
}

.ps-pref-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  margin-top: 0.25rem;
}

.ps-pref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  border-bottom: 1px solid var(--line);
}

.ps-pref-row:last-child {
  border-bottom: 0;
}

.ps-pref-row strong {
  display: block;
  font-size: 0.95rem;
}

.ps-pref-row p {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

.ps-tips {
  margin: 1rem 0;
  padding-left: 1.15rem;
  color: var(--ink-2);
  line-height: 1.55;
}

.ps-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(15, 23, 42, 0.45);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.ps-overlay[hidden] {
  display: none !important;
}

.ps-modal {
  width: min(440px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 1.35rem 1.25rem 1.2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.ps-modal h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.ps-modal p {
  margin: 0 0 0.65rem;
  color: var(--ink-2);
  line-height: 1.45;
  font-size: 0.92rem;
}

.ps-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

.ps-modal-actions-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.ps-pill-wide {
  border-radius: 999px !important;
  font-weight: 800;
  width: 100%;
  min-height: 44px;
}

.ps-danger-text {
  color: #be123c !important;
  margin-right: auto;
}

/* ?? ?lan ver (Sat) ?ok ad?ml? ?? */
.sell-page {
  width: min(var(--max, 1200px), 100%);
  margin: 0 auto;
  padding: 1rem 1rem 7.5rem;
}

.sell-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

@media (min-width: 960px) {
  .sell-layout {
    grid-template-columns: 1fr 300px;
    gap: 1.25rem;
  }
}

.sell-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.2rem 1.4rem;
  box-shadow: 0 1px 3px rgba(15, 53, 88, 0.04);
}

.sell-card h1 {
  margin: 0 0 1rem;
  font-size: 1.45rem;
}

.sell-card-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
}

.sell-card-title h1 {
  margin: 0;
}

.sell-back-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--ink-2);
  flex: 0 0 auto;
}

.sell-back-btn:hover {
  background: #f3f5f7;
}

.sell-crumb {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
}

.sell-sub {
  margin: 1.35rem 0 0.85rem;
  font-size: 1.05rem;
}

.sell-lead {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.45;
}

.sell-muted,
.sell-hint {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.sell-hint {
  margin: 0.25rem 0 0;
  font-weight: 500;
  line-height: 1.4;
}

.req {
  color: #e11d48;
}

.sell-photos-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.sell-link {
  border: 0;
  background: transparent;
  color: var(--brand);
  font: inherit;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
}

.sell-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

@media (max-width: 700px) {
  .sell-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.sell-photo-add {
  aspect-ratio: 1;
  border: 2px dashed var(--brand);
  border-radius: 12px;
  background: rgba(23, 72, 115, 0.04);
  color: var(--brand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  font-size: 0.85rem;
}

.sell-photo-add svg {
  width: 28px;
  height: 28px;
}

.sell-photo-slot {
  aspect-ratio: 1;
  border: 1.5px dashed #cfd6dd;
  border-radius: 12px;
  background: #f7f9fb;
  cursor: pointer;
}

.sell-photo-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.sell-photo-thumb:active {
  cursor: grabbing;
}

.sell-photo-thumb.is-dragging {
  opacity: 0.45;
}

.sell-photo-thumb.is-dragover {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.sell-photo-thumb.is-cover {
  box-shadow: 0 0 0 2px var(--brand);
}

.sell-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sell-photo-del {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  font-size: 0.75rem;
  display: grid;
  place-items: center;
}

.sell-cover-badge {
  position: absolute;
  left: 6px;
  bottom: 6px;
  background: rgba(15, 53, 88, 0.88);
  color: #fff;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
}

.sell-ai-banner,
.sell-info-banner {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  background: #e8f2fa;
  color: #0f3558;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin: 0.5rem 0 0.25rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

.sell-ai-banner svg,
.sell-info-banner svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.sell-ai-banner p,
.sell-info-banner p {
  margin: 0;
  flex: 1;
}

.sell-info-btn {
  flex: 0 0 auto;
  border: 0;
  background: #fff;
  color: var(--brand);
  font: inherit;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(15, 53, 88, 0.08);
}

.sell-warn {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  background: #fff8e6;
  color: #7a5a00;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

.sell-warn svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 0.1rem;
}

.sell-warn p {
  margin: 0;
}

.sell-field {
  display: block;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.55rem 0.85rem 0.65rem;
  margin-top: 0.75rem;
}

.sell-field-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.sell-field input,
.sell-field textarea,
.sell-field select {
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
  outline: none;
  resize: vertical;
}

.sell-field-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0.35rem 0.15rem 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.sell-field-meta em {
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.sell-pick-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.65rem 0.85rem;
  margin-top: 0.75rem;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.sell-pick-row strong {
  display: block;
  font-size: 0.98rem;
  color: var(--ink);
}

.sell-pick-chev {
  color: var(--muted);
  font-size: 1.35rem;
  font-weight: 400;
}

.sell-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.85rem 0.15rem;
  border-bottom: 1px solid var(--line);
}

.sell-toggle-last {
  border-bottom: 0;
}

.sell-toggle-row strong {
  display: block;
  font-size: 0.95rem;
}

.sell-toggle-row p {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.sell-contact-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #eef1f4;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  margin-top: 0.5rem;
}

.sell-contact-card img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.sell-contact-card small {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 700;
}

.sell-phone-field {
  position: relative;
}

.sell-phone-ok {
  position: absolute;
  right: 0.85rem;
  bottom: 0.7rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.sell-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
}

body.has-tab .sell-footer {
  bottom: calc(var(--tab-h, 60px) + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
  body.has-tab .sell-footer {
    bottom: 0;
  }
}

.sell-footer-inner {
  width: min(var(--max, 1200px), 100%);
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.sell-footer .btn[hidden],
#sell-continue[hidden],
#sell-publish[hidden] {
  display: none !important;
}

.sell-next {
  min-width: min(100%, 220px);
  border-radius: 999px !important;
  font-weight: 800;
  padding: 0.85rem 1.5rem;
}

.sell-side {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem 1rem;
  position: sticky;
  top: 1rem;
}

.sell-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sell-steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.75rem;
  position: relative;
  padding-bottom: 1.15rem;
}

.sell-steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: #d7dde3;
}

.sell-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #c5ccd3;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.sell-steps li.is-active .sell-step-num,
.sell-steps li.is-done .sell-step-num {
  background: var(--brand);
}

.sell-steps li.is-done .sell-step-num {
  background: #dbe8f3;
  color: var(--brand);
  font-size: 0.95rem;
}

.sell-steps li strong {
  display: block;
  font-size: 0.92rem;
  color: var(--ink-2);
}

.sell-steps li.is-active strong {
  color: var(--brand);
}

.sell-steps li p {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.sell-delivery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sell-delivery-card {
  position: relative;
  display: grid;
  grid-template-columns: 28px 56px 1fr;
  gap: 0.85rem;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  cursor: pointer;
  background: #fff;
}

.sell-delivery-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sell-delivery-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #c5ccd3;
  display: grid;
  place-items: center;
  color: transparent;
  font-weight: 800;
  font-size: 0.85rem;
}

.sell-delivery-card.is-checked {
  border-color: var(--brand);
  background: rgba(23, 72, 115, 0.03);
}

.sell-delivery-card.is-checked .sell-delivery-check {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.sell-delivery-art {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #f3f5f7;
  display: grid;
  place-items: center;
  position: relative;
}

.sell-delivery-art::before,
.sell-delivery-art::after {
  content: "";
  position: absolute;
  background: var(--brand);
}

.sell-delivery-art-hand::before,
.sell-delivery-art-hand::after {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 14px;
}

.sell-delivery-art-hand::before {
  left: 12px;
}

.sell-delivery-art-hand::after {
  right: 12px;
}

.sell-delivery-art-cargo::before {
  width: 26px;
  height: 20px;
  border-radius: 3px;
  top: 18px;
  left: 15px;
  opacity: 0.85;
}

.sell-delivery-art-secure::before {
  width: 18px;
  height: 22px;
  border-radius: 9px 9px 4px 4px;
  top: 16px;
  left: 19px;
  opacity: 0.85;
}

.sell-delivery-text strong {
  display: block;
  font-size: 1rem;
}

.sell-delivery-text small {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.sell-review-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.85rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem;
  background: #f7f9fb;
}

.sell-review-row img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 10px;
}

.sell-review-row p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.sell-boost {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: linear-gradient(105deg, #0f3558, #174873 55%, #2a6a9a);
  color: #fff;
}

.sell-boost p {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  opacity: 0.92;
}

.sell-modal[hidden] {
  display: none !important;
}

.sell-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.sell-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.sell-modal-panel {
  position: relative;
  width: min(420px, 100%);
  max-height: min(80vh, 560px);
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15, 53, 88, 0.2);
  padding: 1rem 1rem 0.75rem;
}

.sell-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.sell-modal-head h2 {
  margin: 0;
  font-size: 1.15rem;
}

.sell-modal-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  margin-bottom: 0.65rem;
}

.sell-modal-search svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
}

.sell-modal-search input {
  border: 0;
  outline: 0;
  width: 100%;
  font: inherit;
  font-weight: 600;
}

.sell-cond-list {
  display: flex;
  flex-direction: column;
}

.sell-cond-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #f0f2f4;
  background: transparent;
  padding: 0.9rem 0.25rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.sell-cond-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #c5ccd3;
  flex: 0 0 auto;
}

.sell-cond-item.is-selected .sell-cond-radio {
  border-color: var(--brand);
  box-shadow: inset 0 0 0 5px var(--brand);
}

body.sell-modal-open {
  overflow: hidden;
}

.sell-edit-layout {
  width: min(720px, 100%);
  margin: 0 auto;
}

.sell-edit-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 640px) {
  .sell-edit-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

.sell-footer-split {
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.sell-danger-zone {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 959px) {
  .sell-side {
    order: -1;
    position: static;
  }
  .sell-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
  }
  .sell-steps li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 0;
    gap: 0.35rem;
  }
  .sell-steps li::before {
    display: none !important;
  }
  .sell-steps li p {
    display: none;
  }
  .sell-steps li strong {
    font-size: 0.72rem;
  }
}

/* Kategori ?st ?erit ? tek sticky blok (desk-nav + cat-menu + alt sekmeler) */
:root {
  --cat-menu-h: 56px;
}

.cat-menu {
  position: sticky;
  top: 0;
  z-index: 45;
  background: #f7f7f7;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
  body:has(.desk-nav) .cat-menu,
  body:has(.lg-top) .cat-menu {
    top: var(--nav-h, 72px);
  }
}

@media (max-width: 767px) {
  body:has(.topnav) .cat-menu {
    top: var(--nav-h, 56px);
  }
}

/* Kategori sayfas?: t?m ?st men?ler birlikte sabit */
body.catalog-page .catalog-sticky {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--bg, #f3f5f7);
  box-shadow: 0 2px 10px rgba(23, 72, 115, 0.08);
}

body.catalog-page .catalog-sticky .desk-nav,
body.catalog-page .catalog-sticky .topnav,
body.catalog-page .catalog-sticky .cat-menu,
body.catalog-page .catalog-sticky .lg-top {
  position: relative;
  top: auto;
  box-shadow: none;
}

body.catalog-page .catalog-sticky .desk-nav,
body.catalog-page .catalog-sticky .topnav {
  z-index: auto;
}

body.catalog-page .catalog-sticky .cat-menu {
  z-index: auto;
  box-shadow: none;
}

body.catalog-page .catalog-sticky .cat-menu-all .mega-menu {
  z-index: 70;
}

body.catalog-page .catalog-subbar {
  background: var(--bg, #f3f5f7);
  border-bottom: 1px solid var(--line);
}

body.catalog-page .catalog-subbar-inner {
  padding-top: 0.55rem;
  padding-bottom: 0.65rem;
}

body.catalog-page .catalog-subbar .subcats {
  margin-bottom: 0;
}

body.catalog-page .catalog-main {
  padding-top: 0.85rem;
}

/* ?? ?lanlar?m (ml-*) ?? */
.ml-page {
  width: min(var(--max, 1200px), 100%);
  margin: 0 auto;
  padding: 0.85rem 1rem 5.5rem;
}

.ml-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

@media (min-width: 900px) {
  .ml-grid {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 1.25rem;
  }
}

.ml-side {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

@media (min-width: 900px) {
  .ml-side {
    display: block;
    position: sticky;
    top: 72px;
  }
}

.ml-nav {
  display: flex;
  flex-direction: column;
  padding: 0.35rem 0;
}

.ml-nav-label {
  margin: 0.85rem 1rem 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.ml-nav-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.72rem 1rem;
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  border-left: 3px solid transparent;
}

.ml-nav-item svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--muted);
}

.ml-nav-item span {
  flex: 1;
  min-width: 0;
}

.ml-nav-item:hover {
  background: #f7f9fb;
}

.ml-nav-item.is-active {
  background: var(--brand-soft);
  color: var(--brand-dark);
  border-left-color: var(--brand);
}

.ml-nav-item.is-active svg {
  color: var(--brand);
}

.ml-badge-new {
  margin: 0;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: #e8f0fe;
  color: #1a56db;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
}

.ml-badge-count {
  margin: 0;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: #f6c343;
  color: #3d2e00;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  display: inline-grid;
  place-items: center;
}

.ml-main {
  min-width: 0;
}

.fav-grid {
  margin: 0;
}

.fav-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1.25rem;
  color: var(--muted);
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.fav-empty h3 {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-weight: 800;
}

.fav-empty p {
  margin: 0 0 1rem;
  font-weight: 600;
}

.ml-toolbar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .ml-toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.ml-search {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.85rem;
}

.ml-search svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex: 0 0 auto;
}

.ml-search input {
  border: 0;
  outline: 0;
  width: 100%;
  font: inherit;
  font-weight: 600;
  background: transparent;
  color: var(--ink);
}

.ml-search input::placeholder {
  color: #9aa3ad;
  font-weight: 600;
}

.ml-filters {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.ml-filter {
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--muted);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font: inherit;
  font-weight: 800;
  font-size: 0.84rem;
  cursor: pointer;
  white-space: nowrap;
}

.ml-filter.is-active {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft);
}

.ml-info {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: 0;
  border-radius: 10px;
  background: #e8f4fc;
  color: #0b6e99;
  padding: 0.85rem 1rem;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  margin-bottom: 1rem;
}

.ml-info svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.ml-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ml-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem 0.75rem;
  box-shadow: 0 1px 2px rgba(15, 53, 88, 0.04);
}

.ml-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.ml-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #1f9d55;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
}

.ml-card-badge-cargo {
  background: var(--brand, #174873);
}

.ml-card-badge-secure {
  background: #0f766e;
}

.ml-card-badge-hand {
  background: #1f9d55;
}

.ml-card-badge svg {
  width: 14px;
  height: 14px;
}

.ml-card-body {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

@media (max-width: 560px) {
  .ml-card-body {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 0.7rem;
  }
}

.ml-card-thumb {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
  background: #eee;
  display: block;
}

@media (max-width: 560px) {
  .ml-card-thumb {
    width: 76px;
    height: 76px;
  }
}

.ml-card-info {
  min-width: 0;
}

.ml-card-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.25rem;
}

.ml-card-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.ml-status {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
}

.ml-status-active {
  background: #3b82f6;
  color: #fff;
}

.ml-status-expired {
  background: #e5e7eb;
  color: #4b5563;
}

.ml-status-disabled {
  background: #f3f4f6;
  color: #6b7280;
}

.ml-status-sold {
  background: #ef4444;
  color: #fff;
}

.ml-card-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-2);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ml-card-title a {
  color: inherit;
  text-decoration: none;
}

.ml-card-title a:hover {
  color: var(--brand);
}

.ml-card-stats {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex: 0 0 auto;
}

.ml-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  background: #fdeeee;
  color: #b42318;
  border-radius: 8px;
  padding: 0.28rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.ml-stat-n {
  font-variant-numeric: tabular-nums;
}

.ml-stat svg {
  width: 14px;
  height: 14px;
}

.ml-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.ml-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 8px;
  padding: 0.55rem 0.85rem;
  font: inherit;
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
}

.ml-btn svg {
  width: 16px;
  height: 16px;
}

.ml-btn-outline {
  background: #fff;
  border-color: var(--brand);
  color: var(--brand);
}

.ml-btn-outline:hover {
  background: var(--brand-soft);
}

.ml-btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.ml-btn-primary:hover {
  background: var(--brand-dark);
}

.ml-btn-soft {
  background: var(--brand-soft);
  color: var(--brand-dark);
  border-color: transparent;
}

.ml-btn-soft:hover {
  background: #d7e6f2;
}

.ml-card-foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  margin-top: 0.85rem;
  padding-top: 0.55rem;
  border-top: 1px solid #f0f2f4;
}

.ml-card-dates {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.ml-more {
  border: 0;
  background: transparent;
  color: var(--muted);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.ml-more:hover {
  background: #f3f5f7;
  color: var(--ink);
}

.ml-empty {
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--muted);
}

.ml-empty p {
  margin: 0 0 0.85rem;
}

.ml-menu {
  position: relative;
}

.ml-menu-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 6px);
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(15, 53, 88, 0.14);
  padding: 0.35rem;
  z-index: 20;
}

.ml-menu-panel[hidden] {
  display: none !important;
}

.ml-menu-panel a,
.ml-menu-panel button {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink-2);
  cursor: pointer;
  text-decoration: none;
}

.ml-menu-panel a:hover,
.ml-menu-panel button:hover {
  background: #f3f5f7;
}

.ml-menu-danger {
  color: #c81e1e !important;
}

.ml-confirm[hidden] {
  display: none !important;
}

.ml-confirm {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.ml-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.ml-confirm-panel {
  position: relative;
  width: min(360px, 100%);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 53, 88, 0.22);
  padding: 1.5rem 1.35rem 1.25rem;
  text-align: center;
}

.ml-confirm-panel h2 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
}

.ml-confirm-panel p {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.45;
}

.ml-confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.ml-confirm-ok,
.ml-confirm-cancel {
  border-radius: 999px !important;
  font-weight: 800 !important;
  padding: 0.75rem 0.85rem !important;
  min-height: 46px;
}

body.ml-confirm-open {
  overflow: hidden;
}

.ml-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  min-height: 1.5rem;
}

.ml-card-badge-boost {
  background: linear-gradient(105deg, #0f3558, #174873 55%, #2a6a9a);
  color: #fff;
}

.ml-btn-boosted {
  background: #0f3558;
  color: #fff;
  border-color: #0f3558;
}

.ml-btn-boosted:hover {
  background: #174873;
}

.ml-sheet[hidden] {
  display: none !important;
}

.ml-sheet {
  position: fixed;
  inset: 0;
  z-index: 92;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.ml-sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.ml-sheet-panel {
  position: relative;
  width: min(420px, 100%);
  max-height: min(86vh, 640px);
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15, 53, 88, 0.22);
  padding: 1.25rem 1.2rem 1.15rem;
}

.ml-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.ml-sheet-head h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
}

.ml-sheet-lead {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.4;
}

.ml-boost-list {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.ml-boost-option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.ml-boost-option:hover {
  border-color: #9bb8d0;
}

.ml-boost-option.is-selected {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.ml-boost-option input {
  margin-top: 0.2rem;
  accent-color: var(--brand);
}

.ml-boost-option-body {
  display: grid;
  gap: 0.2rem;
  flex: 1;
}

.ml-boost-option-body strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
}

.ml-boost-option-body span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.35;
}

.ml-boost-option-body em {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--brand);
}

.ml-boost-hint {
  margin: 0 0 0.75rem;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  background: #eef5fb;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.ml-sheet-cta {
  width: 100%;
  border-radius: 999px !important;
  font-weight: 800 !important;
  min-height: 46px;
}

.ml-qr-panel {
  text-align: center;
}

.ml-qr-box {
  display: grid;
  place-items: center;
  margin: 0.25rem auto 0.85rem;
  padding: 0.75rem;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.ml-qr-box img {
  display: block;
  width: 220px;
  height: 220px;
  object-fit: contain;
}

.ml-qr-url {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  word-break: break-all;
  line-height: 1.4;
}

.ml-qr-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.ml-qr-actions .btn {
  border-radius: 999px !important;
  font-weight: 800 !important;
  min-height: 44px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ?? Tekliflerim (of-*) ?? */
body.of-body {
  background: #f3f5f7;
  min-height: 100vh;
}

.of-app {
  width: min(var(--max, 1200px), 100%);
  margin: 0 auto;
  padding: 0.85rem 1rem 5.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.of-app[hidden] {
  display: none !important;
}

@media (min-width: 900px) {
  .of-app {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 1.25rem;
    padding-top: 1.1rem;
  }
}

.of-side {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  padding: 0.35rem 0;
}

@media (min-width: 900px) {
  .of-side {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 72px;
  }
}

.of-side-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0.78rem 1rem;
  color: var(--ink-2);
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  font-size: 0.94rem;
  cursor: pointer;
}

.of-side-item svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--muted);
}

.of-side-item:hover {
  background: #f7f9fb;
}

.of-side-item.is-active {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.of-side-item.is-active svg {
  color: var(--brand);
}

.of-side-item span {
  flex: 1;
  min-width: 0;
}

.of-chevron {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-left: auto;
}

.of-side-group.is-open .of-chevron {
  transform: rotate(-135deg);
}

.of-side-sub {
  display: none;
  flex-direction: column;
  padding: 0 0.5rem 0.35rem 2.6rem;
}

.of-side-group.is-open .of-side-sub {
  display: flex;
}

.of-side-subitem {
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--muted);
  cursor: pointer;
}

.of-side-subitem:hover {
  background: #f7f9fb;
  color: var(--ink-2);
}

.of-side-subitem.is-active {
  color: var(--brand);
  background: var(--brand-soft);
}

.of-main {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem 1.25rem;
  min-height: 420px;
}

.of-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.of-head h1 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
}

.of-back {
  display: inline-grid;
}

@media (min-width: 900px) {
  .of-back {
    display: none;
  }
}

.of-filters {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.of-filter {
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--muted);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font: inherit;
  font-weight: 800;
  font-size: 0.84rem;
  cursor: pointer;
  white-space: nowrap;
}

.of-filter.is-active {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft);
}

.of-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.of-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem 2.5rem;
  max-width: 420px;
  margin: 0 auto;
}

.of-empty-art {
  width: min(280px, 100%);
  margin-bottom: 1.25rem;
}

.of-empty-art svg {
  width: 100%;
  height: auto;
  display: block;
}

.of-empty h2 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
}

.of-empty p {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.of-empty-cta {
  min-width: 220px;
  border-radius: 999px !important;
  font-weight: 800 !important;
  padding: 0.8rem 1.4rem !important;
}

.of-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 0.85rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

@media (min-width: 640px) {
  .of-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }
}

.of-card-media {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #eef2f5;
}

.of-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.of-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.of-card-top time {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.of-status {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  background: #eef2f5;
  color: var(--ink-2);
}

.of-status-pending {
  background: #fff4e5;
  color: #9a6700;
}

.of-status-accepted {
  background: #e6f6ec;
  color: #0f7a3a;
}

.of-status-expired {
  background: #eef2f5;
  color: #6b7280;
}

.of-status-rejected {
  background: #fde8e8;
  color: #b42318;
}

.of-card-title {
  display: block;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 0.2rem;
}

.of-card-title:hover {
  color: var(--brand);
}

.of-card-peer {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.of-card-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  align-items: baseline;
  margin-bottom: 0.35rem;
}

.of-offer-amt {
  font-weight: 800;
  color: var(--brand-dark);
}

.of-list-price {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: line-through;
}

.of-card-note {
  margin: 0 0 0.55rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.4;
}

.of-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

/* ?? Account pages (ac-*) ? al??/sat??, do?rulama, kazan?, a?, geri bildirim ?? */
.ac-main { min-width: 0; }
.ac-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.15rem 1.35rem;
}
.ac-page-title {
  margin: 0 0 0.85rem;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ac-lead { margin: 0 0 1rem; color: var(--muted); font-weight: 600; line-height: 1.45; }
.ac-muted { color: var(--muted); font-weight: 600; font-size: 0.82rem; }
.ac-tabs {
  display: flex;
  gap: 1.25rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.9rem;
}
.ac-tab {
  border: 0;
  background: transparent;
  padding: 0.55rem 0.1rem 0.7rem;
  font-weight: 800;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}
.ac-tab.is-active { color: var(--brand-dark); border-bottom-color: var(--brand); }
.ac-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.ac-chip {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--ink-2);
  cursor: pointer;
}
.ac-chip.is-active,
.ac-chip.is-active:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
  background: var(--brand-soft);
}
.ac-chip:hover { background: #f7f9fb; }
.ac-empty {
  text-align: center;
  padding: 2.25rem 1rem 1.5rem;
}
.ac-empty-art {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(160deg, #e8f0f6, #f3f5f7 55%, #ffe8a3);
  display: grid;
  place-items: center;
  font-size: 2.4rem;
}
.ac-empty h3 { margin: 0 0 0.4rem; font-size: 1.15rem; }
.ac-empty p { margin: 0 0 1rem; color: var(--muted); font-weight: 600; max-width: 28rem; margin-left: auto; margin-right: auto; }
.ac-warn {
  background: #fff8e6;
  border: 1px solid #f0d58a;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
}
.ac-warn strong { display: block; margin-bottom: 0.25rem; }
.ac-warn p { margin: 0; font-size: 0.9rem; font-weight: 600; color: var(--ink-2); line-height: 1.4; }
.ac-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 700px) {
  .ac-form-row { grid-template-columns: 1fr 1fr 1fr; }
}
.ac-field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.85rem; }
.ac-field > span { font-size: 0.82rem; font-weight: 700; color: var(--muted); }
.ac-field input,
.ac-field select,
.ac-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  background: #fff;
}
.ac-field input[readonly] { background: #f3f5f7; }
.ac-input-action { display: flex; gap: 0.5rem; align-items: center; }
.ac-input-action input { flex: 1; }
.ac-card-title { margin: 0 0 0.85rem; font-size: 1.05rem; }
.ac-note { margin: 0.75rem 0 0; font-size: 0.82rem; color: var(--muted); font-weight: 600; }
.ac-note a { color: var(--brand); font-weight: 800; }
.ac-user-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.85rem; }
.ac-user-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; background: #eee; }
.ac-earn-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .ac-earn-grid { grid-template-columns: 1fr 1fr; }
}
.ac-earn-card {
  border-radius: 14px;
  padding: 1.1rem 1rem;
  text-align: center;
  background: #f7f9fb;
  border: 1px solid var(--line);
}
.ac-earn-pending { background: #e8f0f6; border-color: #c5d7e6; }
.ac-earn-ico { font-size: 1.6rem; margin-bottom: 0.35rem; }
.ac-earn-label { font-weight: 700; color: var(--muted); font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.25rem; }
.ac-earn-val { font-size: 1.55rem; font-weight: 800; margin-top: 0.25rem; color: var(--brand-dark); }
.ac-earn-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 1.1rem 0;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 640px) {
  .ac-earn-meta { grid-template-columns: 1fr 1fr; }
}
.ac-earn-meta span { display: block; margin-bottom: 0.2rem; }
.ac-earn-meta strong { font-size: 0.98rem; word-break: break-all; }
.ac-info {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  border: 1px solid #b0b6bd;
  background: #fff;
  color: #8a9199;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.ac-net-list { display: flex; flex-direction: column; gap: 0.65rem; }
.ac-net-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.ac-net-card strong { flex: 1; min-width: 0; }
.ac-net-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #e8f0f6;
  flex: 0 0 auto;
}
.ac-net-initial {
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--brand-dark);
}
.ac-fb-banner {
  background: #f3f5f7;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
}
.ac-fb-banner p { margin: 0.25rem 0 0; color: var(--muted); font-weight: 600; }
.ac-label { font-weight: 800; margin: 0 0 0.5rem; }
.ac-fb-cats { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1rem; }
.ac-fb-send:disabled { opacity: 0.55; cursor: not-allowed; }
.ac-fb-send.is-ready { background: var(--brand); color: #fff; border-color: var(--brand); }
.ac-credit-result {
  margin: 0.5rem 0 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: var(--brand-soft);
  font-weight: 700;
}
.ac-bullets { margin: 0 0 1.1rem; padding-left: 1.15rem; font-weight: 600; color: var(--ink-2); line-height: 1.55; }
.ac-pack-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 700px) {
  .ac-pack-grid { grid-template-columns: repeat(3, 1fr); }
}
.ac-pack {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  background: #f7f9fb;
}
.ac-pack h3 { margin: 0 0 0.35rem; }
.ac-pack p { margin: 0 0 0.75rem; color: var(--muted); font-weight: 600; font-size: 0.9rem; }
.ac-saved-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 0.55rem;
  background: #fff;
}

/* Sat?c? do?rulama ? ileti?im kilidi */
.ac-input-action.is-verified input.is-locked {
  background: #f3f5f7;
  color: var(--ink);
  font-weight: 700;
}
.ac-unverify-btn {
  white-space: nowrap;
  flex: 0 0 auto;
}
/* .btn display:flex UA [hidden] kural?n? ezer */
.ac-input-action .btn[hidden],
.ac-input-action [data-ac-verify-field][hidden],
.ac-input-action [data-ac-unverify-field][hidden],
.ac-unverify-btn[hidden] {
  display: none !important;
}
.ac-input-action.is-verified [data-ac-verify-field] {
  display: none !important;
}
.ac-input-action:not(.is-verified) [data-ac-unverify-field] {
  display: none !important;
}
.ac-input-action {
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .ac-input-action {
    flex-direction: column;
    align-items: stretch;
  }
  .ac-input-action .btn {
    width: 100%;
    min-height: 44px;
  }
  #ac-otp-modal.am-modal {
    width: calc(100vw - 1rem);
    max-width: 420px;
  }
}
