/*
 * RizeDijital İşletmeler Modülü — v0.33
 * Bağımsız sınıf öneki: biz-
 */

:root {
  --biz-green: #137a4a;
  --biz-green-dark: #0b4b31;
  --biz-green-soft: #e9f7ef;
  --biz-shadow: 0 18px 50px rgba(13, 74, 40, 0.08);
  --biz-shadow-hover: 0 24px 62px rgba(13, 74, 40, 0.14);
}

.biz-page,
.biz-detail-page {
  min-width: 0;
  color: var(--text);
  background:
    radial-gradient(
      circle at 8% 4%,
      rgba(33, 160, 94, 0.07),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(240, 249, 244, 0.68),
      transparent 340px
    );
}

.biz-wrap {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 30px 20px 76px;
  min-width: 0;
}

.biz-hero {
  min-height: 360px;
  padding: clamp(28px, 4vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.72fr);
  gap: 34px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(
      circle at 86% 18%,
      rgba(255, 255, 255, 0.18),
      transparent 25%
    ),
    linear-gradient(135deg, #083d29 0%, #0f6d43 54%, #21a65f 100%);
  box-shadow: 0 30px 70px rgba(7, 70, 42, 0.2);
}

.biz-hero::before,
.biz-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.biz-hero::before {
  width: 380px;
  height: 380px;
  right: -170px;
  top: -210px;
}

.biz-hero::after {
  width: 260px;
  height: 260px;
  left: 42%;
  bottom: -210px;
}

.biz-hero-content,
.biz-hero-panel {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.biz-eyebrow,
.biz-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #baf2d3;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.biz-hero h1 {
  max-width: 760px;
  margin: 16px 0 14px;
  color: #fff;
  font: 900 clamp(34px, 5vw, 58px) / 1.08 "Poppins", sans-serif;
  letter-spacing: -0.045em;
}

.biz-hero h1 span {
  display: block;
  color: #a8efc7;
}

.biz-hero-content > p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(13px, 1.6vw, 16px);
  line-height: 1.75;
}

.biz-hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.biz-primary-btn,
.biz-secondary-btn {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 14px;
  font: 800 12px "Nunito", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.biz-primary-btn {
  border: 1px solid #fff;
  color: var(--biz-green-dark);
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.biz-secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.biz-primary-btn:hover,
.biz-secondary-btn:hover {
  transform: translateY(-2px);
}

.biz-location-card {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.biz-location-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 17px;
  color: var(--biz-green-dark);
  background: #fff;
  font-size: 20px;
}

.biz-location-card span,
.biz-location-card small {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 800;
}

.biz-location-card strong {
  display: block;
  margin: 2px 0 4px;
  color: #fff;
  font: 900 18px "Poppins", sans-serif;
}

.biz-hero-stats {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.biz-hero-stats > div {
  min-width: 0;
  padding: 15px 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 16px;
  text-align: center;
  background: rgba(7, 63, 40, 0.28);
}

.biz-hero-stats strong {
  display: block;
  color: #fff;
  font: 900 20px "Poppins", sans-serif;
}

.biz-hero-stats span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  font-weight: 800;
}

.biz-filter-panel {
  margin-top: -20px;
  padding: 18px;
  position: relative;
  z-index: 4;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--card);
  box-shadow: var(--biz-shadow);
}

.biz-filter-panel form {
  display: grid;
  grid-template-columns:
    minmax(250px, 1.4fr)
    minmax(190px, 0.72fr)
    minmax(190px, 0.72fr)
    auto;
  gap: 10px;
}

.biz-search-field,
.biz-select-field {
  min-width: 0;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text3);
  background: var(--bg);
}

.biz-search-field {
  padding: 0 15px;
}

.biz-select-field {
  padding: 0 12px;
}

.biz-search-field:focus-within,
.biz-select-field:focus-within {
  border-color: rgba(19, 122, 74, 0.45);
  box-shadow: 0 0 0 3px rgba(19, 122, 74, 0.08);
}

.biz-search-field input,
.biz-select-field select {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font: 700 12px "Nunito", sans-serif;
}

.biz-filter-submit {
  min-width: 112px;
  padding: 0 17px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--biz-green-dark), var(--biz-green));
  font: 900 11px "Nunito", sans-serif;
  cursor: pointer;
}

.biz-filter-meta {
  padding: 12px 3px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text3);
  font-size: 10.5px;
  font-weight: 800;
}

.biz-filter-meta span,
.biz-filter-meta a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.biz-filter-meta a {
  color: var(--biz-green);
  text-decoration: none;
}

.biz-category-strip {
  margin: 20px 0 30px;
  padding: 4px 1px 10px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(19, 122, 74, 0.18) transparent;
}

.biz-category-strip::-webkit-scrollbar {
  height: 4px;
}

.biz-category-strip::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(19, 122, 74, 0.18);
}

.biz-category-strip > a {
  min-width: 145px;
  padding: 12px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  scroll-snap-align: start;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--text);
  background: var(--card);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.035);
  transition: 0.2s ease;
}

.biz-category-strip > a:hover,
.biz-category-strip > a.is-active {
  border-color: rgba(19, 122, 74, 0.36);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(19, 122, 74, 0.1);
}

.biz-category-strip > a.is-active {
  background: var(--biz-green-soft);
}

.biz-category-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 15px;
}

.biz-category-strip strong {
  min-width: 0;
  overflow: hidden;
  font-size: 10.5px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.biz-category-strip small {
  color: var(--text3);
  font-size: 9px;
  font-weight: 900;
}

.biz-section + .biz-section {
  margin-top: 46px;
}

.biz-section-head {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.biz-section-kicker {
  color: var(--biz-green);
}

.biz-section-head h2 {
  margin: 7px 0 3px;
  font: 900 clamp(22px, 3vw, 31px) "Poppins", sans-serif;
  letter-spacing: -0.035em;
}

.biz-section-head p {
  margin: 0;
  color: var(--text3);
  font-size: 11.5px;
}

.biz-result-pill {
  padding: 7px 11px;
  flex: 0 0 auto;
  border: 1px solid rgba(19, 122, 74, 0.16);
  border-radius: 20px;
  color: var(--biz-green);
  background: var(--biz-green-soft);
  font-size: 9.5px;
  font-weight: 900;
}

.biz-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.biz-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.045);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.biz-card:hover {
  transform: translateY(-4px);
  border-color: rgba(19, 122, 74, 0.24);
  box-shadow: var(--biz-shadow-hover);
}

.biz-card--featured {
  border-color: rgba(204, 153, 33, 0.44);
}

.biz-card-cover {
  height: 126px;
  padding: 14px;
  position: relative;
  overflow: visible;
  background: linear-gradient(135deg, #dff5e8, #b8e8ce);
}

.biz-card-cover-pattern,
.biz-detail-pattern {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.biz-card-cover-pattern::before,
.biz-detail-pattern::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -90px;
  top: -130px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
}

.biz-card-cover-pattern::after,
.biz-detail-pattern::after {
  content: "";
  position: absolute;
  width: 115px;
  height: 115px;
  left: -35px;
  bottom: -70px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.biz-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
  z-index: 2;
}

.biz-badge {
  min-height: 24px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  font-size: 8.5px;
  font-weight: 900;
  white-space: nowrap;
}

.biz-badge--featured {
  color: #825b00;
  background: #fff2be;
}

.biz-badge--premium {
  color: #76520c;
  background: #ffe9a7;
}

.biz-badge--category {
  color: var(--biz-green-dark);
  background: rgba(255, 255, 255, 0.88);
}

.biz-card-logo {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  position: absolute;
  left: 18px;
  bottom: -32px;
  z-index: 3;
  overflow: hidden;
  border: 5px solid var(--card);
  border-radius: 22px;
  color: var(--biz-green);
  background: var(--card);
  box-shadow: 0 14px 28px rgba(13, 74, 40, 0.16);
  font-size: 27px;
}

.biz-card-logo img,
.biz-detail-logo img,
.biz-similar-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.biz-card-body {
  padding: 42px 18px 17px;
}

.biz-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.biz-card-title-wrap {
  min-width: 0;
}

.biz-card-category {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--biz-green);
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.biz-card h2 {
  margin: 5px 0 0;
  font: 900 17px/1.28 "Poppins", sans-serif;
  letter-spacing: -0.025em;
}

.biz-card h2 a {
  color: var(--text);
  text-decoration: none;
}

.biz-local-badge {
  padding: 5px 7px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  border-radius: 8px;
  color: var(--biz-green);
  background: var(--biz-green-soft);
  font-size: 7.5px;
  font-weight: 900;
}

.biz-card-description {
  min-height: 52px;
  margin: 10px 0 12px;
  display: -webkit-box;
  overflow: hidden;
  color: var(--text3);
  font-size: 11px;
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.biz-card-info {
  min-height: 43px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.biz-card-info span,
.biz-card-info a {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  overflow: hidden;
  color: var(--text2);
  font-size: 9.5px;
  font-weight: 700;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.biz-card-info i {
  width: 13px;
  flex: 0 0 auto;
  color: var(--biz-green);
  text-align: center;
}

.biz-card-stats {
  margin-top: 14px;
  padding: 10px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.biz-card-stats span {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text3);
  font-size: 8px;
}

.biz-card-stats span + span {
  border-left: 1px solid var(--border);
}

.biz-card-stats i {
  color: var(--biz-green);
}

.biz-card-stats strong {
  color: var(--text);
  font-size: 9px;
}

.biz-card-actions {
  margin-top: 12px;
  display: grid;
  grid-template-columns: auto auto auto minmax(82px, 1fr);
  gap: 6px;
}

.biz-card-actions form {
  margin: 0;
}

.biz-action-btn,
.biz-inspect-btn {
  min-height: 36px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text2);
  background: var(--card);
  font: 800 9px "Nunito", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: 0.18s ease;
}

.biz-action-btn {
  width: 100%;
}

.biz-action-btn.is-active,
.biz-action-btn:hover {
  border-color: rgba(19, 122, 74, 0.28);
  color: var(--biz-green);
  background: var(--biz-green-soft);
}

.biz-inspect-btn {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--biz-green-dark), var(--biz-green));
}

.biz-empty {
  padding: 70px 24px;
  border: 1px dashed rgba(19, 122, 74, 0.27);
  border-radius: 24px;
  text-align: center;
  background: var(--card);
}

.biz-empty--page {
  max-width: 720px;
  margin: 70px auto;
}

.biz-empty-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--biz-green);
  background: var(--biz-green-soft);
  font-size: 27px;
}

.biz-empty > span {
  color: var(--biz-green);
  font: 900 12px "Poppins", sans-serif;
}

.biz-empty h1,
.biz-empty h2 {
  margin: 6px 0;
  font: 900 26px "Poppins", sans-serif;
}

.biz-empty p {
  max-width: 520px;
  margin: 0 auto 18px;
  color: var(--text3);
  line-height: 1.65;
}

.biz-owner-cta {
  margin-top: 50px;
  padding: 25px 28px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(19, 122, 74, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(232, 248, 239, 0.96), rgba(255, 255, 255, 0.97));
  box-shadow: var(--biz-shadow);
}

.biz-owner-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  color: #fff;
  background: linear-gradient(135deg, var(--biz-green-dark), var(--biz-green));
  font-size: 23px;
}

.biz-owner-cta span {
  color: var(--biz-green);
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.biz-owner-cta h2 {
  margin: 4px 0;
  font: 900 20px "Poppins", sans-serif;
}

.biz-owner-cta p {
  margin: 0;
  color: var(--text3);
  font-size: 11px;
}

.biz-owner-cta .biz-primary-btn {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--biz-green-dark), var(--biz-green));
}

/* Detail page */

.biz-breadcrumb {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  color: var(--text3);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.biz-breadcrumb a,
.biz-breadcrumb span {
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  text-overflow: ellipsis;
}

.biz-detail-hero {
  min-height: 310px;
  padding: 36px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(230px, auto);
  gap: 25px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #dff5e8, #b8e8ce);
  box-shadow: var(--biz-shadow);
}

.biz-detail-logo {
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.92);
  border-radius: 30px;
  color: var(--biz-green);
  background: #fff;
  box-shadow: 0 20px 42px rgba(13, 74, 40, 0.18);
  font-size: 42px;
}

.biz-detail-hero-copy {
  min-width: 0;
  position: relative;
  z-index: 2;
}

.biz-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.biz-detail-hero h1 {
  margin: 12px 0 10px;
  font: 900 clamp(30px, 4vw, 48px) / 1.12 "Poppins", sans-serif;
  letter-spacing: -0.045em;
}

.biz-detail-hero-copy > p {
  max-width: 680px;
  margin: 0;
  color: rgba(15, 52, 35, 0.72);
  font-size: 12px;
  line-height: 1.7;
}

.biz-detail-location {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.biz-detail-location span {
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(13, 74, 40, 0.12);
  border-radius: 10px;
  color: rgba(15, 52, 35, 0.78);
  background: rgba(255, 255, 255, 0.48);
  font-size: 9.5px;
  font-weight: 800;
}

.biz-detail-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 9px;
  position: relative;
  z-index: 2;
}

.biz-detail-contact {
  min-height: 58px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 15px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(13, 74, 40, 0.15);
}

.biz-detail-contact > i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 15px;
}

.biz-detail-contact span {
  min-width: 0;
}

.biz-detail-contact small,
.biz-detail-contact strong {
  display: block;
}

.biz-detail-contact small {
  opacity: 0.68;
  font-size: 8px;
  font-weight: 800;
}

.biz-detail-contact strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.biz-detail-contact--phone {
  background: linear-gradient(135deg, #0b4b31, #137a4a);
}

.biz-detail-contact--whatsapp {
  background: linear-gradient(135deg, #128c4a, #25b968);
}

.biz-detail-actionbar {
  margin: 15px 0 20px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.biz-detail-stats {
  display: flex;
  align-items: center;
}

.biz-detail-stats span {
  min-width: 74px;
  padding: 0 15px;
  text-align: center;
}

.biz-detail-stats span + span {
  border-left: 1px solid var(--border);
}

.biz-detail-stats strong,
.biz-detail-stats small {
  display: block;
}

.biz-detail-stats strong {
  font: 900 16px "Poppins", sans-serif;
}

.biz-detail-stats small {
  color: var(--text3);
  font-size: 8px;
  font-weight: 800;
}

.biz-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.biz-detail-actions form {
  margin: 0;
}

.biz-detail-action-btn {
  min-height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--border);
  border-radius: 11px;
  color: var(--text2);
  background: var(--card);
  font: 800 9.5px "Nunito", sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.biz-detail-action-btn:hover,
.biz-detail-action-btn.is-active {
  border-color: rgba(19, 122, 74, 0.3);
  color: var(--biz-green);
  background: var(--biz-green-soft);
}

.biz-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 370px);
  gap: 20px;
  align-items: start;
}

.biz-detail-main,
.biz-detail-sidebar {
  min-width: 0;
}

.biz-detail-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.biz-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 92px;
}

.biz-detail-card,
.biz-contact-card,
.biz-similar-card,
.biz-add-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.04);
}

.biz-detail-card {
  padding: 24px;
}

.biz-detail-card-head,
.biz-contact-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.biz-detail-card-icon,
.biz-contact-card-head > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  color: var(--biz-green);
  background: var(--biz-green-soft);
  font-size: 16px;
}

.biz-detail-card-head span,
.biz-contact-card-head small,
.biz-sidebar-title span {
  display: block;
  color: var(--biz-green);
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.biz-detail-card-head h2,
.biz-contact-card-head h2,
.biz-sidebar-title h2 {
  margin: 3px 0 0;
  font: 900 18px "Poppins", sans-serif;
}

.biz-detail-description {
  margin-top: 18px;
  color: var(--text2);
  font-size: 12px;
  line-height: 1.82;
}

.biz-detail-feature-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.biz-detail-feature-grid > div {
  min-width: 0;
  padding: 14px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 9px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
}

.biz-detail-feature-grid i {
  width: 34px;
  height: 34px;
  display: grid;
  grid-row: span 2;
  place-items: center;
  border-radius: 10px;
  color: var(--biz-green);
  background: var(--biz-green-soft);
}

.biz-detail-feature-grid span,
.biz-detail-feature-grid strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.biz-detail-feature-grid span {
  color: var(--text3);
  font-size: 8px;
  font-weight: 800;
}

.biz-detail-feature-grid strong {
  font-size: 10px;
}

.biz-detail-card-head--comments {
  padding-bottom: 17px;
  border-bottom: 1px solid var(--border);
}

.biz-feedback {
  margin-top: 15px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 11px;
  font-size: 10px;
  font-weight: 800;
}

.biz-feedback--success {
  color: #12643e;
  background: #e9f8ef;
}

.biz-feedback--error {
  color: #9b2929;
  background: #fff0f0;
}

.biz-comment-form {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 11px;
}

.biz-comment-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--biz-green-dark), var(--biz-green));
  font: 900 14px "Poppins", sans-serif;
}

.biz-comment-input label {
  display: block;
  margin-bottom: 6px;
  font-size: 9.5px;
  font-weight: 900;
}

.biz-comment-input textarea {
  width: 100%;
  min-height: 110px;
  padding: 12px;
  resize: vertical;
  border: 1px solid var(--border);
  border-radius: 13px;
  outline: 0;
  color: var(--text);
  background: var(--bg);
  font: 600 11px/1.55 "Nunito", sans-serif;
}

.biz-comment-input textarea:focus {
  border-color: rgba(19, 122, 74, 0.4);
  box-shadow: 0 0 0 3px rgba(19, 122, 74, 0.08);
}

.biz-comment-input > div {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.biz-comment-input small {
  color: var(--text3);
  font-size: 8.5px;
}

.biz-comment-input button {
  min-height: 37px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--biz-green-dark), var(--biz-green));
  font: 800 9.5px "Nunito", sans-serif;
  cursor: pointer;
}

.biz-login-callout {
  margin-top: 18px;
  padding: 15px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  border: 1px solid rgba(19, 122, 74, 0.17);
  border-radius: 14px;
  background: var(--biz-green-soft);
}

.biz-login-callout > i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--biz-green);
  background: var(--card);
}

.biz-login-callout strong,
.biz-login-callout span {
  display: block;
}

.biz-login-callout strong {
  font-size: 10.5px;
}

.biz-login-callout span {
  color: var(--text3);
  font-size: 8.5px;
}

.biz-login-callout a {
  padding: 8px 11px;
  border-radius: 9px;
  color: #fff;
  background: var(--biz-green);
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
}

.biz-comment-empty {
  padding: 42px 20px 20px;
  text-align: center;
}

.biz-comment-empty i {
  color: var(--biz-green);
  font-size: 27px;
}

.biz-comment-empty h3 {
  margin: 10px 0 3px;
  font: 900 15px "Poppins", sans-serif;
}

.biz-comment-empty p {
  margin: 0;
  color: var(--text3);
  font-size: 10px;
}

.biz-comment-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.biz-comment {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 11px;
}

.biz-comment-body {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
}

.biz-comment-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.biz-comment-author-line {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.biz-comment-body strong {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.biz-comment-body time {
  flex: 0 0 auto;
  color: var(--text3);
  font-size: 8px;
}

.biz-comment-body p {
  margin: 7px 0 0;
  color: var(--text2);
  font-size: 10.5px;
  line-height: 1.58;
}

.biz-comment-premium {
  padding: 2px 6px;
  border-radius: 8px;
  color: #86610c;
  background: #fff0b7;
  font-size: 7px;
  font-weight: 900;
}

.biz-contact-card {
  padding: 20px;
}

.biz-contact-list {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.biz-contact-list a {
  min-width: 0;
  padding: 11px;
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  background: var(--bg);
  text-decoration: none;
}

.biz-contact-list a > i:first-child {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--biz-green);
  background: var(--biz-green-soft);
}

.biz-contact-list a > i:last-child {
  color: var(--text3);
  font-size: 9px;
}

.biz-contact-list span {
  min-width: 0;
}

.biz-contact-list small,
.biz-contact-list strong {
  display: block;
}

.biz-contact-list small {
  color: var(--text3);
  font-size: 7.5px;
  font-weight: 800;
}

.biz-contact-list strong {
  overflow: hidden;
  font-size: 9.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.biz-contact-address {
  margin-top: 11px;
  padding: 12px;
  display: flex;
  gap: 9px;
  border-radius: 12px;
  color: var(--text2);
  background: var(--biz-green-soft);
}

.biz-contact-address > i {
  margin-top: 2px;
  color: var(--biz-green);
}

.biz-contact-address small,
.biz-contact-address strong {
  display: block;
}

.biz-contact-address small {
  color: var(--text3);
  font-size: 7.5px;
}

.biz-contact-address strong {
  margin-top: 2px;
  font-size: 9.5px;
  line-height: 1.45;
}

.biz-similar-card {
  padding: 20px;
}

.biz-similar-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
}

.biz-similar-list > a {
  min-width: 0;
  padding: 10px 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}

.biz-similar-list > a + a {
  border-top: 1px solid var(--border);
}

.biz-similar-logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  color: var(--biz-green);
  background: var(--biz-green-soft);
}

.biz-similar-list span {
  min-width: 0;
}

.biz-similar-list strong,
.biz-similar-list small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.biz-similar-list strong {
  font-size: 9.5px;
}

.biz-similar-list small {
  color: var(--text3);
  font-size: 8px;
}

.biz-similar-list > a > i {
  color: var(--text3);
  font-size: 9px;
}

.biz-add-card {
  padding: 22px;
  color: #fff;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(255, 255, 255, 0.16),
      transparent 26%
    ),
    linear-gradient(135deg, var(--biz-green-dark), var(--biz-green));
}

.biz-add-card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
}

.biz-add-card h2 {
  margin: 13px 0 5px;
  color: #fff;
  font: 900 17px "Poppins", sans-serif;
}

.biz-add-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9.5px;
  line-height: 1.55;
}

.biz-add-card a {
  margin-top: 15px;
  min-height: 38px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 10px;
  color: var(--biz-green-dark);
  background: #fff;
  font-size: 9.5px;
  font-weight: 900;
  text-decoration: none;
}

/* Member business profile */

.biz-profile-help {
  margin: 0 0 18px;
  padding: 14px;
  display: flex;
  gap: 11px;
  border: 1px solid rgba(19, 122, 74, 0.18);
  border-radius: 14px;
  color: var(--text2);
  background: var(--biz-green-soft);
}

.biz-profile-help > i {
  margin-top: 2px;
  color: var(--biz-green);
}

.biz-profile-help strong,
.biz-profile-help span {
  display: block;
}

.biz-profile-help strong {
  font-size: 10.5px;
}

.biz-profile-help span {
  margin-top: 2px;
  color: var(--text3);
  font-size: 9px;
}

.biz-profile-form {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.biz-profile-section {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--card);
}

.biz-profile-section-head {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.biz-profile-section-head > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: var(--biz-green);
  background: var(--biz-green-soft);
}

.biz-profile-section-head h2 {
  margin: 0;
  font: 900 15px "Poppins", sans-serif;
}

.biz-profile-section-head p {
  margin: 2px 0 0;
  color: var(--text3);
  font-size: 9px;
}

.biz-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 14px;
}

.biz-required {
  color: #c62828;
}

/* Category tones */

.biz-tone-green {
  color: #12643e;
  background: linear-gradient(135deg, #e4f7ec, #bce8cf);
}

.biz-tone-blue {
  color: #235e9f;
  background: linear-gradient(135deg, #e5f1ff, #c9e0fb);
}

.biz-tone-amber {
  color: #936409;
  background: linear-gradient(135deg, #fff4d4, #f7dea1);
}

.biz-tone-purple {
  color: #6842a3;
  background: linear-gradient(135deg, #f1e9ff, #d8c5fa);
}

.biz-tone-red {
  color: #a53b3b;
  background: linear-gradient(135deg, #ffeded, #f6cccc);
}

.biz-tone-teal {
  color: #13746e;
  background: linear-gradient(135deg, #e2f8f5, #bae9e3);
}

.biz-tone-pink {
  color: #9c3c70;
  background: linear-gradient(135deg, #fdeaf4, #f1c9df);
}

.biz-tone-slate {
  color: #496071;
  background: linear-gradient(135deg, #edf3f5, #d3e1e7);
}

/* Dark mode */

[data-theme="dark"] .biz-page,
[data-theme="dark"] .biz-detail-page {
  background:
    radial-gradient(
      circle at 8% 4%,
      rgba(33, 160, 94, 0.08),
      transparent 28%
    ),
    var(--bg);
}

[data-theme="dark"] .biz-filter-panel,
[data-theme="dark"] .biz-card,
[data-theme="dark"] .biz-detail-card,
[data-theme="dark"] .biz-contact-card,
[data-theme="dark"] .biz-similar-card,
[data-theme="dark"] .biz-profile-section {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

[data-theme="dark"] .biz-owner-cta {
  background: linear-gradient(135deg, #13251b, #17261f);
}

[data-theme="dark"] .biz-category-strip > a.is-active,
[data-theme="dark"] .biz-action-btn.is-active,
[data-theme="dark"] .biz-action-btn:hover,
[data-theme="dark"] .biz-detail-action-btn.is-active,
[data-theme="dark"] .biz-detail-action-btn:hover,
[data-theme="dark"] .biz-profile-help,
[data-theme="dark"] .biz-contact-address,
[data-theme="dark"] .biz-login-callout {
  background: rgba(33, 160, 94, 0.12);
}

[data-theme="dark"] .biz-detail-hero-copy > p,
[data-theme="dark"] .biz-detail-location span {
  color: rgba(12, 45, 30, 0.8);
}

/* Responsive */

@media (max-width: 1120px) {
  .biz-hero {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.8fr);
  }

  .biz-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .biz-filter-panel form {
    grid-template-columns: minmax(250px, 1fr) minmax(180px, 0.7fr);
  }

  .biz-filter-submit {
    min-height: 48px;
  }

  .biz-detail-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .biz-detail-hero {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .biz-detail-hero-actions {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  .biz-detail-contact {
    min-width: 220px;
  }
}

@media (max-width: 900px) {
  .biz-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .biz-hero-panel {
    max-width: 620px;
  }

  .biz-filter-panel form {
    grid-template-columns: 1fr 1fr;
  }

  .biz-search-field {
    grid-column: 1 / -1;
  }

  .biz-detail-layout {
    grid-template-columns: 1fr;
  }

  .biz-detail-sidebar {
    position: static;
  }

  .biz-detail-actionbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .biz-owner-cta {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .biz-owner-cta .biz-primary-btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .biz-wrap {
    padding: 16px 12px 58px;
  }

  .biz-hero {
    padding: 27px 20px;
    border-radius: 23px;
  }

  .biz-hero h1 {
    font-size: 32px;
  }

  .biz-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .biz-primary-btn,
  .biz-secondary-btn {
    width: 100%;
  }

  .biz-hero-stats {
    grid-template-columns: 1fr;
  }

  .biz-hero-stats > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .biz-hero-stats span {
    margin: 0;
  }

  .biz-filter-panel {
    margin-top: 12px;
    padding: 13px;
  }

  .biz-filter-panel form {
    grid-template-columns: 1fr;
  }

  .biz-search-field {
    grid-column: auto;
  }

  .biz-filter-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .biz-category-strip {
    margin-bottom: 24px;
  }

  .biz-category-strip > a {
    min-width: 138px;
  }

  .biz-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .biz-grid {
    grid-template-columns: 1fr;
  }

  .biz-card-cover {
    height: 116px;
  }

  .biz-card-actions {
    grid-template-columns: repeat(3, 1fr);
  }

  .biz-inspect-btn {
    grid-column: 1 / -1;
  }

  .biz-owner-cta {
    padding: 21px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .biz-owner-icon {
    margin: 0 auto;
  }

  .biz-breadcrumb {
    margin-top: 3px;
  }

  .biz-detail-hero {
    padding: 24px 20px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .biz-detail-logo {
    width: 98px;
    height: 98px;
    margin: 0 auto;
    border-radius: 25px;
  }

  .biz-detail-badges,
  .biz-detail-location {
    justify-content: center;
  }

  .biz-detail-hero-actions {
    grid-column: auto;
    flex-direction: column;
  }

  .biz-detail-contact {
    width: 100%;
    min-width: 0;
    text-align: left;
  }

  .biz-detail-actionbar {
    padding: 13px;
  }

  .biz-detail-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .biz-detail-stats span {
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 10px;
  }

  .biz-detail-stats span + span {
    border-left: 1px solid var(--border);
  }

  .biz-detail-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .biz-detail-action-btn {
    width: 100%;
  }

  .biz-detail-card {
    padding: 18px;
  }

  .biz-detail-feature-grid {
    grid-template-columns: 1fr;
  }

  .biz-comment-form,
  .biz-comment {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .biz-comment-avatar {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 11px;
  }

  .biz-login-callout {
    grid-template-columns: 35px minmax(0, 1fr);
  }

  .biz-login-callout a {
    grid-column: 1 / -1;
    text-align: center;
  }

  .biz-profile-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .biz-hero h1 {
    font-size: 28px;
  }

  .biz-card-body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .biz-action-btn span {
    display: none;
  }

  .biz-detail-actions {
    grid-template-columns: 1fr;
  }

  .biz-comment-input > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .biz-comment-input button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .biz-card,
  .biz-primary-btn,
  .biz-secondary-btn,
  .biz-category-strip > a {
    transition: none;
  }
}

/* ======================================================================
   v0.34 — İşletmeler UX, kategori okları ve çoklu işletme yönetimi
   ====================================================================== */

.biz-category-carousel {
  margin: 20px 0 30px;
  padding: 0 48px;
  position: relative;
  min-width: 0;
}

.biz-category-carousel .biz-category-strip {
  margin: 0;
  padding: 4px 2px 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.biz-category-carousel .biz-category-strip::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.biz-category-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  z-index: 3;
  border: 1px solid rgba(19, 122, 74, 0.18);
  border-radius: 13px;
  color: var(--biz-green);
  background: var(--card);
  box-shadow: 0 10px 28px rgba(13, 74, 40, 0.12);
  transform: translateY(-50%);
  cursor: pointer;
  transition: 0.18s ease;
}

.biz-category-arrow--left { left: 0; }
.biz-category-arrow--right { right: 0; }

.biz-category-arrow:hover:not(:disabled) {
  color: #fff;
  background: var(--biz-green);
  transform: translateY(-50%) scale(1.04);
}

.biz-category-arrow:disabled,
.biz-category-arrow.is-disabled {
  opacity: 0.32;
  cursor: default;
  box-shadow: none;
}

.biz-card-actions {
  grid-template-columns:
    repeat(3, minmax(72px, auto))
    minmax(94px, 1fr);
  gap: 8px;
}

.biz-action-btn,
.biz-inspect-btn {
  min-height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 10.5px;
  line-height: 1;
  white-space: nowrap;
}

.biz-action-btn i,
.biz-inspect-btn i {
  flex: 0 0 auto;
  font-size: 12px;
}

.biz-detail-action-btn {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 12px;
  font-size: 10.5px;
  white-space: nowrap;
}

/* Çoklu işletme yönetimi */
.biz-manager-head {
  margin-bottom: 18px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(33, 160, 94, 0.13),
      transparent 30%
    ),
    var(--card);
  box-shadow: var(--biz-shadow);
}

.biz-manager-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--biz-green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.biz-manager-head h1 {
  margin: 6px 0 4px;
  font: 900 25px "Poppins", sans-serif;
  letter-spacing: -0.035em;
}

.biz-manager-head p {
  max-width: 650px;
  margin: 0;
  color: var(--text3);
  font-size: 10.5px;
  line-height: 1.55;
}

.biz-manager-add {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--biz-green-dark), var(--biz-green));
  font-size: 10.5px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(13, 74, 40, 0.16);
}

.biz-manager-list-section {
  margin-bottom: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.biz-manager-section-title {
  margin-bottom: 13px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.biz-manager-section-title span {
  color: var(--biz-green);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.biz-manager-section-title h2 {
  margin: 3px 0 0;
  font: 900 18px "Poppins", sans-serif;
}

.biz-manager-section-title > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--biz-green);
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
}

.biz-manager-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.biz-manager-item {
  min-width: 0;
  padding: 13px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--bg);
  transition: 0.18s ease;
}

.biz-manager-item.is-active {
  border-color: rgba(19, 122, 74, 0.36);
  background: var(--biz-green-soft);
  box-shadow: 0 0 0 3px rgba(19, 122, 74, 0.06);
}

.biz-manager-logo {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--biz-green);
  background: var(--card);
  font-size: 22px;
}

.biz-manager-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.biz-manager-info { min-width: 0; }

.biz-manager-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.biz-manager-title-row h3 {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  font: 900 13px "Poppins", sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.biz-manager-status {
  padding: 3px 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  font-size: 7px;
  font-weight: 900;
}

.biz-manager-status.status-bekliyor {
  color: #9a6200;
  background: #fff1c7;
}
.biz-manager-status.status-onaylandi {
  color: #12643e;
  background: #dff5e8;
}
.biz-manager-status.status-reddedildi {
  color: #a62f2f;
  background: #ffe4e4;
}

.biz-manager-meta,
.biz-manager-mini-stats {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  color: var(--text3);
  font-size: 8.5px;
  font-weight: 700;
}

.biz-manager-meta span,
.biz-manager-mini-stats span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.biz-manager-meta i,
.biz-manager-mini-stats i {
  color: var(--biz-green);
}

.biz-manager-mini-stats .is-featured {
  color: #8a6208;
}

.biz-manager-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  max-width: 310px;
}

.biz-manager-actions form { margin: 0; }

.biz-manager-action {
  min-height: 36px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text2);
  background: var(--card);
  font: 800 8.5px "Nunito", sans-serif;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.biz-manager-action--edit {
  border-color: rgba(19, 122, 74, 0.25);
  color: var(--biz-green);
  background: var(--biz-green-soft);
}

.biz-manager-action--delete {
  color: #a62f2f;
}

.biz-manager-empty {
  margin-bottom: 18px;
  padding: 44px 22px;
  border: 1px dashed rgba(19, 122, 74, 0.28);
  border-radius: 20px;
  text-align: center;
  background: var(--card);
}

.biz-manager-empty > i {
  color: var(--biz-green);
  font-size: 28px;
}

.biz-manager-empty h2 {
  margin: 10px 0 4px;
  font: 900 18px "Poppins", sans-serif;
}

.biz-manager-empty p {
  margin: 0 auto 14px;
  max-width: 520px;
  color: var(--text3);
  font-size: 10px;
}

.biz-manager-empty a {
  min-height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 11px;
  color: #fff;
  background: var(--biz-green);
  font-size: 9.5px;
  font-weight: 900;
  text-decoration: none;
}

.biz-manager-form-card {
  max-width: none;
}

.biz-manager-form-head h2 {
  margin: 0 0 5px;
  font: 900 20px "Poppins", sans-serif;
}

.biz-profile-section-head h3 {
  margin: 0;
  font: 900 15px "Poppins", sans-serif;
}

.biz-manager-form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.biz-manager-form-actions > a {
  min-height: 43px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text2);
  background: var(--card);
  font-size: 9.5px;
  font-weight: 800;
  text-decoration: none;
}

.biz-manager-form-actions .uye-btn {
  width: auto;
  min-width: 190px;
  min-height: 43px;
  padding: 0 18px;
}

[data-theme="dark"] .biz-manager-head,
[data-theme="dark"] .biz-manager-list-section,
[data-theme="dark"] .biz-manager-item,
[data-theme="dark"] .biz-manager-empty {
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.17);
}

[data-theme="dark"] .biz-manager-item.is-active {
  background: rgba(33, 160, 94, 0.11);
}

@media (max-width: 900px) {
  .biz-manager-head {
    align-items: flex-start;
  }

  .biz-manager-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .biz-manager-logo {
    width: 52px;
    height: 52px;
  }

  .biz-manager-actions {
    grid-column: 1 / -1;
    max-width: none;
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .biz-category-carousel {
    margin: 14px 0 22px;
    padding: 0 38px;
  }

  .biz-category-arrow {
    width: 32px;
    height: 38px;
    border-radius: 11px;
  }

  .biz-category-strip > a {
    min-width: 126px;
    padding: 10px;
    grid-template-columns: 34px minmax(0, 1fr) auto;
  }

  .biz-category-icon {
    width: 34px;
    height: 34px;
  }

  .biz-hero-panel,
  .biz-filter-meta,
  .biz-owner-cta,
  .biz-section-head p,
  .biz-result-pill {
    display: none;
  }

  .biz-hero {
    padding: 23px 18px;
  }

  .biz-hero-content > p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .biz-section + .biz-section {
    margin-top: 30px;
  }

  .biz-section-head {
    margin-bottom: 11px;
  }

  .biz-section-head h2 {
    margin-top: 4px;
    font-size: 18px;
  }

  .biz-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .biz-card {
    border-radius: 16px;
  }

  .biz-card-cover {
    height: 78px;
    padding: 8px;
  }

  .biz-card-badges {
    gap: 3px;
  }

  .biz-badge {
    min-height: 18px;
    padding: 0 5px;
    font-size: 6.5px;
  }

  .biz-card-logo {
    width: 52px;
    height: 52px;
    left: 10px;
    bottom: -21px;
    border-width: 3px;
    border-radius: 15px;
    font-size: 19px;
  }

  .biz-card-body {
    padding: 29px 10px 10px;
  }

  .biz-card-head {
    display: block;
  }

  .biz-local-badge {
    display: none;
  }

  .biz-card-category {
    max-width: 100%;
    overflow: hidden;
    font-size: 6.5px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .biz-card h2 {
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.25;
  }

  .biz-card-description {
    min-height: 30px;
    margin: 7px 0 8px;
    font-size: 8.5px;
    line-height: 1.38;
    -webkit-line-clamp: 2;
  }

  .biz-card-info {
    min-height: 18px;
  }

  .biz-card-info span,
  .biz-card-info a {
    font-size: 7.5px;
  }

  .biz-card-info span:nth-child(n + 2),
  .biz-card-info a {
    display: none;
  }

  .biz-card-stats {
    display: none;
  }

  .biz-card-actions {
    margin-top: 9px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }

  .biz-action-btn,
  .biz-inspect-btn {
    min-height: 36px;
    padding: 0 5px;
    border-radius: 9px;
    font-size: 8px;
  }

  .biz-action-btn i,
  .biz-inspect-btn i {
    font-size: 10px;
  }

  .biz-inspect-btn {
    grid-column: auto;
  }

  .biz-manager-head {
    padding: 19px;
    flex-direction: column;
  }

  .biz-manager-head h1 {
    font-size: 21px;
  }

  .biz-manager-add {
    width: 100%;
  }

  .biz-manager-list-section {
    padding: 13px;
  }

  .biz-manager-section-title > a {
    display: none;
  }

  .biz-manager-item {
    padding: 11px;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 10px;
  }

  .biz-manager-logo {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .biz-manager-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .biz-manager-meta span:nth-child(n + 3),
  .biz-manager-mini-stats {
    display: none;
  }

  .biz-manager-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .biz-manager-action {
    width: 100%;
    min-height: 38px;
  }

  .biz-manager-form-card {
    padding: 18px 14px;
  }

  .biz-manager-form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .biz-manager-form-actions > a,
  .biz-manager-form-actions .uye-btn {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .biz-category-carousel {
    padding: 0 34px;
  }

  .biz-grid {
    gap: 8px;
  }

  .biz-card-body {
    padding-left: 8px;
    padding-right: 8px;
  }

  .biz-action-btn span {
    display: inline;
  }
}

/* ========================================================================
   v0.35 — Yerel Logo, Sosyal Medya ve SEO Dostu İşletme Profili
   ======================================================================== */

.biz-card-profile-label {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: rgba(11, 75, 49, 0.82);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  font-size: 7.5px;
  font-weight: 900;
}

.biz-card-profile-label i {
  color: var(--biz-green);
}

.biz-card-socials {
  min-height: 34px;
  margin-top: 12px;
  padding: 7px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 11px;
  color: var(--text3);
  background: var(--bg);
  font-size: 8px;
  font-weight: 800;
}

.biz-card-socials > div {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--biz-green);
  font-size: 11px;
}

.biz-detail-trust-strip {
  margin: 0 0 20px;
  padding: 13px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.biz-detail-trust-strip > div {
  min-width: 0;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 13px;
  background: var(--bg);
}

.biz-detail-trust-strip > div > i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  color: var(--biz-green);
  background: var(--biz-green-soft);
}

.biz-detail-trust-strip span,
.biz-detail-trust-strip strong,
.biz-detail-trust-strip small {
  min-width: 0;
  display: block;
}

.biz-detail-trust-strip strong {
  overflow: hidden;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.biz-detail-trust-strip small {
  margin-top: 2px;
  overflow: hidden;
  color: var(--text3);
  font-size: 7.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.biz-social-card {
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.04);
}

.biz-social-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.biz-social-link {
  min-width: 0;
  min-height: 44px;
  padding: 0 11px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  background: var(--bg);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease;
}

.biz-social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(19, 122, 74, 0.28);
}

.biz-social-link > i:first-child {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: var(--biz-green);
}

.biz-social-link > i:last-child {
  color: var(--text3);
  font-size: 8px;
}

.biz-social-link span {
  min-width: 0;
  overflow: hidden;
  font-size: 9px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.biz-social-link--instagram > i:first-child {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}
.biz-social-link--facebook > i:first-child { background: #1877f2; }
.biz-social-link--x > i:first-child { background: #111; }
.biz-social-link--tiktok > i:first-child { background: #111; }
.biz-social-link--youtube > i:first-child { background: #ff0000; }
.biz-social-link--linkedin > i:first-child { background: #0a66c2; }

.biz-manager-slug {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.biz-logo-field {
  grid-column: span 1;
}

.biz-logo-upload {
  min-height: 118px;
  padding: 12px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  border: 1px dashed rgba(19, 122, 74, 0.34);
  border-radius: 15px;
  background: linear-gradient(135deg, var(--bg), rgba(233, 247, 239, 0.6));
}

.biz-logo-preview {
  width: 92px;
  height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--text3);
  background: var(--card);
  font-size: 8px;
  font-weight: 800;
}

.biz-logo-preview i {
  color: var(--biz-green);
  font-size: 22px;
}

.biz-logo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.biz-logo-upload-copy {
  min-width: 0;
}

.biz-logo-upload-copy strong,
.biz-logo-upload-copy span {
  display: block;
}

.biz-logo-upload-copy strong {
  font-size: 10.5px;
}

.biz-logo-upload-copy span {
  margin-top: 3px;
  color: var(--text3);
  font-size: 8.5px;
}

.biz-logo-select {
  width: max-content;
  min-height: 36px;
  margin-top: 11px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--biz-green-dark), var(--biz-green));
  font-size: 9px;
  font-weight: 900;
  cursor: pointer;
}

.biz-logo-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.biz-logo-remove {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #a33232;
  font-size: 8.5px;
  font-weight: 800;
  cursor: pointer;
}

.biz-logo-remove input {
  accent-color: #a33232;
}

.biz-public-url-info {
  margin: 4px 0 16px;
  padding: 12px 13px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(19, 122, 74, 0.16);
  border-radius: 13px;
  color: var(--text2);
  background: var(--biz-green-soft);
}

.biz-public-url-info > i {
  margin-top: 2px;
  color: var(--biz-green);
}

.biz-public-url-info strong,
.biz-public-url-info span {
  display: block;
}

.biz-public-url-info strong { font-size: 9.5px; }
.biz-public-url-info span {
  margin-top: 2px;
  overflow-wrap: anywhere;
  color: var(--text3);
  font-size: 8.5px;
}

.biz-social-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 14px;
}

.biz-social-form-field label {
  display: flex;
  align-items: center;
  gap: 7px;
}

.biz-social-form-field label i {
  width: 19px;
  color: var(--biz-green);
  text-align: center;
}

[data-theme="dark"] .biz-logo-upload {
  background: linear-gradient(135deg, var(--bg), rgba(33, 160, 94, 0.08));
}

[data-theme="dark"] .biz-public-url-info {
  background: rgba(33, 160, 94, 0.12);
}

@media (max-width: 1120px) {
  .biz-detail-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .biz-card-profile-label {
    right: 8px;
    bottom: 8px;
    padding: 4px 6px;
    font-size: 6.5px;
  }

  .biz-card-socials {
    min-height: 30px;
    padding: 5px 7px;
  }

  .biz-card-socials > span {
    display: none;
  }

  .biz-card-socials > div {
    width: 100%;
    justify-content: center;
  }

  .biz-detail-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 9px;
  }

  .biz-detail-trust-strip > div {
    padding: 8px;
  }

  .biz-detail-trust-strip > div > i {
    width: 30px;
    height: 30px;
  }

  .biz-social-grid {
    grid-template-columns: 1fr;
  }

  .biz-logo-upload {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .biz-logo-preview {
    width: 76px;
    height: 76px;
    border-radius: 15px;
  }

  .biz-social-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .biz-detail-trust-strip {
    grid-template-columns: 1fr;
  }

  .biz-logo-upload {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .biz-logo-preview,
  .biz-logo-select {
    margin-left: auto;
    margin-right: auto;
  }
}

/* v0.36.1 — Logo Seç kontrolü mobil/webview uyumluluğu */
.biz-logo-select-wrap {
  width: max-content;
  margin-top: 11px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.biz-logo-select-wrap .biz-logo-select {
  margin-top: 0;
  pointer-events: none;
}

.biz-logo-select-wrap input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  pointer-events: auto;
  cursor: pointer;
}

.biz-logo-select-wrap:focus-within {
  box-shadow: 0 0 0 3px rgba(19,122,74,.14);
}

@media (max-width: 390px) {
  .biz-logo-select-wrap {
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================================================
   v0.62.0 — Doğrulanmış işletme, vitrin ve işletme paneli
   ========================================================= */
.biz-card{position:relative;isolation:isolate;transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease}
.biz-card:hover{transform:translateY(-5px)}
.biz-card--verified{border-color:#cce9d7}
.biz-card--sponsored{border:2px solid #16834c;box-shadow:0 18px 46px rgba(13,107,60,.18)}
.biz-card--vitrin{border-color:#d5b86d;box-shadow:0 16px 38px rgba(150,105,17,.12)}
.biz-card-cover{background-image:linear-gradient(135deg,rgba(6,54,29,.68),rgba(13,107,60,.22)),var(--biz-cover,none);background-size:cover;background-position:center}
.biz-card-cover[style] .biz-card-cover-pattern{background:linear-gradient(180deg,rgba(4,39,21,.08),rgba(4,39,21,.55))}
.biz-card-profile-label{backdrop-filter:blur(9px);box-shadow:0 7px 18px rgba(0,0,0,.12)}
.biz-card-profile-label.verified{background:#eafff0!important;color:#17663b!important;border-color:#bde8cb!important}
.biz-card-profile-label.pending{background:#fff6da!important;color:#7b5710!important;border-color:#edd99d!important}
.biz-card-profile-label.platform{background:rgba(11,45,27,.76)!important;color:#fff!important;border-color:rgba(255,255,255,.18)!important}
.biz-badge--sponsored{background:linear-gradient(135deg,#0b6840,#13a15d)!important;color:#fff!important;border-color:transparent!important}
.biz-badge--vitrin{background:linear-gradient(135deg,#8b6416,#d3a53d)!important;color:#fff!important;border-color:transparent!important}
.biz-badge--profile.verified{background:#eafff0;color:#17663b}.biz-badge--profile.pending{background:#fff5d6;color:#7f590e}.biz-badge--profile.platform{background:rgba(255,255,255,.16);color:#fff}
.biz-card-slogan{margin:0 0 6px;color:#0d6b3c;font-size:12px;font-weight:900;letter-spacing:.01em}
.biz-detail-hero{isolation:isolate;background-image:linear-gradient(90deg,rgba(5,42,23,.92),rgba(8,79,43,.70) 62%,rgba(8,79,43,.3)),var(--biz-detail-cover,none);background-size:cover;background-position:center}
.biz-detail-hero--verified{box-shadow:0 24px 58px rgba(11,90,51,.19)}
.biz-detail-hero--sponsored{outline:2px solid rgba(122,236,158,.56);outline-offset:-2px}
.biz-detail-slogan{display:block;margin:2px 0 9px;color:#a9efbf;font-size:14px;font-weight:900}
.biz-sponsored-banner{display:grid;grid-template-columns:210px minmax(0,1fr) auto;align-items:center;gap:20px;margin:18px 0;padding:15px;border-radius:24px;background:linear-gradient(135deg,#082f1c,#0d6540);color:#fff;box-shadow:0 18px 42px rgba(5,56,31,.2);overflow:hidden}
.biz-sponsored-banner-media{position:relative;height:118px;border-radius:17px;overflow:hidden;background:rgba(255,255,255,.09);display:grid;place-items:center;font-size:32px}.biz-sponsored-banner-media img{width:100%;height:100%;object-fit:cover}.biz-sponsored-banner-media span{position:absolute;left:9px;top:9px;padding:5px 7px;border-radius:999px;background:rgba(3,30,17,.82);font-size:8px;font-weight:900;letter-spacing:.08em}.biz-sponsored-banner-copy small{color:#8bdaa8;font-size:9px;font-weight:900;letter-spacing:.13em}.biz-sponsored-banner-copy h2{margin:4px 0 5px;font:900 20px/1.2 Poppins,sans-serif}.biz-sponsored-banner-copy p{margin:0;color:rgba(255,255,255,.72);font-size:13px}.biz-sponsored-banner>a{display:inline-flex;align-items:center;gap:8px;padding:11px 14px;border-radius:13px;background:#fff;color:#0c633a;text-decoration:none;font-size:12px;font-weight:900}
.biz-business-announcements,.biz-business-products{margin-bottom:18px}
.biz-announcement-grid{display:grid;gap:12px}.biz-announcement-grid article{display:grid;grid-template-columns:160px minmax(0,1fr);gap:16px;border:1px solid #e3ebe6;border-radius:18px;overflow:hidden;background:#fff}.biz-announcement-grid article.pinned{border-color:#b8dfc7;background:#f8fdf9}.biz-announcement-grid article>img{width:160px;height:100%;min-height:140px;object-fit:cover}.biz-announcement-grid article>div{padding:16px}.biz-announcement-grid small{display:inline-flex;align-items:center;gap:6px;color:#0d6b3c;font-size:9px;font-weight:900;letter-spacing:.08em}.biz-announcement-grid h3{margin:4px 0 6px;font-size:16px}.biz-announcement-grid p{margin:0;color:#68756e;font-size:13px;line-height:1.55}.biz-announcement-grid a{display:inline-flex;align-items:center;gap:7px;margin-top:11px;color:#0d6b3c;text-decoration:none;font-size:12px;font-weight:900}
.biz-public-product-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:13px}.biz-public-product-grid>article{display:grid;grid-template-columns:118px minmax(0,1fr);gap:14px;padding:12px;border:1px solid #e3ebe6;border-radius:18px;background:#fff}.biz-public-product-grid.featured>article:first-child{border-color:#c99c35;box-shadow:0 12px 28px rgba(166,116,18,.11)}.biz-public-product-image{position:relative;width:118px;height:105px;border-radius:14px;overflow:hidden;background:#edf3ef;display:grid;place-items:center;color:#98a79f;font-size:26px}.biz-public-product-image img{width:100%;height:100%;object-fit:cover}.biz-public-product-image span{position:absolute;left:7px;top:7px;padding:4px 6px;border-radius:999px;background:rgba(7,49,28,.82);color:#fff;font-size:8px;font-weight:900}.biz-public-product-grid h3{margin:2px 0 5px;font-size:15px}.biz-public-product-grid p{margin:0;color:#68756e;font-size:11px;line-height:1.5;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}.biz-public-product-grid footer{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-top:10px}.biz-public-product-grid footer strong{color:#0d6b3c;font-size:14px}.biz-public-product-grid footer a{color:#0d6b3c;text-decoration:none;font-size:11px;font-weight:900}.biz-product-disclaimer{display:flex;gap:8px;margin:14px 0 0;padding:10px 12px;border-radius:12px;background:#f4f7f5;color:#68756e;font-size:10px;line-height:1.45}
.biz-claim-card{padding:22px;border-radius:24px;background:radial-gradient(circle at 90% 0,rgba(138,214,95,.23),transparent 30%),linear-gradient(145deg,#0a3d25,#0d6b3c);color:#fff;box-shadow:0 18px 42px rgba(7,64,36,.18)}.biz-claim-icon{width:48px;height:48px;border-radius:16px;background:rgba(255,255,255,.13);display:grid;place-items:center;font-size:20px}.biz-claim-card>small{display:block;margin-top:16px;color:#95dfaf;font-size:9px;font-weight:900;letter-spacing:.13em}.biz-claim-card h2{margin:4px 0 7px;font:900 20px/1.25 Poppins,sans-serif}.biz-claim-card>p{margin:0 0 15px;color:rgba(255,255,255,.72);font-size:12px;line-height:1.55}.biz-claim-card form{display:grid;gap:9px}.biz-claim-card label{display:grid;gap:5px}.biz-claim-card label span{font-size:10px;font-weight:900;color:#bde9cc}.biz-claim-card input,.biz-claim-card textarea{width:100%;border:1px solid rgba(255,255,255,.2);border-radius:11px;background:rgba(255,255,255,.1);color:#fff;padding:10px 11px;font:700 12px Nunito,sans-serif;outline:none}.biz-claim-card input{height:40px}.biz-claim-card input:focus,.biz-claim-card textarea:focus{background:rgba(255,255,255,.16);border-color:#86dca5}.biz-claim-card input::placeholder,.biz-claim-card textarea::placeholder{color:rgba(255,255,255,.45)}.biz-claim-card form button,.biz-claim-primary{min-height:42px;border:0;border-radius:12px;background:#fff;color:#0d6339;padding:10px 13px;display:flex;align-items:center;justify-content:center;gap:7px;text-decoration:none;font-weight:900;cursor:pointer}.biz-claim-secondary{display:block;margin-top:9px;text-align:center;color:#c7efd5;font-size:11px;font-weight:900;text-decoration:none}.biz-claim-card .biz-feedback{margin:0 0 11px;font-size:11px}.biz-detail-sidebar .biz-claim-card{margin-bottom:16px}
@media(max-width:900px){.biz-sponsored-banner{grid-template-columns:150px minmax(0,1fr)}.biz-sponsored-banner>a{grid-column:1/-1;justify-content:center}.biz-public-product-grid{grid-template-columns:1fr}}
@media(max-width:640px){.biz-sponsored-banner{grid-template-columns:1fr;padding:12px}.biz-sponsored-banner-media{height:150px}.biz-sponsored-banner>a{grid-column:auto}.biz-announcement-grid article{grid-template-columns:1fr}.biz-announcement-grid article>img{width:100%;height:170px}.biz-public-product-grid>article{grid-template-columns:96px minmax(0,1fr)}.biz-public-product-image{width:96px;height:92px}.biz-card-cover{min-height:150px}}
.biz-manager-head-actions{display:flex;flex-wrap:wrap;gap:9px;justify-content:flex-end}.biz-manager-add--panel{background:linear-gradient(135deg,#0d6b3c,#159153)!important;color:#fff!important;border-color:transparent!important}.biz-manager-badges{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:6px}.biz-manager-verification{display:inline-flex;align-items:center;gap:5px;padding:6px 8px;border-radius:999px;font-size:9px;font-weight:900;white-space:nowrap}.biz-manager-verification.verified{background:#e5f7ec;color:#17663b}.biz-manager-verification.pending{background:#fff4d8;color:#80590e}.biz-manager-verification.platform{background:#eef2f0;color:#68756e}.biz-manager-action--panel{background:#e9f7ef!important;color:#0d6b3c!important;border-color:#c8e8d4!important}.biz-profile-panel-callout{display:grid;grid-template-columns:58px minmax(0,1fr) auto;align-items:center;gap:17px;padding:20px 22px;margin:18px 0;border-radius:22px;background:radial-gradient(circle at 85% 0,rgba(138,214,95,.25),transparent 33%),linear-gradient(135deg,#0a3b24,#0d6b3c);color:#fff;box-shadow:0 18px 42px rgba(7,64,36,.17)}.biz-profile-panel-callout>span{width:58px;height:58px;border-radius:19px;background:rgba(255,255,255,.13);display:grid;place-items:center;font-size:22px}.biz-profile-panel-callout small{color:#9ce2b5;font-size:9px;font-weight:900;letter-spacing:.13em}.biz-profile-panel-callout h2{margin:3px 0 4px;font:900 18px/1.25 Poppins,sans-serif}.biz-profile-panel-callout p{margin:0;color:rgba(255,255,255,.72);font-size:12px;line-height:1.5}.biz-profile-panel-callout>a{display:flex;align-items:center;gap:8px;padding:11px 14px;border-radius:13px;background:#fff;color:#0d6339;text-decoration:none;font-size:12px;font-weight:900;white-space:nowrap}
@media(max-width:720px){.biz-manager-head-actions{width:100%;display:grid;grid-template-columns:1fr 1fr}.biz-manager-head-actions a{justify-content:center}.biz-manager-title-row{align-items:flex-start!important}.biz-manager-badges{justify-content:flex-start}.biz-profile-panel-callout{grid-template-columns:48px minmax(0,1fr);padding:17px}.biz-profile-panel-callout>span{width:48px;height:48px}.biz-profile-panel-callout>a{grid-column:1/-1;justify-content:center}}


/* v0.62.0 — işletme doğrulama, duyuru vitrini ve bilgilendirme durumları */
.biz-feedback--info {
  color: #155e75;
  background: #ecfeff;
  border: 1px solid #a5f3fc;
}

.biz-business-announcements.is-featured {
  position: relative;
  overflow: hidden;
  border-color: rgba(5, 150, 105, .28);
  box-shadow: 0 24px 60px rgba(15, 118, 110, .10);
}

.biz-business-announcements.is-featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #047857, #22c55e, #84cc16);
}

.biz-section-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.biz-business-announcements.is-featured .biz-announcement-grid article:first-child {
  border-color: rgba(5, 150, 105, .34);
  box-shadow: 0 18px 38px rgba(5, 150, 105, .11);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .biz-section-premium-badge {
    width: fit-content;
    margin: 10px 0 0;
  }

  .biz-business-announcements .biz-detail-card-head {
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

/* =========================================================
   v0.62.3 — İşletmeler liste/detay kararlı responsive arayüz
   Bu blok yalnız .biz-page ve .biz-detail-page kapsamındadır.
   ========================================================= */

.biz-page,
.biz-detail-page {
  --biz-surface: #ffffff;
  --biz-page-bg: #f5f8f6;
  --biz-line: #dfe9e3;
  --biz-ink: #19382b;
  --biz-muted: #6f8278;
  --biz-accent: #0d6b3c;
  --biz-accent-dark: #084c2a;
  --biz-soft: #eaf7ef;
  min-width: 0;
  overflow-x: clip;
  color: var(--biz-ink);
  background:
    radial-gradient(circle at 5% 0%, rgba(24, 146, 82, .07), transparent 26%),
    linear-gradient(180deg, #f1f8f4 0, var(--biz-page-bg) 320px, var(--biz-page-bg) 100%);
  font-family: "Nunito", sans-serif;
}

.biz-page *,
.biz-detail-page * { box-sizing: border-box; }

.biz-page img,
.biz-detail-page img { max-width: 100%; }

.biz-page h1,
.biz-page h2,
.biz-page h3,
.biz-detail-page h1,
.biz-detail-page h2,
.biz-detail-page h3 {
  font-family: "Poppins", sans-serif;
  letter-spacing: -.026em;
}

.biz-wrap {
  width: min(1360px, calc(100% - 40px));
  max-width: 1360px;
  min-width: 0;
  margin: 0 auto;
  padding: 18px 0 72px;
}

/* ---------- Liste hero ---------- */
.biz-hero {
  width: 100%;
  height: 310px;
  min-height: 310px;
  padding: 42px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .72fr);
  gap: 34px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 18%, rgba(255,255,255,.18), transparent 27%),
    linear-gradient(135deg, #073d28 0%, #0b633c 52%, #179759 100%);
  box-shadow: 0 24px 58px rgba(9,72,43,.18);
}

.biz-hero-content,
.biz-hero-panel { min-width: 0; position: relative; z-index: 2; }

.biz-hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.biz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  color: #bff0d2;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
  white-space: nowrap;
}

.biz-hero h1 {
  max-width: 690px;
  margin: 10px 0 9px;
  color: #fff;
  font: 900 clamp(31px, 3.3vw, 46px)/1.07 "Poppins", sans-serif;
  overflow-wrap: anywhere;
}

.biz-hero h1 span { display: block; color: #a8efc7; }

.biz-hero-content > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.58;
}

.biz-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.biz-hero-highlights span {
  min-height: 27px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  font-size: 9.5px;
  font-weight: 800;
  white-space: nowrap;
}

.biz-hero-highlights i { color: #bdf3d2; line-height: 1; }

.biz-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 15px;
}

.biz-primary-btn,
.biz-secondary-btn {
  min-height: 43px;
  min-width: 0;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 13px;
  font: 900 11.5px/1 "Nunito", sans-serif;
  text-decoration: none;
  white-space: nowrap;
}

.biz-hero-panel { display: grid; gap: 10px; }
.biz-location-card { padding: 16px; border-radius: 18px; }
.biz-location-icon { width: 48px; height: 48px; border-radius: 15px; }
.biz-location-card strong { font-size: 16px; }
.biz-hero-stats { margin-top: 0; gap: 8px; }
.biz-hero-stats > div { padding: 12px 8px; border-radius: 14px; }
.biz-hero-stats strong { font-size: 18px; }

/* ---------- Filtre ve kategoriler ---------- */
.biz-filter-panel {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid var(--biz-line);
  border-radius: 20px;
  background: var(--biz-surface);
  box-shadow: 0 12px 34px rgba(15,73,44,.07);
}

.biz-filter-panel form {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) minmax(180px, .72fr) minmax(180px, .72fr) auto;
  gap: 9px;
  min-width: 0;
}

.biz-search-field,
.biz-select-field,
.biz-filter-submit {
  min-width: 0;
  height: 44px;
  min-height: 44px;
  border-radius: 13px;
}

.biz-search-field,
.biz-select-field {
  border-color: var(--biz-line);
  background: #f8fbf9;
}

.biz-search-field input,
.biz-select-field select { min-width: 0; font-size: 12px; }
.biz-filter-submit { padding: 0 16px; }
.biz-filter-meta { padding: 9px 3px 0; min-width: 0; }

.biz-category-carousel {
  margin-top: 14px;
  padding: 0 42px;
  position: relative;
  min-width: 0;
}

.biz-category-strip {
  margin: 0;
  padding: 2px 2px 8px;
  display: flex;
  gap: 9px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}
.biz-category-strip::-webkit-scrollbar { display: none; }

.biz-category-strip > a {
  min-width: 122px;
  min-height: 102px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  scroll-snap-align: start;
  border: 1px solid var(--biz-line);
  border-radius: 18px;
  background: #fff;
  text-align: center;
  box-shadow: 0 8px 24px rgba(19,72,46,.05);
}

.biz-category-strip > a:hover,
.biz-category-strip > a.is-active {
  transform: translateY(-2px);
  border-color: rgba(13,107,60,.34);
  box-shadow: 0 13px 30px rgba(17,88,51,.11);
}

.biz-category-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 16px;
  line-height: 1;
}

.biz-category-strip strong {
  width: 100%;
  min-width: 0;
  max-width: 100px;
  overflow: hidden;
  color: var(--biz-ink);
  font-size: 11px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.biz-category-strip small { font-size: 8.5px; line-height: 1; }
.biz-category-arrow { width: 34px; height: 34px; border-radius: 12px; }

/* ---------- Liste kartları ---------- */
.biz-section { margin-top: 29px; }
.biz-section + .biz-section { margin-top: 38px; }
.biz-section-head { margin-bottom: 13px; min-width: 0; }
.biz-section-head > div { min-width: 0; }
.biz-section-head h2 { margin: 4px 0 3px; font-size: 22px; line-height: 1.2; }
.biz-section-head p { font-size: 12px; line-height: 1.5; }

.biz-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.biz-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--biz-line);
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(15,69,43,.065);
}

.biz-card:hover { transform: translateY(-4px); box-shadow: 0 17px 42px rgba(15,69,43,.12); }

.biz-card-cover {
  height: 145px;
  min-height: 145px;
  padding: 13px;
  position: relative;
  overflow: visible;
  background-image: linear-gradient(135deg, rgba(5,42,23,.55), rgba(9,80,44,.22)), var(--biz-cover, none);
  background-size: cover;
  background-position: center;
}

.biz-card-cover-pattern { border-radius: inherit; }

.biz-card-badges {
  max-width: calc(100% - 12px);
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  position: relative;
  z-index: 2;
}

.biz-badge {
  min-height: 22px;
  max-width: 100%;
  padding: 0 8px;
  overflow: hidden;
  font-size: 8px;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.biz-card-profile-label {
  right: 12px;
  bottom: 11px;
  max-width: calc(100% - 124px);
  min-height: 23px;
  padding: 4px 8px;
  overflow: hidden;
  font-size: 7.5px;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.biz-card-logo {
  width: 82px;
  height: 82px;
  left: 18px;
  bottom: -36px;
  padding: 6px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 4px solid #fff;
  border-radius: 22px;
  color: var(--biz-accent);
  background: #fff;
  box-shadow: 0 14px 30px rgba(10,65,38,.18);
  font-size: 27px;
  line-height: 1;
}

.biz-card-logo img,
.biz-detail-logo img,
.biz-similar-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.biz-card-logo i,
.biz-detail-logo i,
.biz-category-icon i,
.biz-card-category i,
.biz-action-btn i,
.biz-inspect-btn i,
.biz-detail-action-btn i { line-height: 1; }

.biz-card-body {
  min-width: 0;
  flex: 1 1 auto;
  padding: 48px 18px 17px;
  display: flex;
  flex-direction: column;
}

.biz-card-head { min-width: 0; }
.biz-card-title-wrap { min-width: 0; }
.biz-card-category {
  max-width: 100%;
  overflow: hidden;
  font-size: 8.5px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.biz-card h2 {
  min-width: 0;
  margin: 5px 0 0;
  font-size: 17px;
  line-height: 1.24;
  overflow-wrap: anywhere;
}

.biz-card h2 a { display: block; color: var(--biz-ink); }
.biz-card-slogan { margin: 6px 0 0; font-size: 11px; line-height: 1.35; }

.biz-card-description {
  min-height: 53px;
  margin: 9px 0 11px;
  font-size: 11px;
  line-height: 1.55;
  -webkit-line-clamp: 3;
}

.biz-card-info { min-width: 0; min-height: 43px; gap: 6px; }
.biz-card-info span,
.biz-card-info a { min-width: 0; font-size: 10px; }
.biz-card-info i { flex: 0 0 14px; width: 14px; }

.biz-card-socials { margin-top: 10px; min-height: 32px; }
.biz-card-stats { margin-top: auto; padding: 10px 0; }

.biz-card-actions {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(84px, auto);
  gap: 6px;
  min-width: 0;
}

.biz-card-actions form { min-width: 0; }
.biz-action-btn,
.biz-inspect-btn {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 0 8px;
  border-radius: 11px;
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
}

.biz-owner-cta { margin-top: 36px; padding: 25px 28px; border-radius: 24px; min-width: 0; }
.biz-owner-cta > div { min-width: 0; }
.biz-owner-cta h2 { font-size: 21px; }

/* ---------- Detay hero ---------- */
.biz-detail-page .biz-wrap { padding-top: 18px; }

.biz-breadcrumb {
  min-height: 38px;
  margin: 0 0 12px;
  padding: 0 12px;
  border: 1px solid var(--biz-line);
  border-radius: 13px;
  background: #fff;
}

.biz-detail-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.biz-detail-hero {
  width: 100%;
  height: 310px;
  min-height: 310px;
  padding: 42px 48px;
  display: grid;
  grid-template-columns: 118px minmax(0,1fr) minmax(210px,.34fr);
  gap: 27px;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 30px;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(4,29,17,.94) 0%, rgba(5,52,29,.84) 54%, rgba(4,37,22,.68) 100%),
    var(--biz-detail-cover, none);
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 58px rgba(8,67,40,.17);
}

.biz-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.21));
}

.biz-detail-logo,
.biz-detail-hero-copy,
.biz-detail-hero-actions { position: relative; z-index: 2; min-width: 0; }

.biz-detail-logo {
  width: 112px;
  height: 112px;
  padding: 8px;
  border: 4px solid rgba(255,255,255,.84);
  border-radius: 26px;
  background: #fff;
  color: var(--biz-accent);
  box-shadow: 0 16px 35px rgba(0,0,0,.18);
  font-size: 36px;
  line-height: 1;
}

.biz-detail-badges { max-height: 58px; overflow: hidden; }
.biz-detail-hero h1 {
  margin: 9px 0 5px;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 45px);
  line-height: 1.08;
  text-shadow: 0 2px 16px rgba(0,0,0,.38);
  overflow-wrap: anywhere;
}

.biz-detail-slogan {
  display: block;
  max-width: 100%;
  margin: 2px 0 7px;
  overflow: hidden;
  color: #c9f6dc;
  font-size: 13px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.biz-detail-hero-copy > p {
  max-width: 710px;
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255,255,255,.88);
  font-size: 12px;
  line-height: 1.55;
  text-shadow: 0 1px 10px rgba(0,0,0,.3);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.biz-detail-location { margin-top: 12px; }
.biz-detail-location span {
  max-width: min(100%, 340px);
  overflow: hidden;
  color: rgba(255,255,255,.88);
  background: rgba(5,34,20,.34);
  border-color: rgba(255,255,255,.15);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.biz-detail-hero-actions { display: grid; gap: 9px; align-content: center; }
.biz-detail-contact {
  min-width: 0;
  min-height: 58px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 16px;
  color: #123b27;
  background: rgba(255,255,255,.95);
}
.biz-detail-contact--phone,
.biz-detail-contact--whatsapp { background: rgba(255,255,255,.95); color: #123b27; }
.biz-detail-contact > i { flex: 0 0 34px; line-height: 1; color: var(--biz-accent); background: var(--biz-soft); }
.biz-detail-contact span { min-width: 0; }
.biz-detail-contact strong { min-width: 0; text-overflow: ellipsis; }

.biz-sponsored-banner,
.biz-api-gallery,
.biz-detail-actionbar,
.biz-detail-trust-strip,
.biz-detail-card,
.biz-contact-card,
.biz-social-card,
.biz-similar-card,
.biz-claim-card,
.biz-add-card { min-width: 0; }

.biz-detail-actionbar {
  margin: 15px 0 20px;
  padding: 13px 15px;
  border-radius: 19px;
}
.biz-detail-stats { min-width: 0; }
.biz-detail-stats span { min-width: 70px; padding: 0 12px; }
.biz-detail-actions { min-width: 0; gap: 7px; }
.biz-detail-actions form { min-width: 0; }
.biz-detail-action-btn { min-width: 0; min-height: 40px; border-radius: 12px; font-size: 10.5px; white-space: nowrap; }

.biz-detail-trust-strip { border-radius: 20px; }
.biz-detail-layout { grid-template-columns: minmax(0,1fr) minmax(300px,360px); gap: 18px; }
.biz-detail-main,
.biz-detail-sidebar { min-width: 0; }
.biz-detail-card,
.biz-contact-card,
.biz-social-card,
.biz-similar-card,
.biz-claim-card,
.biz-add-card { border-radius: 20px; box-shadow: 0 9px 30px rgba(14,69,42,.055); }
.biz-detail-card { padding: 22px; }
.biz-detail-card-head { min-width: 0; }
.biz-detail-card-head > div { min-width: 0; }
.biz-detail-card-head h2 { font-size: 20px; overflow-wrap: anywhere; }
.biz-detail-card-icon { flex: 0 0 42px; }

.biz-comment.is-visitor .biz-comment-avatar { background: #eef4f0; color: #60766a; }
.biz-comment.is-visitor .biz-comment-body > div:first-child strong::after {
  content: "Ziyaretçi";
  display: inline-flex;
  margin-left: 7px;
  padding: 2px 6px;
  border-radius: 999px;
  background: #edf4f0;
  color: #66796e;
  font-size: 8px;
  font-weight: 900;
  vertical-align: middle;
}

@media (max-width: 1120px) {
  .biz-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .biz-detail-hero { grid-template-columns: 100px minmax(0,1fr); padding: 36px; }
  .biz-detail-logo { width: 94px; height: 94px; }
  .biz-detail-hero-actions { grid-column: 2; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .biz-detail-layout { grid-template-columns: minmax(0,1fr) 320px; }
}

@media (max-width: 900px) {
  .biz-hero { padding: 30px 34px; grid-template-columns: minmax(0,1fr) minmax(270px,.82fr); gap: 28px; }
  .biz-hero h1 { font-size: clamp(31px,4.6vw,37px); }
  .biz-hero-content > p { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .biz-hero-highlights { display: none; }
  .biz-hero-actions { margin-top: 13px; }
  .biz-filter-panel form { grid-template-columns: minmax(0,1fr) minmax(160px,.55fr); }
  .biz-search-field { grid-column: 1 / -1; }
  .biz-filter-submit { width: 100%; }
  .biz-detail-layout { grid-template-columns: 1fr; }
  .biz-detail-sidebar { position: static; }
}

@media (max-width: 760px) {
  .biz-wrap {
    width: calc(100% - 20px);
    padding: 10px 0 calc(82px + env(safe-area-inset-bottom));
  }

  .biz-hero {
    height: 238px;
    min-height: 238px;
    padding: 20px 17px;
    display: block;
    border-radius: 24px;
  }

  .biz-hero-content { height: 100%; justify-content: center; }
  .biz-hero-panel { display: none; }
  .biz-eyebrow { font-size: 8px; letter-spacing: .09em; }
  .biz-hero h1 { margin: 7px 0 6px; font-size: clamp(27px, 8.2vw, 31px); line-height: 1.06; }
  .biz-hero h1 span { display: inline; }
  .biz-hero-content > p {
    font-size: 10.5px;
    line-height: 1.4;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .biz-hero-highlights { margin-top: 8px; gap: 5px; flex-wrap: nowrap; overflow: hidden; }
  .biz-hero-highlights span { min-height: 22px; padding: 0 7px; font-size: 7.5px; }
  .biz-hero-highlights span:nth-child(3) { display: none; }
  .biz-hero-actions { margin-top: 9px; display: grid; grid-template-columns: minmax(0,1.2fr) minmax(0,.9fr); gap: 7px; }
  .biz-primary-btn,
  .biz-secondary-btn { width: 100%; min-height: 38px; padding: 0 8px; border-radius: 11px; font-size: 9.5px; overflow: hidden; text-overflow: ellipsis; }

  .biz-filter-panel { margin-top: 10px; padding: 10px; border-radius: 17px; }
  .biz-filter-panel form { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 7px; }
  .biz-search-field { grid-column: 1 / -1; }
  .biz-search-field,
  .biz-select-field,
  .biz-filter-submit { height: 42px; min-height: 42px; border-radius: 12px; }
  .biz-filter-submit { grid-column: 1 / -1; }
  .biz-filter-meta { font-size: 8.5px; }

  .biz-category-carousel { margin-top: 10px; padding: 0; }
  .biz-category-arrow { display: none; }
  .biz-category-strip { gap: 7px; padding-bottom: 6px; }
  .biz-category-strip > a { min-width: 88px; min-height: 82px; padding: 8px 6px; border-radius: 15px; }
  .biz-category-icon { width: 35px; height: 35px; border-radius: 11px; font-size: 13px; }
  .biz-category-strip strong { max-width: 76px; font-size: 9.5px; }
  .biz-category-strip small { font-size: 7.5px; }

  .biz-section { margin-top: 21px; }
  .biz-section + .biz-section { margin-top: 28px; }
  .biz-section-head { align-items: flex-end; justify-content: space-between; flex-direction: row; gap: 8px; }
  .biz-section-head h2 { font-size: 18px; }
  .biz-section-head p { font-size: 10px; line-height: 1.4; }
  .biz-result-pill { display: inline-flex; padding: 6px 8px; font-size: 8.5px; }

  .biz-grid { grid-template-columns: 1fr; gap: 12px; }
  .biz-card { border-radius: 19px; }
  .biz-card-cover { height: 132px; min-height: 132px; padding: 10px; }
  .biz-card-badges { max-width: calc(100% - 4px); }
  .biz-badge { min-height: 20px; padding: 0 6px; font-size: 7px; }
  .biz-card-profile-label { right: 9px; bottom: 9px; max-width: calc(100% - 100px); min-height: 21px; padding: 4px 6px; font-size: 6.5px; }
  .biz-card-logo { width: 68px; height: 68px; left: 14px; bottom: -28px; padding: 5px; border-width: 3px; border-radius: 18px; font-size: 22px; }
  .biz-card-body { padding: 38px 14px 14px; }
  .biz-card h2 { font-size: 16px; }
  .biz-card-slogan { font-size: 10px; }
  .biz-card-description { min-height: 0; margin: 8px 0 10px; font-size: 10.5px; -webkit-line-clamp: 2; }
  .biz-card-info span,
  .biz-card-info a { font-size: 9.5px; }
  .biz-card-socials { min-height: 30px; }
  .biz-card-actions { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 5px; }
  .biz-action-btn,
  .biz-inspect-btn { min-height: 38px; padding: 0 4px; border-radius: 10px; font-size: 8.5px; }
  .biz-action-btn span { display: none; }
  .biz-action-btn i,
  .biz-inspect-btn i { font-size: 12px; }
  .biz-inspect-btn { font-size: 0; }
  .biz-inspect-btn i { font-size: 12px; }

  .biz-owner-cta { margin-top: 24px; padding: 18px 15px; grid-template-columns: 44px minmax(0,1fr); gap: 11px; border-radius: 20px; }
  .biz-owner-icon { width: 44px; height: 44px; border-radius: 14px; }
  .biz-owner-cta h2 { font-size: 17px; }
  .biz-owner-cta p { font-size: 10px; }
  .biz-owner-cta > a { grid-column: 1 / -1; }

  .biz-breadcrumb { display: none; }
  .biz-detail-page .biz-wrap { padding-top: 10px; }
  .biz-detail-hero {
    height: 238px;
    min-height: 238px;
    padding: 16px;
    grid-template-columns: 64px minmax(0,1fr);
    grid-template-rows: minmax(0,1fr) auto;
    gap: 10px 12px;
    align-items: end;
    border-radius: 24px;
    background-image:
      linear-gradient(180deg, rgba(3,25,14,.54), rgba(3,35,19,.95)),
      var(--biz-detail-cover, none);
  }
  .biz-detail-logo { width: 64px; height: 64px; padding: 5px; align-self: end; border-width: 3px; border-radius: 18px; }
  .biz-detail-hero-copy { align-self: end; }
  .biz-detail-badges { max-height: 23px; gap: 4px; margin-bottom: 4px; }
  .biz-detail-badges .biz-badge { min-height: 20px; padding: 0 6px; font-size: 6.8px; }
  .biz-detail-hero h1 { margin: 2px 0 1px; font-size: 23px; line-height: 1.06; display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .biz-detail-slogan { margin: 2px 0 0; font-size: 9.5px; }
  .biz-detail-hero-copy > p,
  .biz-detail-location { display: none; }
  .biz-detail-hero-actions { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 7px; }
  .biz-detail-contact { min-height: 39px; padding: 5px 8px; border-radius: 11px; }
  .biz-detail-contact > i { width: 28px; height: 28px; flex-basis: 28px; font-size: 12px; }
  .biz-detail-contact small { display: none; }
  .biz-detail-contact strong { font-size: 9px; }

  .biz-sponsored-banner { grid-template-columns: 78px minmax(0,1fr); gap: 10px; padding: 10px; border-radius: 18px; }
  .biz-sponsored-banner > a { grid-column: 1 / -1; width: 100%; justify-content: center; }
  .biz-api-gallery { padding: 13px; border-radius: 18px; }
  .biz-detail-actionbar { padding: 10px; display: block; border-radius: 17px; }
  .biz-detail-stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 3px; }
  .biz-detail-stats span { min-width: 0; padding: 6px 2px; }
  .biz-detail-stats strong { font-size: 14px; }
  .biz-detail-stats small { font-size: 7px; }
  .biz-detail-actions { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 5px; margin-top: 8px; }
  .biz-detail-action-btn { width: 100%; min-width: 0; min-height: 38px; padding: 0 3px; border-radius: 10px; font-size: 7.8px; overflow: hidden; text-overflow: ellipsis; }
  .biz-detail-action-btn i { font-size: 11px; }
  .biz-detail-trust-strip { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 7px; padding: 10px; border-radius: 17px; }
  .biz-detail-trust-strip > div { min-width: 0; padding: 8px; }
  .biz-detail-layout { grid-template-columns: 1fr; gap: 12px; }
  .biz-detail-card,
  .biz-contact-card,
  .biz-social-card,
  .biz-similar-card,
  .biz-claim-card,
  .biz-add-card { padding: 15px; border-radius: 18px; }
  .biz-detail-card-head { gap: 9px; }
  .biz-detail-card-icon { width: 38px; height: 38px; flex-basis: 38px; border-radius: 12px; }
  .biz-detail-card-head h2 { font-size: 17px; }
  .biz-public-product-grid,
  .biz-announcement-grid { grid-template-columns: 1fr; }
  .biz-comment-input textarea { font-size: 16px; }
}

@media (max-width: 390px) {
  .biz-hero-actions { grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr); gap: 6px; }
  .biz-hero-highlights { display: none; }
  .biz-hero-content > p { -webkit-line-clamp: 1; }
  .biz-primary-btn,
  .biz-secondary-btn { min-height: 36px; font-size: 8.8px; }
  .biz-filter-panel form { grid-template-columns: 1fr; }
  .biz-search-field,
  .biz-filter-submit { grid-column: auto; }
  .biz-section-head p { display: none; }
  .biz-card-actions,
  .biz-detail-actions { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .biz-detail-hero { grid-template-columns: 58px minmax(0,1fr); padding: 14px; }
  .biz-detail-logo { width: 58px; height: 58px; }
  .biz-detail-hero h1 { font-size: 21px; }
  .biz-detail-contact strong { font-size: 8.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .biz-page *, .biz-detail-page * { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}


/* =========================================================
   v0.62.4 — Masaüstü hizalama, karusel, yorum ve ikon kararlılığı
   Mobil hero/içerik ölçüleri mevcut haliyle korunur.
   ========================================================= */
.biz-detail-card-head,.biz-contact-card-head{min-width:0;align-items:flex-start}.biz-detail-card-head>.biz-detail-card-icon,.biz-contact-card-head>span,.biz-add-card-icon,.biz-claim-icon{width:42px;height:42px;min-width:42px;min-height:42px;padding:0;display:grid;place-items:center;flex:0 0 42px;align-self:flex-start;border-radius:13px;font-size:16px;line-height:1;letter-spacing:0}.biz-detail-card-head>.biz-detail-card-icon i,.biz-contact-card-head>span i,.biz-add-card-icon i,.biz-claim-icon i{width:1em;height:1em;display:grid;place-items:center;line-height:1;text-align:center}.biz-detail-card-head>div,.biz-contact-card-head>div{min-width:0;padding-top:1px}.biz-detail-card-head>div>span,.biz-contact-card-head>div>small{line-height:1.25}#yorumlar{overflow:visible}#yorumlar .biz-detail-card-head--comments{align-items:center}.biz-comment-form{padding:16px;align-items:start;border:1px solid #e1ebe5;border-radius:17px;background:linear-gradient(135deg,#f7fbf8,#fff)}.biz-comment-input{min-width:0}.biz-comment-form-title{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:7px}.biz-comment-form-title label{margin:0}.biz-comment-form-title span{display:inline-flex;align-items:center;gap:5px;padding:5px 8px;border-radius:999px;color:#60756a;background:#eaf2ed;font-size:8px;font-weight:900;white-space:nowrap}.biz-comment-input textarea{border-color:#dce7e0;background:#fff;box-shadow:inset 0 1px 2px rgba(15,69,43,.025)}.biz-comment-input button{min-height:40px;padding-inline:16px;display:inline-flex;align-items:center;justify-content:center;gap:7px}.biz-comment-list{gap:10px}.biz-comment{align-items:start}.biz-comment-body{border-color:#e1ebe5;background:#fbfdfc;box-shadow:0 6px 18px rgba(15,69,43,.035)}.biz-comment.is-visitor .biz-comment-avatar{background:#edf3ef;color:#66796f}.biz-comment.is-visitor .biz-comment-body strong{color:#51655a}.biz-comment.is-visitor .biz-comment-body strong::after{content:none}@media(min-width:761px){.biz-wrap{width:100%;max-width:1360px;padding:18px 24px 72px}.biz-hero-actions{align-items:center}.biz-hero-actions>a{flex:0 0 auto}.biz-category-carousel{margin-top:16px;padding:14px 54px 12px;overflow:hidden;border:1px solid #dfe9e3;border-radius:24px;background:linear-gradient(135deg,#f5faf7 0%,#fff 58%,#f7fbf8 100%);box-shadow:0 12px 34px rgba(15,73,44,.065)}.biz-category-carousel .biz-category-strip{padding:1px 2px 4px}.biz-category-strip>a{min-width:126px;min-height:100px;box-shadow:0 7px 20px rgba(19,72,46,.045)}.biz-category-arrow{top:50%;width:38px;height:38px;z-index:4;border-color:#d3e4da;background:rgba(255,255,255,.98);box-shadow:0 8px 20px rgba(15,69,43,.11);transform:translateY(-50%)}.biz-category-arrow--left{left:9px}.biz-category-arrow--right{right:9px}.biz-category-arrow:hover:not(:disabled){transform:translateY(-50%) scale(1.04)}}@media(min-width:1121px){.biz-hero-actions{flex-wrap:nowrap}.biz-detail-hero{grid-template-columns:112px minmax(0,1fr) 232px}.biz-detail-hero-actions{width:232px;justify-self:end;align-self:center}.biz-detail-contact{width:100%;min-height:58px}}

/* =========================================================
   v0.62.5 — Yorum alanı, hero aksiyonları ve kimlik rozetleri
   ========================================================= */

/* İşletme kartlarında doğrulama ve kategori bilgisi kapak üstünden
   içerik başlığına taşınır. */
.biz-card-profile-label { display: none !important; }
.biz-card-identity-badges {
  min-width: 0;
  margin: 0 0 7px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.biz-card-profile-badge,
.biz-card-category {
  min-width: 0;
  min-height: 24px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #dce8e1;
  border-radius: 999px;
  font-size: 8.5px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.biz-card-profile-badge i,
.biz-card-category i { flex: 0 0 auto; line-height: 1; }
.biz-card-profile-badge.verified { color: #12633c; background: #e8f8ef; border-color: #cdebd9; }
.biz-card-profile-badge.pending { color: #80590e; background: #fff6dd; border-color: #f0dfae; }
.biz-card-profile-badge.platform { color: #566a5f; background: #eef3f0; border-color: #dce5e0; }
.biz-card-category {
  max-width: 190px;
  color: var(--biz-accent, #12633c);
  background: var(--biz-soft, #eef8f2);
  border-color: #d7e7de;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Detay hero içinde kampanya rozetleri üstte; doğrulama ve kategori
   işletme adının hemen altında ayrı kimlik satırında gösterilir. */
.biz-detail-badges--promotion {
  margin: 0 0 5px;
  max-height: 28px;
}
.biz-detail-identity-badges {
  min-width: 0;
  margin: 0 0 5px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.biz-detail-identity-badges .biz-badge {
  min-width: 0;
  min-height: 25px;
  padding: 0 9px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(5,34,20,.42);
  color: #fff;
  backdrop-filter: blur(10px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.biz-detail-identity-badges .biz-badge--profile.verified {
  color: #d8ffe7;
  background: rgba(16,112,64,.58);
  border-color: rgba(179,244,204,.34);
}
.biz-detail-identity-badges .biz-badge--category {
  max-width: 230px;
  color: #fff;
  background: rgba(255,255,255,.13);
}

/* Topluluk deneyimi ve ziyaretçi yorum formu. */
#yorumlar {
  overflow: hidden;
}
#yorumlar .biz-detail-card-head--comments {
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5eee8;
}
#yorumlar .biz-detail-card-head--comments > div {
  padding-top: 0;
}
#yorumlar .biz-detail-card-head--comments h2 {
  margin-top: 2px;
}
#yorumlar .biz-comment-form {
  margin-top: 17px;
  padding: 18px;
  display: block;
  border: 1px solid #dce9e1;
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(36,155,91,.09), transparent 34%),
    linear-gradient(145deg, #f7fbf8, #fff 58%);
  box-shadow: 0 10px 28px rgba(15,69,43,.05);
}
.biz-comment-compose-head {
  min-width: 0;
  display: grid;
  grid-template-columns: 44px minmax(0,1fr) auto;
  align-items: center;
  gap: 11px;
}
.biz-comment-compose-head .biz-comment-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}
.biz-comment-compose-copy {
  min-width: 0;
}
.biz-comment-compose-copy strong,
.biz-comment-compose-copy span {
  display: block;
}
.biz-comment-compose-copy strong {
  color: var(--text);
  font: 900 13px/1.25 "Poppins", sans-serif;
}
.biz-comment-compose-copy span {
  margin-top: 3px;
  color: var(--text3);
  font-size: 9.5px;
  line-height: 1.4;
}
.biz-comment-visitor-label,
.biz-comment-visitor-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 25px;
  padding: 0 9px;
  border: 1px solid #d9e5de;
  border-radius: 999px;
  color: #5d7066;
  background: #edf3ef;
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
#yorumlar .biz-comment-input {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}
.biz-comment-name-field,
.biz-comment-text-field {
  min-width: 0;
  display: block;
  margin: 0;
}
.biz-comment-name-field > span,
.biz-comment-text-field > span {
  display: block;
  margin: 0 0 6px;
  color: var(--text2);
  font-size: 9px;
  font-weight: 900;
}
.biz-comment-name-field input,
#yorumlar .biz-comment-input textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d8e5dd;
  outline: 0;
  color: var(--text);
  background: #fff;
  font: 700 11px/1.5 "Nunito", sans-serif;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.biz-comment-name-field input {
  height: 44px;
  padding: 0 13px;
  border-radius: 12px;
}
#yorumlar .biz-comment-input textarea {
  min-height: 118px;
  padding: 12px 13px;
  border-radius: 14px;
  resize: vertical;
}
.biz-comment-name-field input:focus,
#yorumlar .biz-comment-input textarea:focus {
  border-color: rgba(19,122,74,.48);
  box-shadow: 0 0 0 3px rgba(19,122,74,.09);
}
.biz-comment-name-field > small {
  display: block;
  margin-top: 5px;
  color: var(--text3);
  font-size: 8px;
  line-height: 1.4;
}
#yorumlar .biz-comment-submit-row {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
#yorumlar .biz-comment-submit-row > small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text3);
  font-size: 8.5px;
}
#yorumlar .biz-comment-input button {
  min-height: 42px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 12px;
  font-size: 10px;
}
.biz-comment-list {
  margin-top: 16px;
}
.biz-comment {
  grid-template-columns: 40px minmax(0,1fr);
  gap: 10px;
}
.biz-comment > .biz-comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 13px;
}
.biz-comment-body {
  padding: 13px 14px;
  border-color: #dfe9e3;
  border-radius: 14px;
  background: #fbfdfc;
}
.biz-comment-meta {
  align-items: center;
}
.biz-comment-author-line {
  flex-wrap: wrap;
}
.biz-comment.is-visitor .biz-comment-body strong::after,
.biz-comment.is-visitor .biz-comment-body > div:first-child strong::after {
  content: none !important;
}
.biz-comment-visitor-badge {
  min-height: 20px;
  padding: 0 7px;
  font-size: 7px;
}

/* Sabit 310px hero içinde masaüstü aksiyonlarının taşmasını engeller. */
@media (min-width: 901px) {
  .biz-hero {
    box-sizing: border-box;
  }
  .biz-hero-content {
    justify-content: center;
    overflow: hidden;
  }
  .biz-hero h1 {
    margin: 7px 0 7px;
    font-size: clamp(30px, 3vw, 41px);
    line-height: 1.04;
  }
  .biz-hero-content > p {
    font-size: 11.5px;
    line-height: 1.42;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .biz-hero-highlights {
    margin-top: 9px;
    gap: 6px;
  }
  .biz-hero-highlights span {
    min-height: 24px;
    padding: 0 8px;
    font-size: 8.5px;
  }
  .biz-hero-actions {
    max-width: 100%;
    margin-top: 10px;
    flex-wrap: nowrap;
  }
  .biz-primary-btn,
  .biz-secondary-btn {
    min-height: 40px;
    padding: 0 14px;
    font-size: 10.5px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .biz-hero-highlights span:nth-child(3) { display: none; }
}

@media (max-width: 760px) {
  .biz-card-identity-badges {
    margin-bottom: 6px;
    gap: 5px;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .biz-card-profile-badge,
  .biz-card-category {
    min-height: 21px;
    padding: 0 7px;
    font-size: 7px;
  }
  .biz-card-profile-badge { flex: 0 0 auto; }
  .biz-card-category {
    flex: 0 1 auto;
    max-width: 155px;
  }

  .biz-detail-badges--promotion {
    max-height: 20px;
    margin-bottom: 3px;
  }
  .biz-detail-badges--promotion .biz-badge {
    min-height: 19px;
    padding: 0 5px;
    font-size: 6.3px;
  }
  .biz-detail-identity-badges {
    margin: 3px 0 2px;
    gap: 4px;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .biz-detail-identity-badges .biz-badge {
    min-height: 19px;
    padding: 0 6px;
    font-size: 6.5px;
  }
  .biz-detail-identity-badges .biz-badge--profile { flex: 0 0 auto; }
  .biz-detail-identity-badges .biz-badge--category {
    flex: 0 1 auto;
    max-width: 140px;
  }

  #yorumlar .biz-comment-form {
    padding: 14px;
    border-radius: 16px;
  }
  .biz-comment-compose-head {
    grid-template-columns: 38px minmax(0,1fr);
    gap: 9px;
  }
  .biz-comment-compose-head .biz-comment-avatar {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .biz-comment-compose-copy strong { font-size: 11.5px; }
  .biz-comment-compose-copy span { font-size: 8.5px; }
  .biz-comment-visitor-label {
    grid-column: 1 / -1;
    width: max-content;
    min-height: 22px;
    margin-left: 47px;
    padding: 0 8px;
    font-size: 7.5px;
  }
  #yorumlar .biz-comment-input {
    margin-top: 12px;
    gap: 10px;
  }
  .biz-comment-name-field input { height: 43px; font-size: 16px; }
  #yorumlar .biz-comment-input textarea { min-height: 112px; font-size: 16px; }
  #yorumlar .biz-comment-submit-row {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }
  #yorumlar .biz-comment-input button {
    width: 100%;
  }
  .biz-comment {
    grid-template-columns: 34px minmax(0,1fr);
    gap: 8px;
  }
  .biz-comment > .biz-comment-avatar {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }
  .biz-comment-body {
    padding: 11px 12px;
  }
  .biz-comment-meta {
    align-items: flex-start;
  }
}

/* Hero aksiyonlarını 310px masaüstü alanının fiziksel sınırına sabitler. */
@media (min-width: 761px) {
  .biz-hero-content {
    position: relative;
    justify-content: flex-start;
    padding-bottom: 50px;
    box-sizing: border-box;
  }
  .biz-hero-actions {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 9px;
  }
  .biz-hero-actions .biz-primary-btn,
  .biz-hero-actions .biz-secondary-btn {
    max-width: 100%;
    min-height: 40px;
  }
}


/* =========================================================
   v0.62.5.4 — Yorum meta katmanı, form tipografisi ve kart bağlantıları
   ========================================================= */
.biz-card-cover-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.biz-card-cover-link:focus-visible,
.biz-card-title-link:focus-visible {
  outline: 3px solid rgba(19, 122, 74, .22);
  outline-offset: 3px;
}
.biz-card-title-link {
  min-width: 0;
  display: block;
  color: inherit;
  text-decoration: none;
}
.biz-card-title-link h2 {
  margin: 0;
  color: var(--biz-ink);
  transition: color .18s ease;
}
.biz-card-title-link:hover h2 { color: var(--biz-green); }

/* Placeholder metinleri içerik tipografisine indirilir; kullanıcının yazdığı
   değer mobil tarayıcı odak yakınlaştırmasını önlemek için mevcut boyutunu korur. */
.biz-comment-name-field input::placeholder,
#yorumlar .biz-comment-input textarea::placeholder {
  color: #84958b;
  font-family: "Nunito", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.45;
  opacity: 1;
}

/* İç yorum başlığı ana site <header> kurallarından tamamen ayrılır. */
.biz-comment-meta {
  position: static !important;
  inset: auto !important;
  z-index: auto !important;
  width: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  transform: none !important;
}
.biz-comment-author-line {
  min-width: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.biz-comment-meta strong {
  min-width: 0;
  overflow: hidden;
  color: var(--text);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.biz-comment-meta time {
  flex: 0 0 auto;
  color: var(--text3);
  font-size: 8px;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .biz-comment-name-field input::placeholder,
  #yorumlar .biz-comment-input textarea::placeholder {
    font-size: 10px;
  }
  .biz-comment-meta {
    align-items: flex-start;
  }
  .biz-comment-author-line {
    gap: 5px;
  }
}
