:root {
  --brand: #9f1d32;
  --brand-dark: #741322;
  --brand-hover: #b5263e;
  --brand-soft: #f8e9ed;
  --gold: #d8b06a;
  --gold-soft: #f7efdf;
  --ink: #17191d;
  --text: #262a31;
  --muted: #747c87;
  --surface: #ffffff;
  --surface-2: #f8f8f9;
  --page: #f4f5f7;
  --border: #e7e8eb;
  --border-strong: #dadde2;
  --shadow-sm: 0 5px 18px rgba(25, 28, 34, .05);
  --shadow: 0 14px 40px rgba(25, 28, 34, .09);
  --shadow-lg: 0 28px 70px rgba(25, 28, 34, .14);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
}

* { box-sizing: border-box; }

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}

body {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--page);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a, input { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }

.market-container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

/* =========================================================
   HEADER
========================================================= */
.market-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(222,224,228,.9);
  box-shadow: 0 4px 22px rgba(20,24,29,.045);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.market-header__top,
.market-header__bottom {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.market-header__top {
  min-height: 76px;
  gap: 24px;
}

.market-header__bottom {
  min-height: 44px;
  gap: 28px;
  border-top: 1px solid rgba(231,232,235,.75);
  font-size: 13px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand__logo {
  width: auto;
  height: 50px;
  object-fit: contain;
  transition: transform .22s ease;
}

.brand:hover .brand__logo { transform: scale(1.025); }

.market-search {
  position: relative;
  flex: 1;
  max-width: 720px;
}

.market-search > i {
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #8a9099;
  font-size: 14px;
}

.market-search input {
  width: 100%;
  height: 48px;
  padding: 0 48px 0 45px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  outline: 0;
  color: var(--ink);
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(0,0,0,.015);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.market-search input::placeholder { color: #9ba1aa; }
.market-search input:focus {
  border-color: rgba(159,29,50,.65);
  box-shadow: 0 0 0 4px rgba(159,29,50,.08);
}

.market-search button {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 10px;
  color: #8b919a;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
}

.market-search button.visible { opacity: 1; pointer-events: auto; }
.market-search button:hover { background: #f3f4f5; color: var(--ink); }

.market-actions { margin-left: auto; }

.market-actions__primary {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 13px;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 8px 20px rgba(159,29,50,.2);
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.market-actions__primary:hover {
  transform: translateY(-1px);
  background: var(--brand-hover);
  box-shadow: 0 11px 24px rgba(159,29,50,.24);
}

.quick-links {
  display: flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
}

.quick-links a {
  position: relative;
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  color: #59616b;
  font-weight: 700;
  transition: color .2s ease;
}

.quick-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  transition: right .2s ease;
}

.quick-links a:hover { color: var(--brand); }
.quick-links a:hover::after { right: 0; }
.market-count { margin-left: auto; color: var(--muted); }
.market-count strong { color: var(--text); }

/* =========================================================
   HERO
========================================================= */
.hero-ad {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(216,176,106,.24), transparent 24%),
    radial-gradient(circle at 8% 100%, rgba(159,29,50,.11), transparent 24%),
    linear-gradient(135deg, #fff 0%, #faf6f7 48%, #f7f2ea 100%);
  border-bottom: 1px solid rgba(231,232,235,.9);
}

.hero-ad::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  pointer-events: none;
  background-image: radial-gradient(rgba(55,45,45,.22) .7px, transparent .7px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to right, transparent, #000 25%, #000 75%, transparent);
}

.hero-ad__track { position: relative; min-height: 490px; }

.hero-ad__slide {
  position: absolute;
  inset: 0;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 52px 62px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: 58px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .42s ease, transform .42s ease;
}

.hero-ad__slide--active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-ad__copy { position: relative; z-index: 2; }

.ad-label {
  min-height: 29px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(159,29,50,.11);
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(255,255,255,.72);
  box-shadow: 0 6px 18px rgba(23,25,29,.04);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-ad__slide h1,
.hero-ad__slide h2 {
  max-width: 700px;
  margin: 17px 0 16px;
  color: var(--ink);
  font-size: clamp(42px, 5.1vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 800;
}

.hero-ad__slide h1 span { color: var(--brand); }

.hero-ad__slide p {
  max-width: 620px;
  margin: 0 0 26px;
  color: #5c636d;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.65;
}

.hero-ad__button {
  min-height: 48px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 13px;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 12px 28px rgba(159,29,50,.21);
  font-size: 13px;
  font-weight: 800;
}

.hero-ad__button i { font-size: 11px; transition: transform .2s ease; }
.hero-ad__slide:hover .hero-ad__button i { transform: translateX(3px); }

.hero-ad__trust {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  color: #69717b;
  font-size: 11px;
  font-weight: 700;
}
.hero-ad__trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-ad__trust i { color: var(--brand); }

.hero-ad__visual {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
}

/* Phone mock */
.hero-phone {
  position: relative;
  z-index: 2;
  width: 204px;
  height: 372px;
  padding: 13px 12px;
  border: 7px solid #1d2025;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 30px 65px rgba(32,24,26,.22);
  transform: rotate(4deg);
}
.hero-phone__bar { height: 17px; display: grid; place-items: center; }
.hero-phone__bar span { width: 48px; height: 5px; border-radius: 99px; background: #25282d; }
.hero-phone__cover { height: 94px; border-radius: 15px; background: linear-gradient(135deg,#6e2432,#b94b5d 52%,#d9b778); }
.hero-phone__logo { width: 43px; height: 43px; margin: -21px auto 0; display: grid; place-items: center; border: 3px solid #fff; border-radius: 50%; color: #fff; background: var(--brand); font-size: 20px; font-weight: 800; box-shadow: 0 6px 14px rgba(0,0,0,.15); }
.hero-phone__lines { margin: 12px 12px 10px; display: grid; gap: 6px; justify-items: center; }
.hero-phone__lines b { width: 72px; height: 7px; border-radius: 99px; background: #282c31; }
.hero-phone__lines span { width: 102px; height: 5px; border-radius: 99px; background: #d7d9dd; }
.hero-phone__cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; padding: 6px; }
.hero-phone__cards i { aspect-ratio: 1; border-radius: 9px; background: linear-gradient(145deg,#ece4df,#d4c4b7); }
.hero-phone__cards i:nth-child(2) { background: linear-gradient(145deg,#f0d3d8,#be6b7a); }
.hero-phone__cards i:nth-child(3) { background: linear-gradient(145deg,#e9e0c6,#caa758); }
.hero-phone__nav { position: absolute; left: 24px; right: 24px; bottom: 20px; display: flex; justify-content: space-between; }
.hero-phone__nav span { width: 18px; height: 18px; border-radius: 6px; background: #eef0f2; }

.hero-float {
  position: absolute;
  z-index: 4;
  min-width: 175px;
  padding: 13px 15px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 1px 10px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 42px rgba(33,27,29,.13);
  backdrop-filter: blur(14px);
}
.hero-float > i { grid-row: 1 / 3; width: 32px; height: 32px; display: grid; place-items: center; align-self: center; border-radius: 10px; color: var(--brand); background: var(--brand-soft); }
.hero-float b { color: var(--ink); font-size: 11px; }
.hero-float small { color: var(--muted); font-size: 9px; }
.hero-float--orders { left: 2%; bottom: 38px; }
.hero-float--views { right: -4%; top: 54px; }
.hero-float--booking { right: -4%; bottom: 25px; }
.hero-float--share { right: -2%; bottom: 34px; }

/* Agenda mock */
.agenda-mock {
  width: min(365px, 92%);
  padding: 24px;
  border: 1px solid rgba(222,224,228,.85);
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
}
.agenda-mock__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.agenda-mock__head span { font-size: 18px; font-weight: 800; }
.agenda-mock__head b { color: var(--brand); font-size: 12px; }
.agenda-mock__days,
.agenda-mock__grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 7px; }
.agenda-mock__days { margin-bottom: 8px; color: #8a919a; font-size: 9px; text-align: center; font-weight: 700; }
.agenda-mock__grid i { aspect-ratio: 1; border-radius: 8px; background: #f2f3f4; }
.agenda-mock__grid i.is-active { background: var(--brand); box-shadow: 0 6px 12px rgba(159,29,50,.22); }
.agenda-mock__slot { margin-top: 11px; min-height: 45px; padding: 0 12px; display: grid; grid-template-columns: 24px 1fr auto; align-items: center; border: 1px solid var(--border); border-radius: 12px; font-size: 10px; }
.agenda-mock__slot i { color: var(--brand); }
.agenda-mock__slot b { color: var(--brand); font-size: 9px; }

/* QR mock */
.qr-mock {
  width: 260px;
  height: 300px;
  padding: 28px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: rotate(3deg);
}
.qr-mock i { color: #1f2328; font-size: 150px; }
.qr-mock span { max-width: 190px; overflow: hidden; color: var(--brand); font-size: 11px; font-weight: 800; text-overflow: ellipsis; white-space: nowrap; }
.share-mock { position: absolute; left: 5%; top: 52px; display: grid; gap: 10px; }
.share-mock div { width: 47px; height: 47px; display: grid; place-items: center; border-radius: 15px; background: #fff; box-shadow: var(--shadow-sm); font-size: 18px; }
.share-mock div:first-child { color: #1daf60; }
.share-mock div:nth-child(2) { color: #b52b78; }
.share-mock div:last-child { color: var(--brand); }

.hero-ad__arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 42px;
  height: 58px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(228,230,233,.8);
  color: #555c65;
  background: rgba(255,255,255,.82);
  box-shadow: 0 8px 22px rgba(20,24,29,.07);
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.hero-ad__arrow--left { left: 0; border-radius: 0 14px 14px 0; }
.hero-ad__arrow--right { right: 0; border-radius: 14px 0 0 14px; }
.hero-ad__arrow:hover { color: var(--brand); background: #fff; }
.hero-ad__dots { position: absolute; left: 50%; bottom: 19px; z-index: 12; display: flex; gap: 7px; transform: translateX(-50%); }
.hero-ad__dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 99px; background: rgba(31,35,40,.22); cursor: pointer; transition: .2s ease; }
.hero-ad__dots button.active { width: 25px; background: var(--brand); }

/* =========================================================
   SECTIONS
========================================================= */
.market-section,
.binku-value,
.seller-cta { margin-top: 42px; }

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

.section-kicker {
  color: var(--brand);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.section-heading h2,
.binku-value__intro h2,
.seller-cta h2 {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.section-subtitle {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.section-link,
.section-result {
  flex: 0 0 auto;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}
.section-link { display: inline-flex; align-items: center; gap: 7px; }
.section-link i { font-size: 9px; transition: transform .2s ease; }
.section-link:hover i { transform: translateX(3px); }

/* =========================================================
   PRODUCTS
========================================================= */
.horizontal-products {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 215px);
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 16px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: #d9dce0 transparent;
  -webkit-overflow-scrolling: touch;
}
.horizontal-products .product-card { scroll-snap-align: start; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 15px;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(23,27,32,.035);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: #dfe1e5;
  box-shadow: 0 18px 38px rgba(23,27,32,.1);
}

.product-card__image {
  position: relative;
  aspect-ratio: 1 / .86;
  overflow: hidden;
  background: #f3f4f5;
}
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .32s ease; }
.product-card:hover .product-card__image img { transform: scale(1.035); }

.product-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 7px;
  pointer-events: none;
}
.product-card__discount,
.product-card__soldout {
  min-height: 24px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 5px 12px rgba(159,29,50,.18);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.product-card__soldout { margin-left: auto; background: rgba(31,35,40,.86); box-shadow: none; }

.product-card__body { padding: 14px 14px 15px; }
.product-card__category {
  max-width: 100%;
  margin-bottom: 8px;
  padding: 4px 7px;
  display: inline-block;
  overflow: hidden;
  border-radius: 999px;
  color: #7c6469;
  background: #f7f1f2;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .035em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.product-card h3 {
  min-height: 39px;
  margin: 0 0 9px;
  overflow: hidden;
  color: #2c3036;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}
.product-card__pricing { min-height: 46px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; }
.product-card__price {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.045em;
}
.product-card__old-price { color: #a0a6ad; font-size: 10px; text-decoration: line-through; }
.product-card__business {
  margin: 4px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-card__business i { margin-right: 5px; color: var(--brand); }
.product-card__action {
  margin-top: 13px;
  padding-top: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0f1f2;
  color: var(--brand);
  font-size: 10px;
  font-weight: 800;
}
.product-card__action i { font-size: 9px; }
.product-card--compact .product-card__body { padding-bottom: 13px; }
.product-card--compact .product-card__action { display: none; }

/* =========================================================
   VALUE BLOCK
========================================================= */
.binku-value {
  padding: 34px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  align-items: center;
  border: 1px solid #eadfe2;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 10% 10%, rgba(159,29,50,.08), transparent 28%),
    linear-gradient(135deg,#fff,#fbf8f8);
  box-shadow: var(--shadow-sm);
}
.binku-value__intro p { max-width: 470px; margin: 12px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.binku-value__features { display: grid; grid-template-columns: repeat(2,1fr); gap: 11px; }
.binku-value__features > div {
  min-height: 92px;
  padding: 16px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.86);
}
.binku-value__features > div > i { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: var(--brand); background: var(--brand-soft); }
.binku-value__features span { min-width: 0; display: grid; gap: 3px; }
.binku-value__features b { color: var(--ink); font-size: 12px; }
.binku-value__features small { color: var(--muted); font-size: 10px; line-height: 1.4; }

/* =========================================================
   BUSINESSES
========================================================= */
.business-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.business-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(23,27,32,.035);
  transition: transform .22s ease, box-shadow .22s ease;
}
.business-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.business-card__cover {
  position: relative;
  height: 128px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg,#f8e9ed 0%,#f7f1e5 100%);
}
.business-card__pattern {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: radial-gradient(rgba(159,29,50,.25) .8px, transparent .8px);
  background-size: 15px 15px;
}
.business-card__cover::after { content: ""; position: absolute; width: 150px; height: 150px; border-radius: 50%; background: rgba(255,255,255,.42); filter: blur(1px); }
.business-card__cover img {
  position: relative;
  z-index: 2;
  width: 82px;
  height: 82px;
  object-fit: cover;
  border: 5px solid rgba(255,255,255,.92);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 11px 24px rgba(23,27,32,.12);
}
.business-card__body { padding: 17px; }
.business-card h3 { margin: 0 0 7px; color: var(--ink); font-size: 15px; }
.business-card p { margin: 0 0 13px; overflow: hidden; color: var(--muted); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.business-card p i { margin-right: 5px; color: var(--brand); }
.business-card__meta { padding-top: 11px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px solid #f0f1f2; }
.business-card__meta span { margin: 0; color: #90969e; font-size: 9px; }
.business-card__meta strong { color: var(--brand); font-size: 9px; white-space: nowrap; }
.business-card__meta strong i { margin-left: 4px; font-size: 8px; }

/* =========================================================
   CTA
========================================================= */
.seller-cta {
  margin-bottom: 54px;
  padding: 31px 34px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  position: relative;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 0%, rgba(216,176,106,.34), transparent 27%),
    linear-gradient(125deg,#221519,#5d1825 56%,#8f2032);
  box-shadow: 0 22px 50px rgba(73,22,32,.18);
}
.seller-cta::after { content: ""; position: absolute; right: -70px; bottom: -100px; width: 270px; height: 270px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.seller-cta__icon { position: relative; z-index: 2; width: 68px; height: 68px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; color: #fff; background: rgba(255,255,255,.1); font-size: 25px; backdrop-filter: blur(8px); }
.seller-cta > div:nth-child(2) { position: relative; z-index: 2; }
.seller-cta .section-kicker { color: #e6c98f; }
.seller-cta h2 { color: #fff; font-size: clamp(25px,3vw,36px); }
.seller-cta p { max-width: 650px; margin: 8px 0 0; color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.55; }
.seller-cta > a { position: relative; z-index: 2; min-height: 47px; padding: 0 19px; display: inline-flex; align-items: center; gap: 9px; border-radius: 13px; color: #34151c; background: #fff; font-size: 11px; font-weight: 800; box-shadow: 0 10px 24px rgba(0,0,0,.12); }
.seller-cta > a i { font-size: 9px; }

/* =========================================================
   EMPTY / FILTER
========================================================= */
.empty-state { grid-column: 1 / -1; min-height: 240px; padding: 42px; display: grid; place-items: center; align-content: center; border: 1px dashed #ced2d7; border-radius: 18px; background: #fff; text-align: center; }
.empty-state i { color: var(--brand); font-size: 38px; }
.empty-state h3 { margin: 13px 0 5px; color: var(--ink); font-size: 18px; }
.empty-state p { margin: 0; color: var(--muted); font-size: 12px; }
.empty-state--search { display: none; }
.empty-state--search.visible { display: grid; }
.hidden-by-filter { display: none !important; }

/* Legacy hooks, kept for marketplace.js compatibility */
.category-panel { display: none; }
.category-grid { display: none; }
.category-card { display: none; }
.ad-strip, .ad-pair, .final-ad { display: none; }

/* =========================================================
   FOOTER
========================================================= */
.market-footer { color: #fff; background: #15181c; }
.market-footer__grid { padding: 48px 0 42px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; }
.brand__logo--footer { height: 46px; filter: brightness(0) invert(1); opacity: .92; }
.market-footer p { max-width: 360px; margin: 14px 0 0; color: rgba(255,255,255,.6); font-size: 12px; line-height: 1.65; }
.market-footer h4 { margin: 0 0 13px; color: #fff; font-size: 12px; }
.market-footer a:not(.brand) { display: block; margin: 9px 0; color: rgba(255,255,255,.62); font-size: 11px; transition: color .2s ease; }
.market-footer a:not(.brand):hover { color: #fff; }
.market-footer__bottom { padding: 18px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.42); text-align: center; font-size: 10px; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .business-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .hero-ad__slide { padding-left: 42px; padding-right: 42px; gap: 34px; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 138px; }
  .market-container,
  .market-header__top,
  .market-header__bottom { width: calc(100% - 24px); }

  .market-header__top {
    min-height: auto;
    padding: 9px 0 10px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 9px 12px;
  }
  .brand__logo { height: 43px; }
  .market-search { grid-column: 1 / -1; grid-row: 2; width: 100%; max-width: none; }
  .market-search input { height: 45px; font-size: 13px; }
  .market-actions__primary { width: 39px; height: 39px; min-height: 39px; padding: 0; border-radius: 11px; }
  .market-actions__primary span { display: none; }
  .market-actions__primary i { font-size: 14px; }
  .market-header__bottom { min-height: 42px; overflow-x: auto; scrollbar-width: none; }
  .market-header__bottom::-webkit-scrollbar { display: none; }
  .quick-links { flex: 0 0 auto; gap: 21px; }
  .quick-links a { min-height: 42px; font-size: 11px; }
  .market-count { display: none; }

  .hero-ad,
  .hero-ad__track { min-height: 445px; }
  .hero-ad__slide {
    width: calc(100% - 24px);
    min-height: 445px;
    padding: 34px 18px 52px;
    grid-template-columns: 1fr .72fr;
    gap: 18px;
  }
  .hero-ad__slide h1,
  .hero-ad__slide h2 { font-size: clamp(35px,7vw,50px); }
  .hero-ad__slide p { font-size: 14px; line-height: 1.55; }
  .hero-phone { width: 154px; height: 285px; border-width: 5px; border-radius: 27px; }
  .hero-phone__cover { height: 72px; }
  .hero-phone__logo { width: 35px; height: 35px; margin-top: -17px; font-size: 16px; }
  .hero-float { display: none; }
  .agenda-mock { padding: 16px; }
  .qr-mock { width: 190px; height: 230px; }
  .qr-mock i { font-size: 110px; }
  .share-mock { left: -2%; top: 68px; }
  .share-mock div { width: 39px; height: 39px; border-radius: 12px; font-size: 15px; }

  .product-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 11px; }
  .business-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .binku-value { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .seller-cta { grid-template-columns: auto 1fr; }
  .seller-cta > a { grid-column: 1 / -1; justify-self: start; }
  .market-footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .market-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .market-container,
  .market-header__top,
  .market-header__bottom { width: calc(100% - 20px); }

  .hero-ad,
  .hero-ad__track { min-height: 510px; }
  .hero-ad__slide {
    width: calc(100% - 20px);
    min-height: 510px;
    padding: 28px 10px 52px;
    grid-template-columns: 1fr;
    align-content: center;
  }
  .hero-ad__copy { text-align: left; }
  .ad-label { font-size: 8px; }
  .hero-ad__slide h1,
  .hero-ad__slide h2 { max-width: 360px; margin: 13px 0 12px; font-size: clamp(34px,10.5vw,46px); line-height: .99; }
  .hero-ad__slide p { max-width: 360px; margin-bottom: 20px; font-size: 13px; }
  .hero-ad__trust { gap: 8px 13px; margin-top: 17px; font-size: 9px; }
  .hero-ad__button { min-height: 44px; padding: 0 17px; font-size: 11px; }
  .hero-ad__visual { min-height: 150px; margin-top: 4px; }
  .hero-phone { width: 118px; height: 205px; border-radius: 22px; }
  .hero-phone__bar { height: 11px; }
  .hero-phone__cover { height: 50px; border-radius: 10px; }
  .hero-phone__logo { width: 27px; height: 27px; margin-top: -13px; font-size: 12px; }
  .hero-phone__lines { margin-top: 7px; gap: 4px; }
  .hero-phone__lines b { width: 48px; height: 4px; }
  .hero-phone__lines span { width: 70px; height: 3px; }
  .hero-phone__cards { gap: 4px; padding: 3px; }
  .hero-phone__nav { bottom: 11px; left: 16px; right: 16px; }
  .hero-phone__nav span { width: 11px; height: 11px; border-radius: 4px; }
  .agenda-mock { width: 235px; padding: 13px; border-radius: 17px; }
  .agenda-mock__head { margin-bottom: 10px; }
  .agenda-mock__head span { font-size: 13px; }
  .agenda-mock__grid, .agenda-mock__days { gap: 4px; }
  .agenda-mock__slot { min-height: 34px; margin-top: 7px; font-size: 8px; }
  .qr-mock { width: 148px; height: 160px; padding: 14px; gap: 8px; border-radius: 18px; }
  .qr-mock i { font-size: 80px; }
  .qr-mock span { font-size: 8px; }
  .share-mock { left: 12%; top: 38px; grid-template-columns: repeat(3,1fr); }
  .share-mock div { width: 30px; height: 30px; border-radius: 9px; font-size: 11px; }
  .hero-ad__arrow { width: 31px; height: 49px; font-size: 10px; }
  .hero-ad__dots { bottom: 13px; }

  .market-section,
  .binku-value,
  .seller-cta { margin-top: 31px; }
  .section-heading { align-items: flex-end; gap: 10px; margin-bottom: 14px; }
  .section-heading h2,
  .binku-value__intro h2,
  .seller-cta h2 { font-size: 22px; }
  .section-subtitle { max-width: 290px; font-size: 10px; }
  .section-link,
  .section-result { font-size: 9px; }

  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
  .horizontal-products { grid-auto-columns: minmax(156px, 168px); gap: 9px; }
  .product-card { border-radius: 13px; }
  .product-card__image { aspect-ratio: 1; }
  .product-card__body { padding: 10px 9px 11px; }
  .product-card__category { margin-bottom: 6px; font-size: 6.8px; }
  .product-card h3 { min-height: 34px; margin-bottom: 7px; font-size: 10px; line-height: 1.45; }
  .product-card__pricing { min-height: 37px; gap: 4px; }
  .product-card__price { font-size: 16px; }
  .product-card__old-price { font-size: 8px; }
  .product-card__business { font-size: 8px; }
  .product-card__action { margin-top: 9px; padding-top: 8px; font-size: 8px; }
  .product-card__discount,
  .product-card__soldout { min-height: 20px; padding: 0 7px; font-size: 6.5px; }

  .binku-value { padding: 22px 17px; border-radius: 20px; }
  .binku-value__features { grid-template-columns: 1fr 1fr; gap: 8px; }
  .binku-value__features > div { min-height: 84px; padding: 11px; grid-template-columns: 34px 1fr; gap: 8px; border-radius: 13px; }
  .binku-value__features > div > i { width: 34px; height: 34px; border-radius: 10px; font-size: 12px; }
  .binku-value__features b { font-size: 9px; }
  .binku-value__features small { font-size: 7.5px; }

  .business-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
  .business-card { border-radius: 14px; }
  .business-card__cover { height: 92px; }
  .business-card__cover img { width: 61px; height: 61px; border-width: 4px; }
  .business-card__body { padding: 11px; }
  .business-card h3 { margin-bottom: 5px; font-size: 11px; }
  .business-card p { margin-bottom: 9px; font-size: 7.5px; }
  .business-card__meta { padding-top: 8px; display: grid; gap: 6px; }
  .business-card__meta span,
  .business-card__meta strong { font-size: 7.5px; }

  .seller-cta { margin-bottom: 38px; padding: 24px 20px; grid-template-columns: 1fr; gap: 15px; text-align: left; border-radius: 20px; }
  .seller-cta__icon { width: 50px; height: 50px; border-radius: 15px; font-size: 18px; }
  .seller-cta > a { min-height: 43px; justify-self: stretch; justify-content: center; }
  .market-footer__grid { grid-template-columns: 1fr; gap: 23px; padding: 38px 0 32px; }
  .market-footer__brand { grid-column: auto; }
}


/* =========================================================
   BINKU V3 — POSICIONAMIENTO CRM
========================================================= */

.hero-ad__trust--crm {
  flex-wrap: wrap;
}

.hero-ad__trust--crm span i {
  color: var(--brand);
}

.crm-dashboard,
.sales-mock {
  width: min(430px, 92%);
  border: 1px solid rgba(228, 230, 234, .9);
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 28px 65px rgba(28,31,36,.16);
  overflow: hidden;
}

.crm-dashboard {
  padding: 18px;
  transform: rotate(1.5deg);
}

.crm-dashboard__top,
.sales-mock__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 14px;
  border-bottom: 1px solid #edf0f2;
}

.crm-dashboard__brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 800;
}

.crm-dashboard__brand b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
}

.crm-dashboard__top > i {
  color: #7d858e;
}

.crm-dashboard__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 13px;
}

.crm-dashboard__stats > div {
  min-width: 0;
  padding: 11px;
  border-radius: 14px;
  background: #f7f8f9;
}

.crm-dashboard__stats i {
  color: var(--brand);
  font-size: 13px;
}

.crm-dashboard__stats span,
.crm-dashboard__stats small {
  display: block;
  margin-top: 5px;
  color: #858c94;
  font-size: 7px;
}

.crm-dashboard__stats b {
  display: block;
  margin-top: 4px;
  color: #22272d;
  font-size: 19px;
}

.crm-dashboard__content {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 10px;
  margin-top: 10px;
}

.crm-dashboard__chart,
.crm-dashboard__activity {
  min-height: 118px;
  padding: 12px;
  border: 1px solid #edf0f2;
  border-radius: 14px;
  background: #fff;
}

.crm-dashboard__chart > span,
.crm-dashboard__activity > span {
  color: #434a52;
  font-size: 9px;
  font-weight: 800;
}

.crm-bars {
  height: 70px;
  display: flex;
  align-items: end;
  gap: 7px;
  margin-top: 11px;
}

.crm-bars i {
  flex: 1;
  min-height: 12px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, #b92c45, var(--brand));
  opacity: .88;
}

.crm-dashboard__activity p {
  margin: 10px 0 0;
  color: #777f88;
  font-size: 7px;
  white-space: nowrap;
}

.crm-dashboard__activity p i {
  margin-right: 5px;
  color: var(--brand);
  font-size: 5px;
}

.sales-mock {
  padding: 18px;
  transform: rotate(-1deg);
}

.sales-mock__head span {
  display: block;
  color: #22272d;
  font-size: 17px;
  font-weight: 900;
}

.sales-mock__head small {
  display: block;
  margin-top: 3px;
  color: #8a929b;
  font-size: 9px;
}

.sales-mock__head > b {
  padding: 7px 10px;
  border-radius: 9px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 9px;
}

.sales-mock__tabs {
  display: flex;
  gap: 7px;
  margin: 13px 0;
}

.sales-mock__tabs span {
  padding: 7px 9px;
  border-radius: 9px;
  background: #f5f6f7;
  color: #747c85;
  font-size: 8px;
  font-weight: 700;
}

.sales-mock__tabs span.active {
  background: var(--brand);
  color: #fff;
}

.sales-mock__tabs b {
  margin-left: 3px;
}

.sales-mock__order {
  display: grid;
  grid-template-columns: 35px 1fr auto;
  align-items: center;
  gap: 9px;
  min-height: 55px;
  padding: 9px 0;
  border-top: 1px solid #eff1f3;
}

.sales-mock__order > i {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12px;
}

.sales-mock__order div b {
  display: block;
  font-size: 9px;
}

.sales-mock__order div small {
  display: block;
  margin-top: 3px;
  color: #89919a;
  font-size: 7px;
}

.sales-mock__order > strong {
  padding: 5px 7px;
  border-radius: 999px;
  background: #fff0c7;
  color: #9b6c00;
  font-size: 7px;
}

.sales-mock__order > strong.is-process {
  background: #fff0df;
  color: #b35a00;
}

.sales-mock__order > strong.is-done {
  background: #e8f7ee;
  color: #21844b;
}

.agenda-workers {
  display: flex;
  gap: 7px;
  margin: -4px 0 13px;
  overflow: hidden;
}

.agenda-workers span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 7px;
  border: 1px solid #eceef1;
  border-radius: 999px;
  color: #737b84;
  font-size: 7px;
  white-space: nowrap;
}

.agenda-workers span.active {
  border-color: rgba(159,29,50,.2);
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 800;
}

.agenda-workers i {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf0f2;
  color: #525960;
  font-style: normal;
  font-size: 6px;
}

.agenda-workers .active i {
  background: var(--brand);
  color: #fff;
}

/* BLOQUE CRM */
.crm-intro {
  margin-top: 36px;
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0, rgba(159,29,50,.08), transparent 32%),
    linear-gradient(180deg, #fff, #fbfbfc);
  box-shadow: 0 18px 45px rgba(27,31,36,.07);
}

.crm-intro__heading {
  max-width: 760px;
}

.crm-intro__heading h2 {
  margin: 7px 0 12px;
  color: #1f242a;
  font-size: clamp(29px, 4vw, 43px);
  line-height: 1.05;
  letter-spacing: -1.6px;
}

.crm-intro__heading p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.crm-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.crm-feature {
  padding: 21px;
  border: 1px solid #e8eaed;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.crm-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(159,29,50,.22);
  box-shadow: 0 14px 30px rgba(27,31,36,.08);
}

.crm-feature__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 17px;
}

.crm-feature > span {
  color: var(--brand);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.crm-feature h3 {
  margin: 7px 0 8px;
  color: #252a30;
  font-size: 16px;
  line-height: 1.2;
}

.crm-feature p {
  min-height: 60px;
  margin: 0;
  color: #737b84;
  font-size: 11px;
  line-height: 1.55;
}

.crm-feature__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 16px;
}

.crm-feature__chips b {
  padding: 5px 7px;
  border-radius: 999px;
  background: #f4f5f6;
  color: #707880;
  font-size: 7px;
}

.crm-intro__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid #eaeced;
}

.crm-intro__footer > div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5f6770;
  font-size: 12px;
}

.crm-intro__footer > div i {
  color: var(--brand);
}

.crm-intro__footer > a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 11px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

/* RESPONSIVE CRM */
@media (max-width: 980px) {
  .crm-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .crm-dashboard,
  .sales-mock {
    width: min(330px, 92%);
  }

  .crm-intro {
    margin-top: 22px;
    padding: 26px 20px;
    border-radius: 21px;
  }

  .crm-intro__heading h2 {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .crm-features {
    gap: 9px;
    margin-top: 22px;
  }

  .crm-feature {
    padding: 16px;
  }

  .crm-intro__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .crm-intro__footer > a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .crm-dashboard {
    padding: 12px;
  }

  .crm-dashboard__stats {
    gap: 5px;
  }

  .crm-dashboard__stats > div {
    padding: 8px;
  }

  .crm-dashboard__content {
    grid-template-columns: 1fr;
  }

  .crm-dashboard__activity {
    display: none;
  }

  .sales-mock {
    padding: 13px;
  }

  .crm-features {
    grid-template-columns: 1fr;
  }

  .crm-feature p {
    min-height: 0;
  }
}


/* =========================================================
   BINKU V4 — HERO CRM COMPACTO
========================================================= */
.hero-crm-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 510px;
  margin-top: 18px;
}

.hero-crm-summary > div {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 9px 11px;
  border: 1px solid rgba(159,29,50,.11);
  border-radius: 12px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
}

.hero-crm-summary > div > i {
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 11px;
}

.hero-crm-summary span,
.hero-crm-summary b,
.hero-crm-summary small {
  display: block;
}

.hero-crm-summary b {
  color: #292e34;
  font-size: 9px;
  line-height: 1.1;
}

.hero-crm-summary small {
  margin-top: 3px;
  color: #7b838c;
  font-size: 7px;
  line-height: 1.2;
}

/* CTA superior: ahora funciona como cierre del mensaje de producto */
.hero-ad + .market-container > .final-ad:first-child {
  margin-top: 28px;
  margin-bottom: 38px;
}


@media (max-width: 768px) {
  .hero-crm-summary {
    max-width: 430px;
    margin-top: 14px;
  }

  .hero-ad + .market-container > .final-ad:first-child {
    margin-top: 18px;
    margin-bottom: 28px;
  }
}

@media (max-width: 520px) {
  .hero-crm-summary {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .hero-crm-summary > div {
    padding: 7px 8px;
    gap: 6px;
  }

  .hero-crm-summary > div > i {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
  }

  .hero-crm-summary b {
    font-size: 8px;
  }

  .hero-crm-summary small {
    font-size: 6px;
  }
}

/* =========================================================
   CTA BINKU — VERSIÓN COMPACTA
========================================================= */

.seller-cta {
  margin-top: 28px;
  margin-bottom: 32px;
  padding: 22px 26px;
  gap: 18px;
  border-radius: 20px;
}

.seller-cta__icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  font-size: 19px;
}

.seller-cta .section-kicker {
  font-size: 8px;
  letter-spacing: .12em;
}

.seller-cta h2 {
  margin-top: 4px;
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.05;
}

.seller-cta p {
  max-width: 570px;
  margin-top: 6px;
  font-size: 10px;
  line-height: 1.45;
}

.seller-cta > a {
  min-height: 41px;
  padding: 0 16px;
  border-radius: 11px;
  font-size: 10px;
}


/* =========================
   MÓVIL
========================= */
@media (max-width: 560px) {

  .seller-cta {
    margin-top: 22px;
    margin-bottom: 28px;

    padding: 17px 18px;

    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 8px 12px;

    border-radius: 18px;
  }

  .seller-cta__icon {
    width: 42px;
    height: 42px;

    grid-row: 1;
    grid-column: 1;

    border-radius: 12px;
    font-size: 15px;
  }

  .seller-cta > div:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .seller-cta .section-kicker {
    font-size: 7px;
  }

  .seller-cta h2 {
    margin-top: 3px;
    font-size: 17px;
    line-height: 1.05;
    letter-spacing: -.025em;
  }

  .seller-cta p {
    margin-top: 5px;
    font-size: 9px;
    line-height: 1.4;
  }

  .seller-cta > a {
    grid-column: 1 / -1;

    width: 100%;
    min-height: 38px;

    margin-top: 3px;
    padding: 0 14px;

    border-radius: 11px;

    font-size: 9px;

    justify-self: stretch;
    justify-content: center;
  }
}

/* =========================================================
   BINKU V5 · VITRINA DE EMPRENDEDORES
   El negocio es protagonista; el producto pasa a segundo plano.
========================================================= */

.market-section--businesses{
  padding-top:42px;
}

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

.business-card--showcase{
  border:1px solid #e4e7eb;
  border-radius:20px;
  background:#fff;
  box-shadow:0 7px 24px rgba(23,27,32,.055);
}

.business-card--showcase .business-card__cover--photo{
  position:relative;
  height:178px;
  display:block;
  overflow:hidden;
  background:#eceff2;
}

.business-card--showcase .business-card__hero-image{
  width:100%;
  height:100%;
  object-fit:cover;
  border:0;
  border-radius:0;
  box-shadow:none;
  transition:transform .35s ease;
}

.business-card--showcase:hover .business-card__hero-image{
  transform:scale(1.035);
}

.business-card__binku{
  position:absolute;
  top:12px;
  right:12px;
  z-index:3;
  padding:6px 9px;
  border:1px solid rgba(255,255,255,.32);
  border-radius:9px;
  background:rgba(23,27,32,.72);
  color:#fff;
  font-size:8px;
  font-weight:900;
  letter-spacing:.12em;
  backdrop-filter:blur(8px);
}

.business-card--showcase .business-card__body{
  padding:0 17px 17px;
}

.business-card__identity{
  min-height:61px;
  margin-top:-25px;
  position:relative;
  z-index:4;
  display:flex;
  align-items:flex-end;
  gap:11px;
}

.business-card__identity > img{
  width:58px;
  height:58px;
  flex:0 0 58px;
  object-fit:cover;
  border:4px solid #fff;
  border-radius:17px;
  background:#fff;
  box-shadow:0 8px 20px rgba(23,27,32,.13);
}

.business-card__identity > div{
  min-width:0;
  padding-bottom:3px;
}

.business-card__eyebrow{
  display:block;
  margin-bottom:3px;
  color:#9f1d32;
  font-size:7.5px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.business-card--showcase h3{
  margin:0;
  overflow:hidden;
  color:#171b20;
  font-size:15px;
  font-weight:800;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.business-card--showcase p{
  margin:11px 0 10px;
  color:#747b84;
  font-size:9px;
}

.business-card__tags{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  min-height:25px;
}

.business-card__tags span{
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:6px 8px;
  border-radius:9px;
  background:#f8eef1;
  color:#8f2335;
  font-size:8px;
  font-weight:700;
}

.business-card__visit{
  margin-top:13px;
  padding-top:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top:1px solid #edf0f2;
  color:#171b20;
  font-size:9px;
  font-weight:800;
  text-decoration:none;
}

.business-card__visit i{
  color:#9f1d32;
  transition:transform .18s ease;
}

.business-card__visit:hover i{
  transform:translateX(3px);
}

.discovery-cta{
  margin:12px 0 42px;
  padding:22px 24px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:17px;
  border:1px solid #eadde0;
  border-radius:20px;
  background:linear-gradient(135deg,#fff 0%,#fbf4f6 100%);
}

.discovery-cta__mark{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:15px;
  background:#9f1d32;
  color:#fff;
  font-size:22px;
  font-weight:900;
  box-shadow:0 9px 20px rgba(159,29,50,.18);
}

.discovery-cta h2{
  margin:2px 0 4px;
  color:#171b20;
  font-size:18px;
  line-height:1.15;
}

.discovery-cta p{
  margin:0;
  color:#747b84;
  font-size:10px;
}

.discovery-cta > a{
  padding:11px 15px;
  border-radius:11px;
  background:#171b20;
  color:#fff;
  font-size:9px;
  font-weight:800;
  text-decoration:none;
  white-space:nowrap;
}

.market-section--services{
  padding-top:8px;
}

.market-section--secondary{
  margin-top:20px;
  padding-top:30px;
  border-top:1px solid #e9ecef;
}

.product-grid--secondary{
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:12px;
}

.product-grid--secondary .product-card{
  box-shadow:0 4px 15px rgba(23,27,32,.035);
}

.product-grid--secondary .product-card__image{
  height:150px;
}

@media(max-width:1199px){
  .business-grid--featured{grid-template-columns:repeat(3,minmax(0,1fr))}
  .product-grid--secondary{grid-template-columns:repeat(4,minmax(0,1fr))}
}

@media(max-width:768px){
  .market-section--businesses{padding-top:26px}
  .business-grid--featured{grid-template-columns:repeat(2,minmax(0,1fr));gap:11px}
  .business-card--showcase .business-card__cover--photo{height:132px}
  .business-card__identity > img{width:48px;height:48px;flex-basis:48px;border-radius:14px}
  .business-card__identity{margin-top:-21px;min-height:52px}
  .discovery-cta{grid-template-columns:auto 1fr;margin-bottom:30px}
  .discovery-cta > a{grid-column:1/-1;text-align:center}
  .product-grid--secondary{grid-template-columns:repeat(3,minmax(0,1fr));gap:9px}
}

@media(max-width:520px){
  .business-grid--featured{grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}
  .business-card--showcase .business-card__cover--photo{height:105px}
  .business-card--showcase .business-card__body{padding:0 10px 11px}
  .business-card__identity{gap:7px;margin-top:-18px;min-height:45px}
  .business-card__identity > img{width:41px;height:41px;flex-basis:41px;border-width:3px;border-radius:12px}
  .business-card__eyebrow{font-size:6px}
  .business-card--showcase h3{font-size:10px}
  .business-card--showcase p{margin:8px 0 7px;font-size:7px}
  .business-card__tags{gap:4px}
  .business-card__tags span{padding:5px 6px;font-size:6.5px}
  .business-card__visit{margin-top:9px;padding-top:9px;font-size:7px}
  .business-card__binku{top:7px;right:7px;padding:4px 6px;font-size:6px}
  .discovery-cta{padding:17px;gap:12px}
  .discovery-cta__mark{width:40px;height:40px;font-size:18px}
  .discovery-cta h2{font-size:14px}
  .discovery-cta p{font-size:8px}
  .product-grid--secondary{grid-template-columns:repeat(2,minmax(0,1fr))}
}


/* Escalabilidad de la vitrina de emprendedores */
.business-more-note{
  margin:14px auto 0;
  padding:10px 13px;
  display:flex;
  align-items:center;
  gap:8px;
  width:fit-content;
  max-width:100%;
  border:1px solid #e7e9ed;
  border-radius:11px;
  background:#fff;
  color:#747b84;
  font-size:8.5px;
}

.business-more-note i{
  color:#9f1d32;
}

@media(max-width:520px){
  .business-more-note{
    width:100%;
    font-size:7.5px;
  }
}
