/**
 * Homepage stylesheet bundle.
 *
 * This file preserves the former stylesheet order while reducing the homepage
 * render path to one local CSS request. Edit the source stylesheets, then
 * regenerate this bundle when theme styling changes.
 */
\n/* ===== main.css ===== */\n:root {
  --thayu-green: #1f4e3d;
  --thayu-green-2: #2c6e57;
  --thayu-gold: #f7c35f;
  --thayu-text: #17251f;
  --thayu-muted: #6d7a74;
  --thayu-border: #e9efea;
  --thayu-bg: #ffffff;
  --thayu-soft: #f8faf9;
  --thayu-radius: 22px;
  --thayu-shadow: 8px 8px 18px rgba(31, 78, 61, 0.10), -6px -6px 14px rgba(255, 255, 255, 0.95);
  --thayu-shadow-hover: 12px 12px 26px rgba(31, 78, 61, 0.16), -8px -8px 18px rgba(255, 255, 255, 1);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--thayu-bg);
  color: var(--thayu-text);
  font-family: Quicksand, Inter, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--thayu-green); }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--thayu-green);
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
}
.skip-link:focus { left: 8px; }

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--thayu-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.site-title {
  color: var(--thayu-green);
  font-size: 28px;
  font-weight: 800;
}

.site-tagline {
  margin: 0;
  color: var(--thayu-muted);
  font-size: 13px;
}

.primary-nav ul,
.site-footer ul {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--thayu-border);
  border-radius: 999px;
  background: #fff;
  color: var(--thayu-green);
  cursor: pointer;
  box-shadow: var(--thayu-shadow);
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle-lines { position: relative; }
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
}
.menu-toggle-lines::before { top: -6px; }
.menu-toggle-lines::after { top: 6px; }
.mobile-menu-open .menu-toggle-lines { background: transparent; }
.mobile-menu-open .menu-toggle-lines::before { transform: translateY(6px) rotate(45deg); }
.mobile-menu-open .menu-toggle-lines::after { transform: translateY(-6px) rotate(-45deg); }

.post-button,
.thayu-button,
.thayu-search button,
.submit-listing-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--thayu-green);
  color: #fff;
  font-weight: 700;
  padding: 12px 18px;
  cursor: pointer;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .16);
}

.thayu-button.gold,
.card-link.whatsapp {
  background: var(--thayu-gold);
  color: var(--thayu-text);
}

.hero-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8faf9 100%);
  padding: 48px 0 36px;
}

.hero-inner { text-align: center; }
.hero-inner h1 {
  margin: 0;
  color: var(--thayu-green);
  font-size: clamp(34px, 7vw, 64px);
  letter-spacing: -1.6px;
}
.hero-inner p {
  margin: 8px auto 24px;
  color: var(--thayu-muted);
  font-size: 18px;
}

.thayu-search {
  display: grid;
  grid-template-columns: 1.6fr .8fr .8fr auto;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--thayu-border);
  border-radius: 28px;
  box-shadow: var(--thayu-shadow);
  padding: 12px;
}

.thayu-search input,
.thayu-search select,
.submit-listing-form input,
.submit-listing-form select,
.submit-listing-form textarea {
  width: 100%;
  border: 1px solid var(--thayu-border);
  border-radius: 16px;
  color: var(--thayu-text);
  font: inherit;
  padding: 12px 14px;
  outline: 0;
  background: #fff;
}

.thayu-search input:focus,
.thayu-search select:focus,
.submit-listing-form input:focus,
.submit-listing-form select:focus,
.submit-listing-form textarea:focus {
  border-color: var(--thayu-green);
}

.listings-section,
.submit-section,
.single-layout,
.page-section,
.error-404-section {
  padding: 36px 0;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  color: var(--thayu-green);
}
.section-heading a {
  color: var(--thayu-green);
  font-weight: 700;
}
.stacked {
  align-items: stretch;
  flex-direction: column;
}

.masonry-grid {
  column-count: 4;
  column-gap: 18px;
}

.thayu-card,
.thayu-ad {
  break-inside: avoid;
  background: #fff;
  border: 1px solid var(--thayu-border);
  border-radius: var(--thayu-radius);
  box-shadow: var(--thayu-shadow);
  margin: 0 0 18px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.thayu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--thayu-shadow-hover);
}

.card-image img,
.single-image img {
  width: 100%;
  object-fit: cover;
}

.image-placeholder {
  min-height: 170px;
  display: grid;
  place-items: center;
  background: var(--thayu-soft);
  color: var(--thayu-green);
  font-weight: 800;
}

.card-content,
.single-card,
.submit-card {
  padding: 18px;
}

.card-meta a {
  display: inline-flex;
  margin: 0 6px 8px 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(247, 195, 95, .24);
  color: var(--thayu-green);
  font-size: 12px;
  font-weight: 800;
}

.card-title {
  margin: 0 0 8px;
  color: var(--thayu-green);
  font-size: 19px;
  line-height: 1.25;
}

.card-location,
.single-location {
  color: var(--thayu-muted);
  font-weight: 700;
  margin: 0 0 8px;
}

.card-excerpt p { margin: 0; color: var(--thayu-text); }
.card-actions,
.single-actions,
.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.card-link {
  border-radius: 999px;
  background: var(--thayu-soft);
  color: var(--thayu-green);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}

.thayu-ad {
  display: grid;
  place-items: center;
  min-height: 92px;
  color: var(--thayu-muted);
  background: linear-gradient(135deg, #fff, #f8faf9);
  font-size: 13px;
}
.thayu-ad-header { margin-bottom: 14px; }
.thayu-ad-mobile-sticky { display: none; }

.single-listing,
.page-card,
.error-404-card {
  max-width: 840px;
  margin: 0 auto;
}

.single-image,
.single-card,
.submit-card {
  background: #fff;
  border: 1px solid var(--thayu-border);
  border-radius: var(--thayu-radius);
  box-shadow: var(--thayu-shadow);
  overflow: hidden;
  margin-bottom: 18px;
}

.single-card h1,
.submit-card h1 {
  color: var(--thayu-green);
  margin-top: 0;
}

.page-featured-image {
  margin: 18px 0;
}

.error-404-card {
  text-align: center;
}

.error-code {
  color: var(--thayu-gold);
  font-size: clamp(54px, 12vw, 120px);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 12px;
}

.error-actions {
  justify-content: center;
}

.submit-listing-form {
  display: grid;
  gap: 12px;
}
.submit-listing-form label {
  color: var(--thayu-green);
  font-weight: 800;
}
.submit-listing-form small {
  color: var(--thayu-muted);
  font-size: 13px;
  margin-top: -6px;
}
.thayu-honeypot {
  position: absolute;
  left: -9999px;
  height: 1px;
  overflow: hidden;
}

.notice.error {
  background: #fff2f2;
  border: 1px solid #ffd4d4;
  border-radius: 14px;
  color: #9b1c1c;
  padding: 12px;
}
.pagination-wrap { margin-top: 24px; }

.site-footer {
  border-top: 1px solid var(--thayu-border);
  padding: 26px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--thayu-muted);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

@media (max-width: 980px) {
  .masonry-grid { column-count: 3; }
  .thayu-search { grid-template-columns: 1fr 1fr; }
  .header-inner { flex-wrap: wrap; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 24px, 1180px); }
  .menu-toggle { display: inline-flex; order: 2; }
  .brand { flex: 1; }
  .primary-nav {
    display: none;
    order: 4;
    width: 100%;
    background: #fff;
    border: 1px solid var(--thayu-border);
    border-radius: 20px;
    box-shadow: var(--thayu-shadow);
    padding: 12px;
  }
  .mobile-menu-open .primary-nav { display: block; }
  .primary-nav ul {
    display: grid;
    gap: 4px;
  }
  .primary-nav a {
    display: block;
    border-radius: 14px;
    color: var(--thayu-green);
    font-weight: 800;
    padding: 10px 12px;
  }
  .primary-nav a:hover { background: var(--thayu-soft); }
  .post-button { order: 3; }
  .masonry-grid { column-count: 2; column-gap: 12px; }
  .thayu-search { grid-template-columns: 1fr; border-radius: 22px; }
  .footer-inner { flex-direction: column; }
  .site-footer ul { flex-wrap: wrap; }
  .thayu-ad-mobile-sticky {
    display: grid;
    position: sticky;
    bottom: 0;
    z-index: 80;
    border-radius: 18px 18px 0 0;
    margin: 0;
  }
}

@media (max-width: 460px) {
  .masonry-grid { column-count: 1; }
  .hero-section { padding-top: 32px; }
  .post-button { width: 100%; order: 5; }
}\n\n/* ===== header.css ===== */\n.compact-site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--thayu-border);
  box-shadow: 0 6px 20px rgba(33, 37, 41, .05);
  position: sticky;
  top: 0;
  z-index: 200;
}

.compact-header-row {
  align-items: center;
  display: flex;
  gap: 18px;
  min-height: 74px;
}

.header-logo-wrap {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  min-width: 180px;
}

.custom-logo-link {
  align-items: center;
  display: inline-flex;
}

.custom-logo {
  height: 48px;
  max-height: 48px;
  width: auto;
}

.compact-primary-nav {
  flex: 1;
}

.compact-header-menu {
  align-items: center;
  display: flex;
  gap: 7px;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.compact-header-menu > li > a,
.profile-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: #146c43;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  gap: 6px;
  line-height: 1;
  padding: 10px 12px;
  white-space: nowrap;
}

.compact-header-menu > li > a:hover,
.compact-header-menu > li > a:focus-visible,
.compact-profile-item:focus-within .profile-toggle,
.compact-profile-item:hover .profile-toggle {
  background: #f1f8f4;
  color: #198754;
  outline: none;
}

.guest-signup-link > a {
  background: #198754 !important;
  color: #ffffff !important;
  padding-inline: 16px !important;
}

.guest-signup-link > a:hover,
.guest-signup-link > a:focus-visible {
  background: #146c43 !important;
  color: #ffffff !important;
}

.profile-menu-item {
  position: relative;
}

/* Keep the parent hover area connected to the dropdown. */
.compact-profile-item::after {
  content: "";
  height: 12px;
  left: 0;
  pointer-events: auto;
  position: absolute;
  right: 0;
  top: 100%;
}

.profile-menu-caret {
  font-size: 11px;
  margin-left: 2px;
  transition: transform .2s ease;
}

.compact-profile-item:hover .profile-menu-caret,
.compact-profile-item:focus-within .profile-menu-caret {
  transform: rotate(180deg);
}

.compact-header-menu .compact-profile-dropdown {
  align-items: stretch;
  background: #ffffff;
  border: 1px solid var(--thayu-border);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(33, 37, 41, .14);
  display: none;
  flex-direction: column;
  gap: 3px;
  list-style: none;
  margin: 0;
  min-width: 238px;
  padding: 8px;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: max-content;
  z-index: 300;
}

.compact-header-menu .compact-profile-dropdown::before {
  content: "";
  height: 12px;
  left: 0;
  position: absolute;
  right: 0;
  top: -10px;
}

.compact-header-menu .compact-profile-item:hover .compact-profile-dropdown,
.compact-header-menu .compact-profile-item:focus-within .compact-profile-dropdown,
.compact-header-menu .compact-profile-dropdown:hover {
  display: grid;
}

.compact-profile-dropdown li {
  display: block;
  margin: 0;
  width: 100%;
}

.compact-profile-dropdown a {
  align-items: center;
  border-radius: 12px;
  color: #212529;
  display: flex;
  font-size: 14px;
  font-weight: 800;
  gap: 10px;
  justify-content: flex-start;
  min-height: 40px;
  padding: 9px 12px;
  white-space: nowrap;
  width: 100%;
}

.compact-profile-dropdown a:hover,
.compact-profile-dropdown a:focus-visible {
  background: #f1f8f4;
  color: #146c43;
  outline: none;
}

.compact-profile-dropdown .profile-menu-divider {
  border-top: 1px solid var(--thayu-border);
  margin-top: 4px;
  padding-top: 4px;
}

.compact-profile-dropdown .profile-menu-divider a:hover,
.compact-profile-dropdown .profile-menu-divider a:focus-visible {
  background: #fff1f1;
  color: #b42318;
}

.compact-post-button,
.site-header .compact-post-button,
.site-header a.compact-post-button {
  align-items: center;
  background: #198754 !important;
  border: 1px solid #198754 !important;
  border-radius: 999px !important;
  box-shadow: 0 8px 18px rgba(25, 135, 84, .22);
  color: #ffffff !important;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  line-height: 1;
  min-height: 42px;
  padding: 0 22px !important;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  white-space: nowrap;
}

.compact-post-button:hover,
.compact-post-button:focus-visible,
.site-header a.compact-post-button:hover,
.site-header a.compact-post-button:focus-visible {
  background: #146c43 !important;
  border-color: #146c43 !important;
  box-shadow: 0 12px 24px rgba(20, 108, 67, .28);
  color: #ffffff !important;
  outline: none;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

@media (max-width: 980px) {
  .compact-header-row {
    flex-wrap: wrap;
    gap: 10px;
    padding-block: 10px;
  }

  .header-logo-wrap {
    min-width: 150px;
  }

  .custom-logo {
    height: 42px;
    max-height: 42px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .compact-primary-nav {
    display: none;
    flex: 1 1 100%;
    order: 10;
  }

  .compact-primary-nav.is-open,
  .compact-primary-nav[aria-expanded="true"] {
    display: block;
  }

  .compact-header-menu {
    align-items: stretch;
    display: grid;
    justify-content: stretch;
  }

  .compact-header-menu > li > a,
  .profile-toggle {
    justify-content: space-between;
    width: 100%;
  }

  .guest-signup-link > a {
    justify-content: center;
  }

  .compact-profile-item::after {
    display: none;
  }

  .compact-header-menu .compact-profile-dropdown {
    box-shadow: none;
    margin-top: 6px;
    min-width: 100%;
    position: static;
    width: 100%;
  }

  .compact-header-menu .compact-profile-item:hover .compact-profile-dropdown,
  .compact-header-menu .compact-profile-item:focus-within .compact-profile-dropdown {
    display: grid;
  }

  .compact-post-button {
    margin-left: auto;
  }
}\n\n/* ===== hero.css ===== */\n.marketplace-hero-section {
  background: linear-gradient(135deg, #f7c35f 0%, #f59f00 100%);
  padding: 18px 0;
}

.marketplace-hero-grid {
  align-items: stretch;
  display: grid;
  gap: 16px;
  grid-template-columns: 230px minmax(0, 1fr) 230px;
}

.hero-category-menu,
.hero-side-cards {
  display: grid;
  gap: 10px;
}

.hero-category-menu {
  align-content: start;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(31, 78, 61, .14);
  padding: 14px;
}

.hero-category-heading {
  display: grid;
  gap: 2px;
  margin-bottom: 2px;
  padding: 2px 4px 8px;
}

.hero-category-heading strong {
  color: #146c43;
  font-size: 15px;
  font-weight: 900;
}

.hero-category-heading span {
  color: #6c757d;
  font-size: 11px;
  font-weight: 700;
}

.hero-category-menu a {
  align-items: center;
  border-radius: 13px;
  color: #212529;
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 9px;
  grid-template-columns: 34px minmax(0, 1fr);
  min-height: 44px;
  padding: 7px 9px;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.hero-category-menu a:hover,
.hero-category-menu a:focus-visible {
  background: #146c43;
  color: #ffffff;
  outline: none;
  transform: translateX(2px);
}

.hero-category-icon {
  align-items: center;
  background: #f1f8f4;
  border-radius: 10px;
  display: inline-flex;
  font-size: 16px;
  height: 32px;
  justify-content: center;
  transition: background-color .2s ease;
  width: 32px;
}

.hero-category-menu a:hover .hero-category-icon,
.hero-category-menu a:focus-visible .hero-category-icon {
  background: #f7c35f;
}

.hero-category-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-promo-panel {
  align-items: center;
  background:
    radial-gradient(circle at 88% 14%, rgba(255,255,255,.22), transparent 28%),
    linear-gradient(135deg, #123f2d 0%, #1f6b4b 100%);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(31,78,61,.22);
  color: #ffffff;
  display: flex;
  min-height: 280px;
  overflow: hidden;
  padding: 28px 34px;
  position: relative;
}

.hero-promo-content {
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero-kicker {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 10px;
  padding: 6px 10px;
}

.hero-promo-content h1 {
  font-size: clamp(31px, 4vw, 50px);
  letter-spacing: -1.3px;
  line-height: 1.02;
  margin: 0;
  max-width: 760px;
}

.hero-promo-content > p {
  color: rgba(255,255,255,.84);
  font-size: 15px;
  font-weight: 700;
  margin: 10px 0 18px;
  max-width: 680px;
}

.hero-promo-content .thayu-search,
.hero-promo-content .unified-market-search {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  max-width: 760px;
  padding: 0 !important;
}

.unified-search-field {
  align-items: center;
  background: rgba(7, 35, 25, .42) !important;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 6px;
}

.unified-search-icon { display: none; }

.unified-search-field input {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #ffffff !important;
  font: inherit;
  font-size: 14px;
  min-height: 48px;
  min-width: 0;
  outline: 0;
  padding: 0 18px;
  width: 100%;
}

.unified-search-field input::placeholder {
  color: rgba(255,255,255,.72);
}

.unified-search-field button {
  background: #f7c35f;
  border: 0;
  border-radius: 999px;
  color: #0f5132;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  min-height: 48px;
  min-width: 104px;
  padding: 0 22px;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.unified-search-field button:hover,
.unified-search-field button:focus-visible {
  background: #ffffff;
  color: #146c43;
  outline: none;
  transform: translateY(-1px);
}

.hero-side-cards {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.hero-side-card {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(31,78,61,.1);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(31,78,61,.14);
  color: #212529;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0,1fr) auto;
  min-height: 0;
  padding: 16px;
  transition: background-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

.hero-side-card-content {
  display: grid;
  gap: 4px;
}

.hero-side-card strong {
  color: #146c43;
  font-size: 15px;
  line-height: 1.15;
}

.hero-side-card-content > span {
  color: #6c757d;
  font-size: 11px;
  font-weight: 800;
}

.hero-card-arrow {
  color: #146c43;
  font-size: 19px;
  font-weight: 900;
}

.hero-side-card:hover,
.hero-side-card:focus-visible {
  box-shadow: 0 18px 36px rgba(31,78,61,.2);
  outline: none;
  transform: translateY(-2px);
}

.hero-side-card.whatsapp-card:hover,
.hero-side-card.whatsapp-card:focus-visible {
  background: #25d366;
}

.hero-side-card.premium-card:hover,
.hero-side-card.premium-card:focus-visible {
  background: #f7c35f;
}

.hero-side-card.sell-card {
  background: #198754;
}

.hero-side-card.sell-card strong,
.hero-side-card.sell-card .hero-side-card-content > span,
.hero-side-card.sell-card .hero-card-arrow {
  color: #ffffff;
}

.hero-side-card.sell-card:hover,
.hero-side-card.sell-card:focus-visible {
  background: #146c43;
}

.hero-side-card.whatsapp-card:hover strong,
.hero-side-card.whatsapp-card:hover .hero-side-card-content > span,
.hero-side-card.whatsapp-card:hover .hero-card-arrow,
.hero-side-card.whatsapp-card:focus-visible strong,
.hero-side-card.whatsapp-card:focus-visible .hero-side-card-content > span,
.hero-side-card.whatsapp-card:focus-visible .hero-card-arrow {
  color: #ffffff;
}

body.home .google-auto-placed,
body.home .adsbygoogle-noablate,
body.home > ins.adsbygoogle,
body.home .marketplace-hero-section ins.adsbygoogle,
body.home .marketplace-hero-section [data-ad-client] {
  display: none !important;
}

@media (max-width: 1080px) {
  .marketplace-hero-grid {
    grid-template-columns: 210px minmax(0,1fr);
  }

  .hero-side-cards {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0,1fr));
    grid-template-rows: none;
  }
}

@media (max-width: 760px) {
  .marketplace-hero-section { padding: 12px 0; }

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

  .hero-category-menu {
    order: 2;
  }

  .hero-promo-panel {
    min-height: auto;
    padding: 24px 20px;
  }

  .hero-side-cards {
    grid-column: auto;
    grid-template-columns: 1fr;
    order: 3;
  }
}

@media (max-width: 560px) {
  .unified-search-field {
    border-radius: 18px;
    grid-template-columns: 1fr;
    padding: 8px;
  }

  .unified-search-field input {
    min-height: 46px;
  }

  .unified-search-field button {
    min-height: 46px;
    width: 100%;
  }
}\n\n/* ===== cards.css ===== */\n.recommended-section {
  padding-top: 34px;
}

.uniform-card-grid,
.homepage-card-grid {
  align-items: stretch;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.uniform-card-grid .thayu-card,
.uniform-card-grid .thayu-ad,
.homepage-card-grid .thayu-card,
.homepage-card-grid .thayu-ad {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100%;
}

.homepage-card-grid .thayu-card {
  scroll-margin-top: 110px;
}

.homepage-card-grid .thayu-card:target {
  outline: 4px solid #f7c35f;
  outline-offset: 4px;
}

.uniform-card-grid .card-image,
.homepage-card-grid .card-image {
  aspect-ratio: 4 / 3;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
}

.uniform-card-grid .card-image img,
.homepage-card-grid .card-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.uniform-card-grid .card-content,
.homepage-card-grid .card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}

.uniform-card-grid .card-title,
.homepage-card-grid .card-title {
  display: -webkit-box;
  font-size: 16px;
  line-height: 1.25;
  margin: 10px 0;
  min-height: 42px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.uniform-card-grid .card-excerpt,
.homepage-card-grid .card-excerpt {
  color: var(--thayu-text);
  display: -webkit-box;
  flex: 1;
  font-size: 13px;
  line-height: 1.5;
  min-height: 58px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.uniform-card-grid .card-actions,
.homepage-card-grid .card-actions {
  margin-top: auto;
}

.thayu-card.is-featured {
  position: relative;
  border: 1px solid rgba(201, 154, 50, .72);
  box-shadow: 0 12px 30px rgba(5, 16, 41, .16), 0 0 0 4px rgba(201, 154, 50, .08);
}

.featured-verified-badge {
  background: transparent;
  filter: drop-shadow(0 3px 6px rgba(5, 16, 41, .28));
  height: 46px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 46px;
  z-index: 5;
}

.featured-verified-badge img {
  display: block;
  height: 100%;
  width: 100%;
}

.related-listings {
  margin-top: 34px;
}

.related-grid {
  column-count: 3;
}

.empty-state-card {
  background: #ffffff;
  border: 1px solid var(--thayu-border);
  border-radius: 24px;
  box-shadow: var(--thayu-shadow);
  margin: 18px auto;
  max-width: 680px;
  padding: 28px;
  text-align: center;
}

.empty-state-card h2 {
  color: var(--thayu-green);
  margin: 0 0 8px;
}

.empty-state-card p {
  color: var(--thayu-muted);
  margin: 0 auto 18px;
  max-width: 440px;
}

.card-category {
  align-items: center;
  align-self: flex-start;
  border-radius: 999px;
  background: rgba(25, 135, 84, .08);
  color: var(--thayu-green);
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  padding: 7px 10px;
}

.card-price {
  align-items: center;
  background: rgba(25, 135, 84, .08);
  border: 1px solid rgba(25, 135, 84, .14);
  border-radius: 14px;
  color: var(--thayu-green);
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  font-weight: 900;
  gap: 8px;
  margin: 0 0 10px;
  padding: 9px 11px;
}

.card-price span {
  background: #ffffff;
  border-radius: 999px;
  color: var(--thayu-muted);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 8px;
}

.card-location-line {
  color: var(--thayu-muted);
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 10px;
}

.card-link.whatsapp,
.thayu-button.whatsapp-cta {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
}

.card-link.whatsapp:hover,
.thayu-button.whatsapp-cta:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #ffffff;
}

.wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  height: 18px;
  margin-right: 6px;
  width: 18px;
}

.card-actions-primary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.card-actions-primary .card-link {
  justify-content: center;
  text-align: center;
}

.load-more-wrap {
  align-items: center;
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 28px 0 8px;
}

.load-more-button {
  background: var(--thayu-green);
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 13px 22px;
}

.load-more-button:disabled {
  cursor: wait;
  opacity: .72;
}

.load-more-status {
  color: var(--thayu-muted);
  font-size: 13px;
  font-weight: 800;
}

.featured-payment-note,
.package-options {
  background: var(--thayu-soft);
  border: 1px solid var(--thayu-border);
  border-radius: 18px;
  padding: 14px;
}

.featured-payment-note {
  border-color: rgba(31, 78, 61, .28);
  margin: 16px 0;
}

.featured-payment-note strong,
.package-options legend {
  color: var(--thayu-green);
  font-weight: 800;
}

.featured-payment-note p {
  color: var(--thayu-muted);
  margin: 6px 0 0;
}

.package-options {
  display: grid;
  gap: 8px;
}

.package-options label,
.inline-check {
  color: var(--thayu-text);
  font-weight: 700;
}

.inline-check {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  margin: 8px 0 12px;
}

.inline-check input {
  width: auto;
}

.thayu-image-preview {
  background: var(--thayu-soft);
  border: 1px dashed rgba(31, 78, 61, .25);
  border-radius: 18px;
  margin: 10px 0 16px;
  padding: 10px;
}

.thayu-image-preview img {
  border-radius: 14px;
  display: block;
  height: auto;
  max-height: 260px;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 1180px) {
  .uniform-card-grid,
  .homepage-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .uniform-card-grid,
  .homepage-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .card-actions-primary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .uniform-card-grid,
  .homepage-card-grid {
    grid-template-columns: 1fr;
  }

  .related-grid {
    column-count: 1;
  }

  .empty-state-card {
    padding: 22px 16px;
  }
}


/* Keep action buttons compact and their icons readable despite global link styles. */
.card-actions-primary .card-link.whatsapp,
.thayu-button.whatsapp-cta {
  align-items: center !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  justify-content: center !important;
  line-height: 20px !important;
  min-height: 44px !important;
  padding: 10px 16px !important;
}

.card-link.whatsapp .wa-icon,
.thayu-button.whatsapp-cta .wa-icon {
  display: block !important;
  flex: 0 0 20px !important;
  height: 20px !important;
  margin: 0 8px 0 0 !important;
  max-height: 20px !important;
  max-width: 20px !important;
  min-height: 20px !important;
  min-width: 20px !important;
  width: 20px !important;
}

/* In-feed sponsored content uses the same scrolling-card language as the native app. */
.homepage-card-grid .thayu-sponsored-card {
  align-self: stretch;
  background: #ffffff;
  border: 1px solid rgba(13, 81, 58, .16);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(13, 81, 58, .08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  padding: 16px;
}

.thayu-sponsored-card__header {
  align-items: center;
  display: flex;
  gap: 10px;
}

.thayu-sponsored-card__avatar {
  align-items: center;
  background: #0d513a;
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  flex: 0 0 38px;
  font-size: 12px;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.thayu-sponsored-card__header strong,
.thayu-sponsored-card__header small {
  display: block;
}

.thayu-sponsored-card__header strong {
  color: #18352b;
  font-size: 14px;
}

.thayu-sponsored-card__header small {
  color: #66756f;
  font-size: 12px;
  margin-top: 2px;
}

.thayu-sponsored-card__more {
  color: #66756f;
  font-weight: 900;
  letter-spacing: 1px;
  margin-left: auto;
}

.thayu-sponsored-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: 18px;
}

.thayu-sponsored-card__label {
  color: #087443;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.thayu-sponsored-card__body h3 {
  color: #17352a;
  font-size: 19px;
  line-height: 1.2;
  margin: 8px 0;
}

.thayu-sponsored-card__body p {
  color: #52635d;
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 18px;
}

.thayu-sponsored-card__cta {
  align-items: center;
  background: #087443;
  border-radius: 999px;
  color: #ffffff !important;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  margin-top: auto;
  min-height: 42px;
  padding: 10px 16px;
  text-decoration: none !important;
}

.thayu-sponsored-card__cta:hover,
.thayu-sponsored-card__cta:focus-visible {
  background: #0d513a;
}

.thayu-sponsored-card__network-ad {
  padding-top: 14px;
}

/* Clearer editorial type hierarchy for marketplace cards. */
.uniform-card-grid .card-content,
.homepage-card-grid .card-content {
  padding: 18px;
}

.uniform-card-grid .card-title,
.homepage-card-grid .card-title {
  color: #102a22;
  font-size: clamp(18px, 1.35vw, 21px);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.28;
  margin: 11px 0 12px;
  min-height: 46px;
}

.uniform-card-grid .card-excerpt,
.homepage-card-grid .card-excerpt {
  color: #314a40;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  min-height: 72px;
}

.uniform-card-grid .card-location-line,
.homepage-card-grid .card-location-line {
  color: #315447;
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 760px) {
  .uniform-card-grid .card-content,
  .homepage-card-grid .card-content {
    padding: 16px;
  }

  .uniform-card-grid .card-title,
  .homepage-card-grid .card-title {
    font-size: 18px;
  }

  .uniform-card-grid .card-excerpt,
  .homepage-card-grid .card-excerpt {
    font-size: 14px;
    min-height: 0;
  }
}

/* Sponsored feed posts should remain compact instead of matching image-card height. */
.homepage-card-grid .thayu-sponsored-card {
  align-self: start !important;
  box-sizing: border-box;
  min-height: 0 !important;
  padding: 15px !important;
}

.thayu-sponsored-card__body {
  flex: initial !important;
  padding-top: 13px !important;
}

.thayu-sponsored-card__body h3 {
  font-size: 18px !important;
  margin: 7px 0 !important;
}

.thayu-sponsored-card__body p {
  font-size: 14px !important;
  margin: 0 0 14px !important;
}

.thayu-sponsored-card__cta {
  background: #087443 !important;
  color: #ffffff !important;
  display: inline-flex !important;
  margin-top: 0 !important;
  width: fit-content;
}

@media (max-width: 760px) {
  .homepage-card-grid .thayu-sponsored-card {
    margin-bottom: 0;
    width: 100%;
  }
}

/* Three compact premium options on the web, mirrored by one action in the app. */
.premium-services-section {
  padding-top: 30px;
}

.premium-services-section .section-heading p {
  color: #52635d;
  margin: 6px 0 0;
}

.premium-services-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.premium-service-card {
  background: #ffffff;
  border: 1px solid rgba(13, 81, 58, .16);
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(13, 81, 58, .08);
  color: #18352b !important;
  display: flex;
  flex-direction: column;
  min-height: 176px;
  padding: 18px;
  text-decoration: none !important;
}

.premium-service-card:hover,
.premium-service-card:focus-visible {
  border-color: #087443;
  box-shadow: 0 12px 26px rgba(13, 81, 58, .16);
  transform: translateY(-2px);
}

.premium-service-card__icon {
  align-items: center;
  background: #edf7f1;
  border-radius: 999px;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  margin-bottom: 12px;
  width: 38px;
}

.premium-service-card strong {
  font-size: 17px;
  line-height: 1.25;
}

.premium-service-card span:not(.premium-service-card__icon) {
  color: #52635d;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 7px;
}

.premium-service-card b {
  color: #087443;
  font-size: 13px;
  margin-top: auto;
  padding-top: 14px;
}

@media (max-width: 760px) {
  .premium-services-row {
    grid-template-columns: 1fr;
  }
}

/* Preserve full listing artwork and give seller contact a premium tactile finish. */
.homepage-card-grid .card-image,
.uniform-card-grid .card-image,
.homepage-card-grid .card-image-wrap,
.uniform-card-grid .card-image-wrap {
  background: #f7f9fc !important;
}

.homepage-card-grid .card-image img,
.uniform-card-grid .card-image img {
  object-fit: contain !important;
  object-position: center !important;
}

.card-actions-primary .card-link.whatsapp {
  align-items: center !important;
  background: linear-gradient(145deg, #36dc78 0%, #1fc863 54%, #128c4d 100%) !important;
  border: 1px solid rgba(255, 255, 255, .52) !important;
  border-bottom-color: #0b713d !important;
  border-radius: 999px !important;
  box-shadow:
    0 7px 0 #0b713d,
    0 11px 18px rgba(12, 119, 65, .28),
    inset 0 1px 0 rgba(255, 255, 255, .50) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  letter-spacing: -.01em;
  min-height: 46px !important;
  padding: 11px 18px !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .16);
  transform: translateY(-2px);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.card-actions-primary .card-link.whatsapp .wa-icon {
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, .18));
  height: 22px !important;
  margin-right: 9px !important;
  width: 22px !important;
}

.card-actions-primary .card-link.whatsapp:hover,
.card-actions-primary .card-link.whatsapp:focus-visible {
  background: linear-gradient(145deg, #48e487 0%, #22cf67 52%, #11914e 100%) !important;
  box-shadow:
    0 8px 0 #0b713d,
    0 14px 22px rgba(12, 119, 65, .32),
    inset 0 1px 0 rgba(255, 255, 255, .58) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
}

.card-actions-primary .card-link.whatsapp:active {
  box-shadow: 0 3px 0 #0b713d, inset 0 2px 4px rgba(0, 0, 0, .14) !important;
  transform: translateY(2px);
}

/* Final compact WhatsApp control and original-image source for listing cards. */
.card-actions-primary .card-link.whatsapp {
  box-sizing: border-box !important;
  height: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  padding: 0 16px !important;
  border-radius: 21px !important;
  background: linear-gradient(180deg, #34d979 0%, #20c866 78%, #16ad54 100%) !important;
  border: 1px solid rgba(255, 255, 255, .55) !important;
  border-bottom: 4px solid #0d7c3d !important;
  box-shadow: 0 5px 0 #0a6531, 0 9px 14px rgba(8, 98, 47, .23), inset 0 1px 0 rgba(255, 255, 255, .55) !important;
  transform: translateY(-3px) !important;
}

.card-actions-primary .card-link.whatsapp .wa-icon {
  box-sizing: border-box !important;
  flex: 0 0 20px !important;
  height: 20px !important;
  max-height: 20px !important;
  max-width: 20px !important;
  min-height: 20px !important;
  min-width: 20px !important;
  width: 20px !important;
}

.card-actions-primary .card-link.whatsapp:hover,
.card-actions-primary .card-link.whatsapp:focus-visible {
  filter: brightness(1.05);
  box-shadow: 0 6px 0 #0a6531, 0 11px 17px rgba(8, 98, 47, .28), inset 0 1px 0 rgba(255, 255, 255, .60) !important;
  transform: translateY(-4px) !important;
}

.card-actions-primary .card-link.whatsapp:active {
  border-bottom-width: 2px !important;
  box-shadow: 0 2px 0 #0a6531, inset 0 2px 5px rgba(0, 0, 0, .16) !important;
  transform: translateY(2px) !important;
}

/* Supplied gold WhatsApp artwork: compact, unmasked and accessible as the contact action. */
.card-actions-primary .card-link.whatsapp {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

.card-actions-primary .card-link.whatsapp:hover,
.card-actions-primary .card-link.whatsapp:focus-visible,
.card-actions-primary .card-link.whatsapp:active {
  background: transparent !important;
  box-shadow: none !important;
  transform: translateY(-1px) !important;
}

.card-actions-primary .whatsapp-gold-button-image {
  display: block;
  height: 38px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

@media (max-width: 760px) {
  .card-actions-primary .whatsapp-gold-button-image {
    height: 36px;
  }
}\n\n/* ===== categories.css ===== */\n.category-section {
  padding: 28px 0 12px;
}

.category-section .section-heading p {
  color: var(--thayu-muted);
  margin: 4px 0 0;
}

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

.category-card {
  background: #ffffff;
  border: 1px solid var(--thayu-border);
  border-radius: 20px;
  box-shadow: var(--thayu-shadow);
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 18px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.category-card:hover {
  border-color: rgba(31, 78, 61, .28);
  box-shadow: var(--thayu-shadow-hover);
  transform: translateY(-3px);
}

.category-card strong {
  color: var(--thayu-green);
  font-size: 16px;
  line-height: 1.2;
}

.category-card span {
  color: var(--thayu-muted);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}\n\n/* ===== footer.css ===== */\n.rich-footer {
  background: #146c43;
  border-top: 0;
  color: rgba(255, 255, 255, .84);
  margin-top: 42px;
  padding: 48px 0 0;
}

.footer-widget-grid {
  display: grid;
  gap: 30px;
}

.footer-widget-grid-1 { grid-template-columns: minmax(0, 1fr); }
.footer-widget-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.footer-widget-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.footer-widget-grid-4,
.footer-widget-grid-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.footer-widget-column { min-width: 0; }

.footer-widget,
.footer-widget p,
.footer-widget li,
.footer-widget span {
  color: rgba(255, 255, 255, .84);
}

.footer-widget-title,
.footer-widget h2,
.footer-widget h3,
.footer-widget strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 14px;
}

.footer-widget p { margin: 0 0 14px; }

#site-footer .footer-widget .footer-contact-details {
  margin-bottom: 7px;
}

.footer-widget ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-widget a {
  color: #ffffff;
  font-weight: 800;
}

.footer-widget a:hover { color: #f7c35f; }

#site-footer .footer-widget .footer-action-button {
  box-sizing: border-box;
  flex: 0 0 140px;
  height: 40px;
  max-width: 100%;
  width: 140px;
}

#site-footer .footer-widget .footer-whatsapp-contact {
  align-items: center;
  background: #25d366 !important;
  border: 1px solid #25d366 !important;
  border-radius: 10px;
  box-shadow: none !important;
  color: #ffffff !important;
  display: inline-flex;
  gap: 9px;
  justify-content: center;
  margin-top: 8px;
  padding: 0 14px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

#site-footer .footer-widget .footer-whatsapp-contact svg {
  display: block;
  fill: #ffffff !important;
  flex: 0 0 22px;
  height: 22px;
  width: 22px;
}

#site-footer .footer-widget .footer-whatsapp-contact .footer-whatsapp-contact-label {
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

#site-footer .footer-widget .footer-whatsapp-contact:hover {
  background: #1fbd59 !important;
  border-color: #1fbd59 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

#site-footer .footer-widget .footer-whatsapp-contact:focus-visible {
  outline: 2px solid #f7c35f;
  outline-offset: 3px;
}

.footer-logo { margin-bottom: 14px; }

.footer-logo .custom-logo-link {
  background: #ffffff;
  border-radius: 16px;
  display: inline-flex;
  padding: 8px 10px;
}

.footer-logo .custom-logo {
  height: 48px;
  max-height: 48px;
  width: auto;
}

.footer-play-store {
  align-items: center;
  background: #0b0b0d !important;
  border: 1px solid rgba(255, 255, 255, .72) !important;
  border-radius: 10px;
  box-shadow: none;
  color: #ffffff !important;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  margin-top: 8px;
  padding: 0 10px;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

#site-footer .footer-widget .footer-play-store-icon {
  display: block;
  flex: 0 0 22px;
  height: 22px;
  width: 22px;
}

#site-footer .footer-widget .footer-play-store-label {
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

#site-footer .footer-widget .footer-play-store:hover {
  background: #17191e !important;
  border-color: #f7c35f !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

#site-footer .footer-widget .footer-play-store:focus-visible {
  outline: 2px solid #f7c35f;
  outline-offset: 3px;
}

.footer-widget input,
.footer-widget textarea,
.footer-widget select {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: #ffffff;
  font: inherit;
  padding: 12px 14px;
  width: 100%;
}

.footer-widget input::placeholder { color: rgba(255, 255, 255, .62); }

.footer-widget button,
.footer-widget input[type="submit"] {
  background: #28a745;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 12px 16px;
}

.footer-bottom-bar {
  background: #0f5132;
  border-top: 1px solid rgba(255, 255, 255, .14);
  margin-top: 38px;
}

.footer-bottom-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding: 16px 0;
}

.footer-bottom-inner p {
  color: rgba(255, 255, 255, .78);
  margin: 0;
}

.footer-menu ul,
.footer-social-share {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu a,
.footer-social-share a,
.back-to-top {
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.footer-social-share a,
.back-to-top {
  align-items: center;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
}

.footer-social-share a {
  height: 40px;
  padding: 0;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
  width: 40px;
}

.footer-social-share a:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .34);
  transform: translateY(-2px);
}

.footer-social-share svg {
  display: block;
  fill: currentColor;
  height: 20px;
  stroke: none;
  width: 20px;
}

.footer-social-facebook:hover { color: #1877f2 !important; background: #ffffff !important; }
.footer-social-x:hover,
.footer-social-twitter:hover { color: #000000 !important; background: #ffffff !important; }
.footer-social-instagram:hover { color: #e4405f !important; background: #ffffff !important; }
.footer-social-linkedin:hover { color: #0a66c2 !important; background: #ffffff !important; }
.footer-social-youtube:hover { color: #ff0000 !important; background: #ffffff !important; }
.footer-social-tiktok:hover { color: #000000 !important; background: #ffffff !important; }
.footer-social-whatsapp:hover { color: #25d366 !important; background: #ffffff !important; }

.footer-social-share a:hover,
.back-to-top:hover,
.footer-menu a:hover { color: #f7c35f; }

.back-to-top {
  height: 34px;
  padding: 0;
  width: 34px;
}

@media (max-width: 980px) {
  .footer-widget-grid-3,
  .footer-widget-grid-4,
  .footer-widget-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .rich-footer { padding-top: 34px; }

  .footer-widget-grid-1,
  .footer-widget-grid-2,
  .footer-widget-grid-3,
  .footer-widget-grid-4,
  .footer-widget-grid-four {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}\n\n/* ===== search.css ===== */\n.featured-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border: 1px solid var(--thayu-border);
  border-radius: 999px;
  background: var(--thayu-soft);
  color: var(--thayu-green);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  padding: 10px 14px;
  white-space: nowrap;
}

.featured-filter input {
  width: auto;
  accent-color: var(--thayu-green);
  margin: 0;
}

.clear-filters {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--thayu-border);
  border-radius: 999px;
  background: #fff;
  color: var(--thayu-muted);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 14px;
  white-space: nowrap;
}

.clear-filters:hover {
  border-color: var(--thayu-green);
  color: var(--thayu-green);
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--thayu-muted);
  font-size: 13px;
  font-weight: 700;
}

.active-filters strong {
  display: inline-flex;
  border: 1px solid rgba(31, 78, 61, .16);
  border-radius: 999px;
  background: rgba(31, 78, 61, .06);
  color: var(--thayu-green);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 8px 10px;
}

.results-count {
  color: var(--thayu-muted);
  font-size: 14px;
  font-weight: 800;
  margin: 0;
}

.thayu-google-search {
  background: #ffffff;
  border: 1px solid var(--thayu-border);
  border-radius: 28px;
  box-shadow: var(--thayu-shadow);
  padding: 12px;
  text-align: left;
}

.thayu-google-search table,
.thayu-google-search tbody,
.thayu-google-search tr,
.thayu-google-search td {
  border: 0;
}

.thayu-search:has(.featured-filter) {
  grid-template-columns: 1.5fr .85fr .85fr .7fr auto auto auto;
}

@media (max-width: 1180px) {
  .thayu-search:has(.featured-filter) {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .featured-filter,
  .clear-filters {
    justify-content: flex-start;
    border-radius: 16px;
    width: 100%;
  }

  .thayu-search:has(.featured-filter) {
    grid-template-columns: 1fr;
  }
}\n\n/* ===== polish.css ===== */\n:root {
  --thayu-green: #198754;
  --thayu-green-2: #146c43;
  --thayu-gold: #f7c35f;
  --thayu-text: #212529;
  --thayu-muted: #6c757d;
  --thayu-border: #e9ecef;
  --thayu-bg: #f8f9fa;
  --thayu-soft: #f1f8f4;
  --thayu-success: #28a745;
  --thayu-link: #146c43;
  --thayu-radius: 18px;
  --thayu-shadow: 0 8px 22px rgba(33, 37, 41, .06);
  --thayu-shadow-hover: 0 14px 34px rgba(33, 37, 41, .12);
}

body {
  background: #f8f9fa;
  color: #212529;
}

.site-main {
  background: #f8f9fa;
}

.site-header,
.thayu-search,
.thayu-card,
.thayu-ad,
.single-image,
.single-card,
.submit-card,
.dashboard-panel,
.seller-dashboard-sidebar,
.dashboard-stat-card,
.shop-hero-card,
.shop-stats-grid > div,
.shop-info-strip,
.post-lightbox-panel {
  background: #ffffff;
}

.site-header {
  border-bottom: 1px solid #e9ecef;
  box-shadow: 0 4px 18px rgba(33, 37, 41, .04);
}

.section-heading h1,
.section-heading h2,
.card-title,
.card-title-button,
.single-card h1,
.submit-card h1,
.shop-main-info h1,
.dashboard-panel-heading h2 {
  color: #212529;
}

.section-heading h2 {
  font-size: clamp(24px, 4vw, 34px);
  letter-spacing: -.7px;
}

.section-heading a,
a:hover,
.card-title-button:hover {
  color: #146c43;
}

.thayu-card {
  border: 1px solid #e9ecef;
  box-shadow: 0 8px 22px rgba(33, 37, 41, .06);
}

.trending-section .thayu-card {
  box-shadow: 0 8px 22px rgba(108, 117, 125, .12);
}

.recommended-section .thayu-card,
.thayu-card.is-featured {
  border: 1px solid rgba(25, 135, 84, .22);
  box-shadow: 0 12px 30px rgba(25, 135, 84, .16), 0 0 0 4px rgba(25, 135, 84, .05);
}

.thayu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(33, 37, 41, .12);
}

.recommended-section .thayu-card:hover,
.thayu-card.is-featured:hover {
  box-shadow: 0 18px 40px rgba(25, 135, 84, .22), 0 0 0 5px rgba(25, 135, 84, .07);
}

.card-image,
.card-title-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: block;
  font: inherit;
  padding: 0;
  text-align: left;
  width: 100%;
}

.card-image {
  overflow: hidden;
}

.card-image img {
  transition: transform .28s ease;
}

.thayu-card:hover .card-image img {
  transform: scale(1.035);
}

.card-title-button {
  color: inherit;
  font-weight: 900;
  line-height: 1.22;
}

.card-excerpt p,
.card-excerpt,
.shop-main-info p,
.post-lightbox-location,
.post-lightbox-excerpt {
  color: #212529;
}

.card-date,
.card-stats span,
.shop-stats-grid span,
.dashboard-stat-card span,
.seller-dashboard-profile span {
  color: #6c757d;
}

.card-category,
.shop-kicker,
.dashboard-panel-heading span {
  background: #f1f8f4;
  color: #146c43;
}

.card-price,
.post-lightbox-price,
.dashboard-stat-card strong,
.shop-stats-grid strong {
  color: #198754;
}

.card-link {
  background: #f1f8f4;
  border: 1px solid #e9ecef;
  color: #146c43;
  cursor: pointer;
}

.card-link:hover {
  background: #ffffff;
  border-color: rgba(25, 135, 84, .28);
}

.card-link.whatsapp,
.thayu-button.whatsapp-cta {
  background: #28a745;
  border-color: #28a745;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(40, 167, 69, .22);
}

.card-link[href^="tel:"] {
  background: #f1f8f4;
  color: #212529;
}

.post-button,
.thayu-button,
.thayu-search button,
.submit-listing-form button {
  background: #198754;
  color: #ffffff;
}

.thayu-button.gold {
  background: #28a745;
  color: #ffffff;
}

.featured-ribbon {
  background: linear-gradient(135deg, #198754, #146c43);
  box-shadow: 0 10px 20px rgba(25, 135, 84, .25);
}

.hero-category-menu a:hover,
.header-menu > li > a:hover,
.profile-menu-item:focus-within .profile-toggle,
.profile-menu-item:hover .profile-toggle,
.profile-dropdown a:hover,
.seller-dashboard-sidebar nav a:hover,
.seller-dashboard-sidebar nav a.active,
.dashboard-action-grid a,
.my-post-actions a {
  background: #f1f8f4;
}

.thayu-search input,
.thayu-search select,
.submit-listing-form input,
.submit-listing-form select,
.submit-listing-form textarea {
  border-color: #e9ecef;
  color: #212529;
}

.thayu-search input:focus,
.thayu-search select:focus,
.submit-listing-form input:focus,
.submit-listing-form select:focus,
.submit-listing-form textarea:focus {
  border-color: #198754;
  box-shadow: 0 0 0 3px rgba(25, 135, 84, .08);
}

.post-lightbox-open {
  overflow: hidden;
}

.post-lightbox[hidden] {
  display: none;
}

.post-lightbox {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 20px;
  position: fixed;
  z-index: 9999;
}

.post-lightbox-backdrop {
  background: rgba(33, 37, 41, .64);
  backdrop-filter: blur(7px);
  inset: 0;
  position: absolute;
}

.post-lightbox-panel {
  border: 1px solid rgba(233, 236, 239, .95);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(33, 37, 41, .28);
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 1fr);
  max-height: min(720px, calc(100vh - 40px));
  max-width: 980px;
  overflow: hidden;
  position: relative;
  width: min(100%, 980px);
  z-index: 1;
}

.post-lightbox-close {
  align-items: center;
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(33, 37, 41, .12);
  color: #212529;
  cursor: pointer;
  display: inline-flex;
  font-size: 28px;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 42px;
  z-index: 2;
}

.post-lightbox-image {
  background: #f8f9fa;
  min-height: 420px;
}

.post-lightbox-image img,
.post-lightbox-image .image-placeholder {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  width: 100%;
}

.post-lightbox-content {
  display: grid;
  gap: 10px;
  overflow-y: auto;
  padding: 34px;
}

.post-lightbox-category {
  background: #f1f8f4;
  border-radius: 999px;
  color: #146c43;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  justify-self: start;
  padding: 7px 11px;
}

.post-lightbox-content h2 {
  color: #212529;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.08;
  margin: 0;
}

.post-lightbox-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

@media (max-width: 720px) {
  .post-lightbox-panel {
    grid-template-columns: 1fr;
  }

  .post-lightbox-image,
  .post-lightbox-image img,
  .post-lightbox-image .image-placeholder {
    min-height: 230px;
  }

  .post-lightbox-content {
    padding: 22px;
  }
}\n\n/* ===== card-overrides.css ===== */\n.homepage-card-grid,
.uniform-card-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px;
}

.homepage-card-grid .thayu-card,
.uniform-card-grid .thayu-card {
  height: 100%;
}

.is-clickable-card {
  cursor: pointer;
  position: relative;
}

.card-overlay-link {
  border-radius: inherit;
  inset: 0;
  position: absolute;
  z-index: 1;
}

.card-overlay-link:focus-visible {
  box-shadow: 0 0 0 4px rgba(31, 78, 61, .18), var(--thayu-shadow-hover);
  outline: 0;
}

.is-clickable-card .card-image-controls,
.is-clickable-card .card-category,
.is-clickable-card .card-actions {
  position: relative;
  z-index: 2;
}

.card-image {
  position: relative;
}

.card-image-price {
  align-items: center;
  background: #198754;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(20, 108, 67, .28);
  color: #ffffff;
  display: inline-flex;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 900;
  gap: 6px;
  line-height: 1;
  max-width: calc(100% - 76px);
  padding: 10px 13px;
  position: absolute;
  right: 12px;
  text-align: right;
  top: 12px;
  transition: transform .22s ease, box-shadow .22s ease;
  z-index: 4;
}

.thayu-card.is-featured .card-image-price {
  max-width: calc(100% - 134px);
  right: 64px;
}

.card-image-price small {
  background: rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #ffffff;
  font-size: 10px;
  padding: 4px 6px;
}

.card-image-price.featured-price {
  background: #d4a017;
  box-shadow: 0 8px 20px rgba(154, 111, 0, .30);
}

.thayu-card:hover .card-image-price {
  box-shadow: 0 11px 25px rgba(20, 108, 67, .34);
  transform: scale(1.035);
}

.thayu-card.is-featured:hover .card-image-price {
  box-shadow: 0 11px 25px rgba(154, 111, 0, .36);
}

.card-actions-primary {
  align-items: stretch;
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.card-actions-primary .card-link {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  gap: 7px;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  text-align: center;
}

.card-actions-primary .card-link:only-child {
  justify-self: stretch;
  min-width: 0;
}

.card-link.whatsapp {
  background: #25d366;
  border: 1px solid #25d366;
  color: #ffffff;
}

.card-link.whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
}

.wa-icon {
  color: #ffffff;
  font-size: 10px;
  margin-right: 7px;
}

@media (max-width: 1199px) {
  .homepage-card-grid,
  .uniform-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  .homepage-card-grid,
  .uniform-card-grid {
    grid-template-columns: 1fr !important;
  }

  .card-image-price {
    font-size: 14px;
    max-width: calc(100% - 72px);
    padding: 9px 12px;
  }

  .thayu-card.is-featured .card-image-price {
    max-width: calc(100% - 118px);
    right: 56px;
  }

  .featured-verified-badge {
    height: 40px;
    right: 10px;
    top: 10px;
    width: 40px;
  }
}


/* Render only the supplied WhatsApp artwork — no inherited green control behind it. */
.card-actions-primary .card-link.whatsapp,
.card-actions-primary .card-link.whatsapp:only-child {
  align-items: unset !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: inline-block !important;
  justify-self: start !important;
  line-height: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  transform: none !important;
  width: auto !important;
}

.card-actions-primary .card-link.whatsapp:hover,
.card-actions-primary .card-link.whatsapp:focus-visible,
.card-actions-primary .card-link.whatsapp:active {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.card-actions-primary .card-link.whatsapp .whatsapp-gold-button-image {
  display: block !important;
  height: 38px !important;
  max-width: none !important;
  object-fit: contain !important;
  width: auto !important;
}


/* Marketplace card refinement: sharper hierarchy, dependable contrast, and balanced media framing. */
.homepage-card-grid .thayu-card,
.uniform-card-grid .thayu-card {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%) !important;
  border: 1px solid rgba(5, 16, 41, .12) !important;
  border-radius: 24px !important;
  box-shadow: 0 14px 30px rgba(5, 16, 41, .11), inset 0 1px 0 rgba(255, 255, 255, .95) !important;
  overflow: hidden;
}

.homepage-card-grid .thayu-card:hover,
.homepage-card-grid .thayu-card:focus-within,
.uniform-card-grid .thayu-card:hover,
.uniform-card-grid .thayu-card:focus-within {
  border-color: rgba(169, 121, 19, .72) !important;
  box-shadow: 0 19px 38px rgba(5, 16, 41, .18), 0 0 0 2px rgba(201, 154, 50, .16) !important;
}

.homepage-card-grid .card-image,
.uniform-card-grid .card-image {
  aspect-ratio: 16 / 10 !important;
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, .98), rgba(235, 242, 255, .92) 58%, rgba(239, 225, 183, .48)) !important;
}

.homepage-card-grid .card-content,
.uniform-card-grid .card-content {
  background: linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, #eef4ff 100%) !important;
  padding: 20px !important;
}

.homepage-card-grid .card-category,
.uniform-card-grid .card-category {
  background: #e9f1ff !important;
  border: 1px solid rgba(18, 60, 140, .15) !important;
  color: #0d4fab !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  padding: 7px 11px !important;
}

.homepage-card-grid .card-shop-line,
.uniform-card-grid .card-shop-line {
  margin-top: 14px !important;
}

.homepage-card-grid .card-shop-line a,
.uniform-card-grid .card-shop-line a {
  color: #0d4fab !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  text-decoration: none;
}

.homepage-card-grid .card-title,
.uniform-card-grid .card-title {
  color: #051029 !important;
  font-size: clamp(19px, 1.5vw, 23px) !important;
  font-weight: 800 !important;
  letter-spacing: -.025em !important;
  line-height: 1.25 !important;
  margin: 11px 0 14px !important;
}

.homepage-card-grid .card-location-line,
.uniform-card-grid .card-location-line {
  color: #243b5d !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  margin-bottom: 12px !important;
}

.homepage-card-grid .card-excerpt,
.uniform-card-grid .card-excerpt {
  color: #354a68 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
}

.homepage-card-grid .card-actions-primary,
.uniform-card-grid .card-actions-primary {
  justify-items: center !important;
  margin-top: 20px !important;
}

.card-actions-primary .card-link.whatsapp,
.card-actions-primary .card-link.whatsapp:only-child {
  justify-self: center !important;
  margin-inline: auto !important;
}

@media (max-width: 760px) {
  .homepage-card-grid .card-content,
  .uniform-card-grid .card-content {
    padding: 18px !important;
  }

  .homepage-card-grid .card-title,
  .uniform-card-grid .card-title {
    font-size: 20px !important;
  }

  .homepage-card-grid .card-excerpt,
  .uniform-card-grid .card-excerpt {
    font-size: 15px !important;
  }
}


/***** Listing-card readability: generous rhythm, stronger hierarchy and centred seller contact. *****/
.homepage-card-grid .card-content,
.uniform-card-grid .card-content {
  padding: clamp(22px, 2vw, 28px) !important;
}

.homepage-card-grid .card-shop-line,
.uniform-card-grid .card-shop-line {
  line-height: 1.35 !important;
  margin-top: 16px !important;
}

.homepage-card-grid .card-shop-line a,
.uniform-card-grid .card-shop-line a {
  font-size: 16px !important;
  letter-spacing: -.01em;
}

.homepage-card-grid .card-title,
.uniform-card-grid .card-title {
  font-size: clamp(22px, 1.8vw, 27px) !important;
  line-height: 1.2 !important;
  margin: 12px 0 16px !important;
}

.homepage-card-grid .card-location-line,
.uniform-card-grid .card-location-line {
  font-size: 15px !important;
  line-height: 1.5 !important;
  margin: 0 0 15px !important;
}

.homepage-card-grid .card-excerpt,
.uniform-card-grid .card-excerpt {
  font-size: 16px !important;
  line-height: 1.68 !important;
}

.homepage-card-grid .card-actions-primary,
.uniform-card-grid .card-actions-primary {
  align-items: center !important;
  display: flex !important;
  justify-content: center !important;
  margin-top: 24px !important;
  padding: 4px 0 8px !important;
}

.card-actions-primary .card-link.whatsapp,
.card-actions-primary .card-link.whatsapp:only-child {
  align-items: center !important;
  background: transparent !important;
  border: 0 !important;
  display: inline-flex !important;
  justify-content: center !important;
  line-height: 0 !important;
  margin: 0 auto !important;
  padding: 5px 12px !important;
  width: max-content !important;
}

.card-actions-primary .card-link.whatsapp .whatsapp-gold-button-image {
  height: 44px !important;
  max-width: 100% !important;
  width: auto !important;
}

@media (max-width: 760px) {
  .homepage-card-grid .card-content,
  .uniform-card-grid .card-content {
    padding: 22px 20px 26px !important;
  }

  .homepage-card-grid .card-shop-line a,
  .uniform-card-grid .card-shop-line a {
    font-size: 16px !important;
  }

  .homepage-card-grid .card-title,
  .uniform-card-grid .card-title {
    font-size: 24px !important;
    margin-bottom: 16px !important;
  }

  .homepage-card-grid .card-location-line,
  .uniform-card-grid .card-location-line {
    font-size: 16px !important;
  }

  .homepage-card-grid .card-excerpt,
  .uniform-card-grid .card-excerpt {
    font-size: 17px !important;
    line-height: 1.62 !important;
  }

  .homepage-card-grid .card-actions-primary,
  .uniform-card-grid .card-actions-primary {
    margin-top: 22px !important;
  }

  .card-actions-primary .card-link.whatsapp {
    padding: 6px 14px !important;
  }

  .card-actions-primary .card-link.whatsapp .whatsapp-gold-button-image {
    height: 46px !important;
  }
}\n\n/* ===== favorites.css ===== */\n@import url("card-lightbox-polish.css");

.card-image-wrap {
  position: relative;
}

.favorite-toggle {
  align-items: center;
  background: #d4af37;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(184, 134, 11, .28);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
  padding: 0;
  position: static;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
  width: 42px;
  z-index: 5;
}

.favorite-icon {
  fill: transparent;
  height: 21px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  transition: fill .22s ease, transform .22s ease;
  width: 21px;
}

.is-featured .favorite-toggle {
  top: auto;
}

.favorite-toggle:hover,
.favorite-toggle:focus-visible {
  background: #198754;
  border-color: #198754;
  box-shadow: 0 10px 27px rgba(25, 135, 84, .34);
  color: #ffffff;
  outline: none;
  transform: translateY(-1px) scale(1.09);
}

.favorite-toggle:hover .favorite-icon,
.favorite-toggle:focus-visible .favorite-icon {
  fill: currentColor;
  transform: scale(1.06);
}

.favorite-toggle.is-saved {
  background: #d4af37;
  border-color: #d4af37;
  color: #ffffff;
}

.favorite-toggle.is-saved .favorite-icon {
  fill: currentColor;
}

.favorite-toggle.is-saved:hover,
.favorite-toggle.is-saved:focus-visible {
  background: #198754;
  border-color: #198754;
  box-shadow: 0 10px 27px rgba(25, 135, 84, .34);
  color: #ffffff;
}

.favorite-toggle.has-error {
  animation: favorite-shake .3s linear;
}

.single-favorite-button {
  align-items: center;
  display: inline-flex;
  gap: 7px;
}

.single-favorite-button.is-saved {
  background: #198754;
  border-color: #198754;
  color: #ffffff;
}

.favorites-grid {
  margin-top: 4px;
}

/* Keep a single View action centred and balanced across the card. */
.card-actions-primary {
  grid-template-columns: 1fr;
  justify-items: center;
}

.card-actions-primary:has(.whatsapp) {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  justify-items: stretch;
}

.card-actions-primary .view-more:only-child {
  justify-self: center;
  max-width: 180px;
  width: min(100%, 180px);
}

@keyframes favorite-shake {
  0%, 100% { transform: translateX(0); }
  33% { transform: translateX(-4px); }
  66% { transform: translateX(4px); }
}


/* Keep listing controls on the photo instead of creating a separate blank row. */
.card-image-wrap {
  isolation: isolate;
  overflow: hidden;
}

.card-image-controls {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 3;
}

.card-image-controls .favorite-toggle {
  bottom: 14px;
  left: 14px;
  pointer-events: auto;
  position: absolute;
}

.card-image-controls .card-image-price {
  pointer-events: auto;
  position: absolute;
  right: 14px;
  top: 14px;
}

.card-image-wrap .favorite-toggle {
  background: rgba(20, 63, 46, .9);
  border-color: rgba(255, 255, 255, .88);
  box-shadow: 0 8px 20px rgba(7, 36, 24, .28);
}

.card-image-wrap .favorite-toggle.is-saved {
  background: #d4af37;
  border-color: #ffffff;
}

.card-image-wrap .favorite-toggle:hover,
.card-image-wrap .favorite-toggle:focus-visible {
  background: #198754;
  border-color: #ffffff;
}

@media (max-width: 640px) {
  .card-image-controls .favorite-toggle {
    bottom: 12px;
    left: 12px;
  }

  .card-image-controls .card-image-price {
    right: 12px;
    top: 12px;
  }
}


/* Final positioning guard: the control must never create or cross into a content row. */
.thayu-card .card-image-wrap {
  position: relative !important;
}

.thayu-card .card-image-controls {
  bottom: 0 !important;
  display: block !important;
  height: auto !important;
  left: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
}

.thayu-card .card-image-controls .favorite-toggle {
  bottom: auto !important;
  left: auto !important;
  position: absolute !important;
  right: 12px !important;
  top: 12px !important;
}

.thayu-card .card-image-controls .card-image-price {
  bottom: 12px !important;
  left: 12px !important;
  right: auto !important;
  top: auto !important;
}

.thayu-card.is-featured .card-image-controls .favorite-toggle {
  top: 50px !important;
}

@media (max-width: 640px) {
  .thayu-card .card-image-controls .favorite-toggle {
    right: 10px !important;
    top: 10px !important;
  }

  .thayu-card.is-featured .card-image-controls .favorite-toggle {
    top: 46px !important;
  }

  .thayu-card .card-image-controls .card-image-price {
    bottom: 10px !important;
    left: 10px !important;
  }
}\n\n/* ===== accessibility-contrast.css ===== */\n/*
 * WCAG contrast safeguards.
 * Loaded after the theme's visual styles so essential text remains readable.
 */

:root {
  --thayu-accessible-text: #212529;
  --thayu-accessible-muted: #4b5563;
  --thayu-accessible-green: #146c43;
}

.site-main {
  color: var(--thayu-accessible-text);
}

.site-main p,
.site-main li,
.site-main dd,
.site-main dt,
.site-main figcaption,
.site-main .card-excerpt,
.site-main .card-excerpt p,
.site-main .card-location-line,
.site-main .card-date,
.site-main .card-stats span {
  color: var(--thayu-accessible-text);
}

.load-more-wrap {
  color: var(--thayu-accessible-text);
}

.load-more-status,
.load-more-status[data-load-more-status] {
  color: var(--thayu-accessible-muted) !important;
  font-weight: 700;
  opacity: 1 !important;
}

.load-more-status[aria-live],
.load-more-status.is-loading,
.load-more-status.is-complete,
.load-more-status.is-error {
  color: var(--thayu-accessible-text) !important;
}

.section-heading a:not(.thayu-button),
.site-main a:not(.thayu-button):not(.card-link):not(.card-overlay-link) {
  color: var(--thayu-accessible-green);
}

.site-main ::placeholder {
  color: #5f6b65;
  opacity: 1;
}

@media (forced-colors: active) {
  .load-more-status,
  .site-main {
    color: CanvasText !important;
  }
}\n\n/* ===== home-category-bar.css ===== */\n.home-category-nav {
  margin: 18px auto 8px;
  position: relative;
  z-index: 2;
}

.home-category-nav__inner {
  align-items: stretch;
  background: linear-gradient(145deg, #ffffff, #eef5f1);
  border: 1px solid rgba(31, 78, 61, .12);
  border-radius: 22px;
  box-shadow: 0 12px 24px rgba(31, 78, 61, .13), inset 0 1px 0 rgba(255, 255, 255, .9);
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  padding: 12px;
}

.home-category-nav__item {
  align-items: center;
  background: linear-gradient(145deg, #ffffff, #f2f7f4);
  border: 1px solid rgba(31, 78, 61, .1);
  border-radius: 16px;
  box-shadow: 5px 5px 12px rgba(31, 78, 61, .11), -3px -3px 8px rgba(255, 255, 255, .95);
  color: #173e31;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 800;
  gap: 6px;
  justify-content: center;
  line-height: 1.2;
  min-height: 78px;
  padding: 10px 7px;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.home-category-nav__item:hover,
.home-category-nav__item:focus-visible {
  background: linear-gradient(145deg, #f8fffB, #e6f3ec);
  border-color: rgba(25, 135, 84, .34);
  box-shadow: 8px 8px 16px rgba(31, 78, 61, .15), -4px -4px 10px rgba(255, 255, 255, 1);
  color: #146c43;
  outline: none;
  transform: translateY(-3px);
}

.home-category-nav__icon {
  align-items: center;
  background: #eef7f2;
  border: 1px solid rgba(25, 135, 84, .14);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 4px 10px rgba(31, 78, 61, .09);
  display: inline-flex;
  font-size: 21px;
  height: 38px;
  justify-content: center;
  line-height: 1;
  width: 38px;
}

.home-category-nav__label {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media (max-width: 1120px) {
  .home-category-nav__inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-category-nav {
    margin-top: 12px;
  }

  .home-category-nav__inner {
    border-radius: 16px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 9px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .home-category-nav__item {
    flex: 0 0 92px;
    font-size: 11px;
    min-height: 68px;
    padding: 8px 6px;
    scroll-snap-align: start;
  }

  .home-category-nav__icon {
    border-radius: 10px;
    font-size: 18px;
    height: 32px;
    width: 32px;
  }
}\n\n/* ===== layout-stable.css ===== */\n/* Stable full-site layout: loaded last. */
*,*::before,*::after{box-sizing:border-box}
html{overflow-x:hidden}
body{margin:0;min-width:320px;overflow-x:hidden}
.container{width:min(100% - 40px,1180px)!important;max-width:1180px!important;margin-inline:auto!important;padding-inline:0!important}
.site-header,.site-main,.site-footer,.marketplace-hero-section{width:100%;max-width:none}

/* Header */
.compact-site-header{position:sticky;top:0;z-index:999;background:#fff}
.compact-site-header .compact-header-row{width:min(100% - 40px,1540px)!important;max-width:1540px!important;margin-inline:auto!important}
.compact-header-row{display:grid!important;grid-template-columns:360px minmax(0,1fr) auto;align-items:center!important;gap:20px!important;min-height:110px}
.header-logo-wrap{min-width:0!important;width:360px!important;max-width:360px!important;overflow:hidden!important}
.header-logo-wrap .custom-logo-link{display:flex!important;align-items:center!important;width:100%!important;max-width:360px!important;overflow:hidden!important}
.header-logo-wrap img,.header-logo-wrap .custom-logo{display:block;width:auto!important;max-width:360px!important;height:auto!important;max-height:88px!important}
.compact-primary-nav{min-width:0!important;overflow:visible!important}
.compact-header-menu{display:flex!important;align-items:center!important;justify-content:flex-end!important;flex-wrap:nowrap!important;gap:4px!important;margin:0!important;padding:0!important;min-width:0!important}
.compact-header-menu>li{flex:0 0 auto!important;position:relative!important}
.compact-header-menu>li>a,.profile-toggle{font-size:16px!important;padding:12px 10px!important;white-space:nowrap!important}
.compact-post-button{white-space:nowrap!important}
.compact-profile-item{position:relative!important}
.compact-header-menu .compact-profile-dropdown{position:absolute!important;top:100%!important;right:0!important;left:auto!important;display:none!important;grid-template-columns:1fr!important;flex-direction:column!important;align-items:stretch!important;gap:3px!important;width:250px!important;min-width:250px!important;max-width:250px!important;margin:0!important;padding:8px!important;z-index:2500!important}
.compact-header-menu .compact-profile-item:hover .compact-profile-dropdown,
.compact-header-menu .compact-profile-item:focus-within .compact-profile-dropdown,
.compact-profile-item.is-account-menu-open .compact-profile-dropdown{display:grid!important}
.compact-profile-dropdown li{display:block!important;width:100%!important;margin:0!important}
.compact-profile-dropdown a{display:flex!important;width:100%!important;justify-content:flex-start!important}

/* Hero */
.marketplace-hero-section{padding:18px 0!important;background:linear-gradient(135deg,#f7c35f 0%,#f59f00 100%)}
.marketplace-hero-ad-grid{display:grid!important;grid-template-columns:210px minmax(420px,1fr) 210px!important;align-items:stretch!important;gap:16px!important}
.hero-ad-column,.hero-promo-panel{height:300px!important;min-height:300px!important;max-height:300px!important;min-width:0!important;overflow:hidden!important}
.hero-promo-panel{display:flex!important;align-items:center!important;justify-content:center!important;padding:28px 34px!important}
.hero-promo-content-centered{width:100%!important;max-width:760px!important;margin:auto!important;text-align:center!important}
.hero-promo-content-centered h1{font-size:clamp(30px,3.4vw,48px)!important;line-height:1.04!important;margin:0 auto!important}
.hero-promo-content-centered>p{margin:10px auto 18px!important}
.hero-search-fullwidth,.hero-search-fullwidth form,.hero-search-fullwidth .unified-market-search,.hero-search-fullwidth .unified-search-field{width:100%!important;max-width:none!important;min-width:0!important;margin:0!important}
.hero-search-fullwidth .unified-search-field{display:grid!important;grid-template-columns:minmax(0,1fr) auto!important;align-items:center!important}
.hero-search-fullwidth input{width:100%!important;min-width:0!important}
.hero-search-fullwidth button{width:auto!important;min-width:110px!important}
.hero-ad-column .thayu-hero-ad,.hero-ad-column .hero-ad-empty-state,.hero-ad-column ins.adsbygoogle,.hero-ad-column iframe{display:block!important;width:100%!important;height:100%!important;min-height:300px!important;max-height:300px!important;max-width:100%!important;overflow:hidden!important}
.hero-ad-column-right{display:block!important}
.hero-ad-column-right .hero-ad-stack-item{height:100%!important}

/* Home categories and cards */
.home-category-nav{margin-top:18px!important}
.home-category-nav__inner{display:grid!important;grid-template-columns:repeat(8,minmax(0,1fr))!important;gap:8px!important}
.listings-section{width:min(100% - 40px,1180px)!important;max-width:1180px!important;margin-inline:auto!important}
.uniform-card-grid,.homepage-card-grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:22px!important;align-items:stretch!important}
.uniform-card-grid>* ,.homepage-card-grid>*{min-width:0!important;width:100%!important;max-width:none!important;margin:0!important}
.thayu-card{height:100%!important;display:flex!important;flex-direction:column!important}
.thayu-card .card-image{aspect-ratio:4/3!important;overflow:hidden!important}
.thayu-card .card-image img{width:100%!important;height:100%!important;object-fit:contain!important}

/* Footer */
#site-footer{clear:both!important;width:100%!important;overflow:hidden!important}
#site-footer .footer-widget-grid{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:28px!important}
#site-footer .footer-bottom-inner{display:flex!important;align-items:center!important;justify-content:space-between!important;flex-wrap:wrap!important;gap:14px!important}
#site-footer .footer-social-share{display:flex!important;flex-direction:row!important;align-items:center!important;flex-wrap:wrap!important;gap:10px!important;width:auto!important;height:auto!important;margin:0!important;padding:0!important}
#site-footer .footer-social-share>a.footer-social-icon{display:inline-flex!important;align-items:center!important;justify-content:center!important;flex:0 0 40px!important;width:40px!important;height:40px!important;min-width:40px!important;min-height:40px!important;max-width:40px!important;max-height:40px!important;padding:0!important;overflow:hidden!important;border-radius:999px!important}
#site-footer .footer-social-share>a.footer-social-icon>svg{display:block!important;flex:0 0 20px!important;width:20px!important;height:20px!important;min-width:20px!important;min-height:20px!important;max-width:20px!important;max-height:20px!important;overflow:hidden!important}

@media(max-width:1050px){
 .compact-site-header .compact-header-row{width:min(100% - 28px,1180px)!important}
 .compact-header-row{grid-template-columns:150px minmax(0,1fr) auto;gap:10px!important}
 .header-logo-wrap{width:150px!important;max-width:150px!important}
 .compact-header-menu>li>a,.profile-toggle{font-size:12px!important;padding-inline:6px!important}
 .marketplace-hero-ad-grid{grid-template-columns:180px minmax(360px,1fr) 180px!important}
 .home-category-nav__inner{grid-template-columns:repeat(4,minmax(0,1fr))!important}
}
@media(max-width:900px){
 .container,.listings-section{width:min(100% - 28px,1180px)!important}
 .compact-site-header .compact-header-row{width:min(100% - 28px,1180px)!important}
 .compact-header-row{display:flex!important;flex-wrap:wrap!important}
 .header-logo-wrap{width:auto!important;max-width:160px!important}
 .menu-toggle{display:inline-flex!important;margin-left:auto!important}
 .compact-primary-nav{display:none!important;flex:1 1 100%!important;order:10!important}
 .compact-primary-nav.is-open{display:block!important}
 .compact-header-menu{display:grid!important;grid-template-columns:1fr!important;align-items:stretch!important}
 .compact-header-menu .compact-profile-dropdown{position:static!important;width:100%!important;min-width:100%!important;max-width:100%!important;margin-top:6px!important}
 .marketplace-hero-ad-grid{grid-template-columns:1fr!important}
 .hero-ad-column-left{display:none!important}
 .hero-promo-panel{height:auto!important;min-height:270px!important;max-height:none!important}
 .hero-ad-column-right{height:100px!important;min-height:100px!important;max-height:100px!important}
 .hero-ad-column-right .thayu-hero-ad,.hero-ad-column-right .hero-ad-empty-state,.hero-ad-column-right ins.adsbygoogle,.hero-ad-column-right iframe{height:100px!important;min-height:100px!important;max-height:100px!important}
 .uniform-card-grid,.homepage-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
 #site-footer .footer-widget-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media(max-width:600px){
 .container,.listings-section{width:min(100% - 20px,1180px)!important}
 .compact-site-header .compact-header-row{width:min(100% - 20px,1180px)!important}
 .hero-search-fullwidth .unified-search-field{grid-template-columns:1fr!important}
 .hero-search-fullwidth button{width:100%!important}
 .home-category-nav__inner{grid-template-columns:repeat(2,minmax(0,1fr))!important}
 .uniform-card-grid,.homepage-card-grid{grid-template-columns:1fr!important}
 #site-footer .footer-widget-grid{grid-template-columns:1fr!important}
 #site-footer .footer-bottom-inner{align-items:flex-start!important;flex-direction:column!important}
}

/* Card media alignment repair */
.homepage-card-grid .thayu-card,
.uniform-card-grid .thayu-card {
  overflow: hidden !important;
  background: #fff !important;
  border-radius: 18px !important;
}
.homepage-card-grid .card-image-wrap,
.uniform-card-grid .card-image-wrap {
  position: relative !important;
  display: block !important;
  overflow: hidden !important;
  background: #f4f6f5 !important;
  line-height: 0 !important;
}
.homepage-card-grid .card-image,
.uniform-card-grid .card-image {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
.homepage-card-grid .card-image img,
.uniform-card-grid .card-image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  background: #f7f9fc !important;
  object-fit: contain !important;
  object-position: center !important;
}
.homepage-card-grid .card-image-controls,
.uniform-card-grid .card-image-controls {
  position: absolute !important;
  left: 12px !important;
  right: 12px !important;
  top: auto !important;
  bottom: 12px !important;
  z-index: 8 !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 10px !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none !important;
  line-height: normal !important;
}
.homepage-card-grid .card-image-controls > *,
.uniform-card-grid .card-image-controls > * {
  pointer-events: auto !important;
}
.homepage-card-grid .favorite-toggle,
.uniform-card-grid .favorite-toggle {
  position: static !important;
  flex: 0 0 42px !important;
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
  margin: 0 !important;
  padding: 0 !important;
}
.homepage-card-grid .favorite-icon,
.uniform-card-grid .favorite-icon {
  display: block !important;
  width: 21px !important;
  height: 21px !important;
}
.homepage-card-grid .card-content,
.uniform-card-grid .card-content {
  position: relative !important;
  z-index: 2 !important;
  flex: 1 1 auto !important;
  margin: 0 !important;
  padding: 16px 18px 18px !important;
  background: #e8eeee !important;
  line-height: 1.5 !important;
}
.homepage-card-grid .card-category,
.uniform-card-grid .card-category {
  margin: 0 0 12px !important;
}
.homepage-card-grid .card-title,
.uniform-card-grid .card-title {
  margin: 0 0 12px !important;
}
.homepage-card-grid .card-excerpt,
.uniform-card-grid .card-excerpt {
  margin: 0 !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}


/* Final WhatsApp contact presentation: the artwork is the button, with no outer green surface. */
.card-actions-primary .card-link.whatsapp,
.card-actions-primary .card-link.whatsapp:only-child,
.card-actions-primary .card-link.whatsapp:hover,
.card-actions-primary .card-link.whatsapp:focus-visible,
.card-actions-primary .card-link.whatsapp:active {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
  padding: 0 !important;
  width: auto !important;
}

.card-actions-primary .card-link.whatsapp:only-child {
  justify-self: start !important;
}

.card-actions-primary .card-link.whatsapp .whatsapp-gold-button-image {
  display: block !important;
  height: 38px !important;
  width: auto !important;
}


/* WhatsApp contact CTA: a centred button with no raster or white panel around it. */
.card-actions-primary .card-link.whatsapp,
.card-actions-primary .card-link.whatsapp:only-child,
.card-actions-primary .card-link.whatsapp:hover,
.card-actions-primary .card-link.whatsapp:focus-visible,
.card-actions-primary .card-link.whatsapp:active {
  align-items: center !important;
  align-self: center !important;
  background: linear-gradient(135deg, #28d866 0%, #14bd57 52%, #079743 100%) !important;
  border: 2px solid #f1c95e !important;
  border-radius: 999px !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.38),
    inset 0 -3px 0 rgba(4,101,47,.34),
    0 4px 0 #05743a,
    0 9px 18px rgba(5,16,41,.20) !important;
  box-sizing: border-box !important;
  color: #fff !important;
  display: inline-flex !important;
  font-size: 0 !important;
  height: 46px !important;
  justify-content: center !important;
  margin: 0 auto 5px !important;
  min-height: 46px !important;
  min-width: 174px !important;
  overflow: hidden !important;
  padding: 0 20px !important;
  position: relative !important;
  text-align: center !important;
  text-decoration: none !important;
  width: auto !important;
}

.card-actions-primary .card-link.whatsapp:only-child {
  justify-self: center !important;
}

.card-actions-primary .card-link.whatsapp::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 11.4a8 8 0 0 1-11.8 7.1L4 20l1.5-4.1A8 8 0 1 1 20 11.4Z'/%3E%3Cpath d='M8.7 8.3c.2-.5.4-.6.7-.6h.4c.2 0 .4.1.5.4l.5 1.3c.1.3.1.5-.1.7l-.4.5c.5.9 1.2 1.6 2.1 2.1l.5-.4c.2-.2.5-.2.7-.1l1.3.5c.3.1.4.3.4.5v.4c0 .3-.1.5-.6.7-.5.2-1 .3-1.5.2-1.3-.2-2.6-1-3.7-2.1-1.1-1.1-1.9-2.4-2.1-3.7-.1-.5 0-1 .2-1.5Z' fill='%23fff' stroke='none'/%3E%3C/svg%3E") !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 24px 24px !important;
  content: "" !important;
  display: block !important;
  flex: 0 0 27px !important;
  height: 27px !important;
  margin-right: 8px !important;
  width: 27px !important;
}

.card-actions-primary .card-link.whatsapp::after {
  color: #fff !important;
  content: "WhatsApp" !important;
  display: block !important;
  font-size: 15px !important;
  font-weight: 850 !important;
  letter-spacing: .01em !important;
  line-height: 1 !important;
  text-shadow: 0 1px 1px rgba(4,73,33,.32) !important;
}

.card-actions-primary .card-link.whatsapp:hover,
.card-actions-primary .card-link.whatsapp:focus-visible {
  background: linear-gradient(135deg, #35e977 0%, #17c862 52%, #0aa34a 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.48),
    inset 0 -3px 0 rgba(4,101,47,.30),
    0 5px 0 #05743a,
    0 10px 20px rgba(5,16,41,.24) !important;
  transform: translateY(-1px) !important;
}

.card-actions-primary .card-link.whatsapp:active {
  box-shadow:
    inset 0 2px 3px rgba(4,101,47,.30),
    0 2px 0 #05743a,
    0 5px 10px rgba(5,16,41,.18) !important;
  transform: translateY(2px) !important;
}

.card-actions-primary .card-link.whatsapp .whatsapp-gold-button-image {
  height: 1px !important;
  left: -9999px !important;
  opacity: 0 !important;
  position: absolute !important;
  top: auto !important;
  width: 1px !important;
}\n\n/* ===== firstpost-palette.css ===== */\n/*
 * Thayu Market editorial palette: deep navy, royal blue and restrained gold.
 * Loaded after the stable layout so it safely replaces the former yellow accents.
 */
:root {
  --thayu-navy: #071b3d;
  --thayu-blue: #123c8c;
  --thayu-gold: #c99a32;
  --thayu-gold-light: #e2bd62;
  --thayu-ink: #102a55;
}

.marketplace-hero-section {
  background: linear-gradient(135deg, var(--thayu-navy) 0%, #0b2b63 46%, var(--thayu-blue) 100%) !important;
  border-bottom: 4px solid var(--thayu-gold);
}

.hero-promo-panel {
  background: linear-gradient(135deg, rgba(7, 27, 61, .98), rgba(18, 60, 140, .96)) !important;
  border: 1px solid rgba(226, 189, 98, .48) !important;
  box-shadow: 0 18px 38px rgba(7, 27, 61, .30) !important;
}

.hero-promo-content h1,
.hero-promo-content p {
  color: #ffffff !important;
}

.hero-search-fullwidth .unified-search-field {
  background: rgba(255, 255, 255, .96) !important;
  border: 1px solid rgba(226, 189, 98, .65) !important;
}

.hero-search-fullwidth button,
.marketplace-hero-section .thayu-search button {
  background: var(--thayu-gold) !important;
  border-color: var(--thayu-gold) !important;
  color: var(--thayu-navy) !important;
  font-weight: 900 !important;
}

.hero-search-fullwidth button:hover,
.hero-search-fullwidth button:focus-visible,
.marketplace-hero-section .thayu-search button:hover,
.marketplace-hero-section .thayu-search button:focus-visible {
  background: var(--thayu-gold-light) !important;
  border-color: var(--thayu-gold-light) !important;
  color: var(--thayu-navy) !important;
}

.site-header .compact-post-button,
.site-header a.compact-post-button,
.trending-section .trending-post-business-button,
.load-more-button {
  background: var(--thayu-navy) !important;
  border-color: var(--thayu-navy) !important;
  color: #ffffff !important;
}

.site-header .compact-post-button:hover,
.site-header .compact-post-button:focus-visible,
.site-header a.compact-post-button:hover,
.site-header a.compact-post-button:focus-visible,
.trending-section .trending-post-business-button:hover,
.trending-section .trending-post-business-button:focus-visible,
.load-more-button:hover,
.load-more-button:focus-visible {
  background: var(--thayu-blue) !important;
  border-color: var(--thayu-blue) !important;
  box-shadow: 0 10px 24px rgba(7, 27, 61, .26) !important;
}

.featured-ribbon,
.card-image-price.featured-price {
  background: var(--thayu-gold) !important;
  color: var(--thayu-navy) !important;
}

.thayu-card.is-featured {
  border-color: rgba(201, 154, 50, .55) !important;
  box-shadow: 0 12px 30px rgba(7, 27, 61, .15), 0 0 0 4px rgba(201, 154, 50, .10) !important;
}

.premium-service-card {
  border-color: rgba(7, 27, 61, .18) !important;
  box-shadow: 0 8px 20px rgba(7, 27, 61, .10) !important;
}

.premium-service-card:hover,
.premium-service-card:focus-visible {
  border-color: var(--thayu-gold) !important;
  box-shadow: 0 12px 26px rgba(7, 27, 61, .18) !important;
}

.premium-service-card__icon {
  background: #f7f0df !important;
  color: var(--thayu-navy);
}

.premium-service-card b,
.card-category,
.card-price,
.homepage-card-grid .card-location-line,
.uniform-card-grid .card-location-line {
  color: var(--thayu-navy) !important;
}

.card-category,
.card-price {
  background: #eef2fa !important;
  border-color: rgba(7, 27, 61, .14) !important;
}

.compact-header-menu>li>a:hover,
.compact-header-menu>li>a:focus-visible {
  color: var(--thayu-blue) !important;
}

.site-footer,
#site-footer {
  background: var(--thayu-navy) !important;
}


/* Cinematic cover treatment: background-only, with no embedded wording or images. */
.marketplace-hero-section {
  isolation: isolate;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(ellipse at 63% 34%, rgba(41, 104, 255, .30) 0 1px, transparent 1.8px) 0 0 / 11px 11px,
    radial-gradient(circle at 22% 110%, rgba(18, 106, 255, .38), transparent 35%),
    radial-gradient(circle at 83% -8%, rgba(28, 78, 190, .34), transparent 34%),
    linear-gradient(128deg, #020816 0%, #071b3d 38%, #0d2d68 69%, #06142f 100%) !important;
}

.marketplace-hero-section::before,
.marketplace-hero-section::after {
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.marketplace-hero-section::before {
  background:
    linear-gradient(136deg, transparent 0 11%, rgba(40, 107, 255, .60) 11.2% 11.45%, transparent 11.7% 31%,
      rgba(34, 111, 255, .72) 31.2% 31.45%, transparent 31.7% 100%),
    linear-gradient(164deg, transparent 0 54%, rgba(0, 127, 255, .62) 54.2% 54.45%, transparent 54.7% 100%),
    linear-gradient(22deg, transparent 0 24%, rgba(22, 89, 230, .28) 24.3% 24.7%, transparent 25% 100%);
  opacity: .92;
  z-index: -1;
}

.marketplace-hero-section::after {
  background:
    linear-gradient(112deg, transparent 0 79%, rgba(201, 154, 50, .88) 79.2% 79.35%, transparent 79.55% 81%,
      rgba(240, 201, 91, .96) 81.2% 81.45%, transparent 81.65% 83%,
      rgba(201, 154, 50, .82) 83.2% 83.35%, transparent 83.55% 100%),
    linear-gradient(180deg, transparent 0 96%, rgba(201, 154, 50, .85) 96.4% 97%, transparent 97.4% 100%);
  opacity: .92;
  z-index: -1;
}

.marketplace-hero-section .marketplace-hero-ad-grid {
  position: relative;
  z-index: 1;
}

.hero-promo-panel {
  background:
    linear-gradient(135deg, rgba(3, 14, 37, .93), rgba(12, 46, 108, .88)),
    radial-gradient(circle at 78% 15%, rgba(50, 120, 255, .25), transparent 32%) !important;
  border: 1px solid rgba(226, 189, 98, .52) !important;
  border-radius: 28px !important;
  box-shadow: 0 24px 48px rgba(0, 5, 20, .48), inset 0 1px 0 rgba(255, 255, 255, .08) !important;
}

.hero-promo-panel::before {
  background: repeating-linear-gradient(115deg, transparent 0 22px, rgba(65, 127, 255, .13) 23px 24px, transparent 25px 48px);
  border-radius: inherit;
  content: "";
  inset: 0;
  opacity: .55;
  pointer-events: none;
  position: absolute;
}

.hero-promo-content {
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  .marketplace-hero-section::after {
    background: linear-gradient(112deg, transparent 0 84%, rgba(201, 154, 50, .75) 84.3% 84.6%, transparent 85% 100%);
  }

  .hero-promo-panel {
    border-radius: 22px !important;
  }
}

/* Unified brand controls: navy, deep blue and gold replace the legacy green UI. */
:root {
  --thayu-green: #071b3d !important;
  --thayu-green-2: #123c8c !important;
  --thayu-gold: #c99a32 !important;
  --thayu-text: #102a55 !important;
  --thayu-muted: #53627c !important;
  --thayu-border: #dce5f6 !important;
  --thayu-bg: #f7f9fe !important;
  --thayu-soft: #eef3fb !important;
  --thayu-success: #c99a32 !important;
  --thayu-link: #123c8c !important;
}

body .post-button,
body .thayu-button:not(.gold):not(.whatsapp-cta),
body .submit-listing-form button,
body .load-more-button,
body .trending-section .trending-post-business-button {
  background: linear-gradient(135deg, #071b3d 0%, #123c8c 100%) !important;
  border: 1px solid #c99a32 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 5px 0 #06142f, 0 10px 22px rgba(7,27,61,.24) !important;
  color: #ffffff !important;
  text-shadow: 0 1px 1px rgba(0,0,0,.22) !important;
}

body .post-button:hover,
body .post-button:focus-visible,
body .thayu-button:not(.gold):not(.whatsapp-cta):hover,
body .thayu-button:not(.gold):not(.whatsapp-cta):focus-visible,
body .submit-listing-form button:hover,
body .submit-listing-form button:focus-visible,
body .load-more-button:hover,
body .load-more-button:focus-visible,
body .trending-section .trending-post-business-button:hover,
body .trending-section .trending-post-business-button:focus-visible {
  background: linear-gradient(135deg, #123c8c 0%, #1d5ec5 100%) !important;
  border-color: #e2bd62 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 6px 0 #06142f, 0 13px 25px rgba(7,27,61,.28) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

body .thayu-button.gold,
body .shop-plans-explore-button {
  align-items: center;
  background: linear-gradient(135deg, #f2cf6d 0%, #c99a32 100%) !important;
  border: 1px solid #ffe8a0 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.58), 0 4px 0 #987018, 0 10px 20px rgba(7,27,61,.24) !important;
  color: #071b3d !important;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 52px;
  text-align: center;
  text-shadow: none !important;
}

body .shop-plans-explore-button {
  min-width: clamp(240px, 23vw, 320px);
  padding-inline: clamp(24px, 3vw, 38px) !important;
}

body .thayu-button.gold:hover,
body .thayu-button.gold:focus-visible,
body .shop-plans-explore-button:hover,
body .shop-plans-explore-button:focus-visible {
  background: linear-gradient(135deg, #ffe39a 0%, #d9ae44 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.68), 0 5px 0 #987018, 0 13px 24px rgba(7,27,61,.28) !important;
  color: #071b3d !important;
  transform: translateY(-1px);
}

body .featured-ribbon,
body .card-image-price.featured-price {
  background: linear-gradient(135deg, #f2cf6d, #c99a32) !important;
  border-color: #ffe8a0 !important;
  color: #071b3d !important;
}

body .card-image-price:not(.featured-price),
body .thayu-sponsored-card__avatar,
body .thayu-sponsored-card__cta {
  background: linear-gradient(135deg, #071b3d, #123c8c) !important;
  color: #ffffff !important;
}

body .thayu-sponsored-card,
body .thayu-card.is-featured {
  border-color: rgba(201,154,50,.52) !important;
  box-shadow: 0 12px 30px rgba(7,27,61,.14), 0 0 0 4px rgba(201,154,50,.09) !important;
}

body .thayu-sponsored-card__header strong,
body .thayu-sponsored-card__body h3,
body .uniform-card-grid .card-title,
body .homepage-card-grid .card-title {
  color: #102a55 !important;
}

body .thayu-sponsored-card__label,
body .premium-service-card b,
body .card-category,
body .card-price,
body .home-category-nav__item:hover,
body .home-category-nav__item:focus-visible {
  color: #123c8c !important;
}

body .card-category,
body .card-price,
body .shop-kicker,
body .dashboard-panel-heading span {
  background: #eef3fb !important;
  border-color: rgba(7,27,61,.16) !important;
}

body .home-category-nav__inner {
  background: linear-gradient(145deg, #ffffff, #edf3fd) !important;
  border-color: rgba(7,27,61,.14) !important;
  box-shadow: 0 12px 24px rgba(7,27,61,.13), inset 0 1px 0 rgba(255,255,255,.9) !important;
}

body .home-category-nav__item {
  background: linear-gradient(145deg, #ffffff, #f2f6fd) !important;
  border-color: rgba(7,27,61,.11) !important;
  box-shadow: 5px 5px 12px rgba(7,27,61,.11), -3px -3px 8px rgba(255,255,255,.95) !important;
  color: #102a55 !important;
}

body .home-category-nav__item:hover,
body .home-category-nav__item:focus-visible {
  background: linear-gradient(145deg, #ffffff, #e3edff) !important;
  border-color: rgba(201,154,50,.62) !important;
}

body .home-category-nav__icon {
  background: #edf3fd !important;
  border-color: rgba(7,27,61,.14) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 4px 10px rgba(7,27,61,.09) !important;
}

body .favorite-toggle:hover,
body .favorite-toggle:focus-visible,
body .favorite-toggle.is-saved:hover,
body .favorite-toggle.is-saved:focus-visible,
body .single-favorite-button.is-saved,
body .card-image-wrap .favorite-toggle,
body .card-image-wrap .favorite-toggle:hover,
body .card-image-wrap .favorite-toggle:focus-visible {
  background: #071b3d !important;
  border-color: #e2bd62 !important;
  box-shadow: 0 10px 27px rgba(7,27,61,.30) !important;
  color: #ffffff !important;
}

body .complete-profile-form h2,
body .profile-password-panel summary {
  color: #123c8c !important;
}

body .shop-plans-home .section-heading {
  align-items: center;
  background: linear-gradient(135deg, #071b3d 0%, #123c8c 100%);
  border: 1px solid rgba(226,189,98,.65);
  border-radius: 24px;
  box-shadow: 0 16px 32px rgba(7,27,61,.22);
  margin: 0;
  padding: clamp(22px, 3vw, 34px);
}

body .shop-plans-home .section-heading h2 {
  color: #ffffff !important;
}

body .shop-plans-home .section-heading p {
  color: rgba(255,255,255,.82) !important;
  margin: 7px 0 0;
}

@media (max-width: 680px) {
  body .shop-plans-home .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  body .shop-plans-home .shop-plans-explore-button {
    align-self: stretch;
    min-width: 0;
    width: 100%;
  }
}

/* Homepage listing media: full-bleed crops where safe, blurred edge-fill otherwise. */
.homepage-card-grid .card-image-wrap,
.homepage-card-grid .card-image.has-card-image {
  background: #d9e1ec !important;
}

.homepage-card-grid .card-image.has-card-image {
  isolation: isolate;
  position: relative;
}

.homepage-card-grid .card-image.has-card-image .card-image-foreground {
  background: transparent !important;
  object-fit: cover !important;
  position: relative;
  z-index: 1;
}

.homepage-card-grid .card-image.has-blurred-image-fill .card-image-foreground {
  object-fit: contain !important;
}

.homepage-card-grid .card-image .card-image-blur-layer {
  filter: blur(18px) saturate(.92);
  height: 116% !important;
  inset: -8%;
  object-fit: cover !important;
  opacity: .82;
  pointer-events: none;
  position: absolute;
  transform: scale(1.08);
  width: 116% !important;
  z-index: 0;
}

.homepage-card-grid .thayu-card:hover .card-image .card-image-blur-layer {
  transform: scale(1.08);
}

@media (max-width: 600px) {
  .homepage-card-grid .card-image .card-image-blur-layer {
    filter: blur(14px) saturate(.92);
  }
}

/* Keep desktop in-feed advertising aligned with the listing-card row.
 * The AdSense unit keeps its own responsive dimensions; only its marketplace
 * shell stretches, so the creative is never scaled or clipped to fake a fit. */
@media (min-width: 901px) {
  body.home .trending-section .homepage-card-grid > .thayu-ad-grid-card:not([hidden]) {
    align-self: stretch !important;
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    justify-content: center !important;
    max-height: none !important;
    min-height: 0 !important;
    overflow: visible !important;
    padding: 14px !important;
  }

  body.home .trending-section .homepage-card-grid > .thayu-ad-grid-card:not([hidden]) .thayu-ad-homepage-multiplex {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  body.home .trending-section .homepage-card-grid > .thayu-ad-grid-card:not([hidden]) .thayu-ad-homepage-multiplex ins.adsbygoogle {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }
}

/* Never render a visible label above homepage in-feed ads. The accessible
 * Advertisement name remains on the inner complementary landmark. */
body.home .trending-section .homepage-card-grid > .thayu-ad-grid-card::before {
  content: none !important;
  display: none !important;
}

/* A featured social video replaces the card image without loading any remote
 * player or SDK. The entire card remains the accessible listing link. */
.card-image.has-featured-video,
.card-video-preview {
  height: 100%;
  width: 100%;
}

.card-video-preview {
  background: linear-gradient(135deg, #061a3a, #123a77);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.card-video-preview::after {
  background: linear-gradient(180deg, transparent 48%, rgba(0,0,0,.4));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.card-video-preview .card-video-thumbnail {
  height: 100% !important;
  inset: 0;
  object-fit: cover !important;
  position: absolute;
  width: 100% !important;
}

.card-video-preview .video-play-badge {
  align-items: center;
  background: #071224;
  border: 3px solid #fff;
  border-radius: 13px;
  box-shadow: 0 7px 20px rgba(0,0,0,.3);
  color: #fff;
  display: flex;
  height: 54px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 72px;
  z-index: 2;
}

.card-video-preview .video-play-badge svg { height: 31px; width: 31px; }
.card-video-preview.video-provider-youtube .video-play-badge { background: #f03; }
.card-video-preview.video-provider-facebook .video-play-badge { background: #1877f2; }
.card-video-preview.video-provider-instagram .video-play-badge { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); }
.card-video-preview.video-provider-tiktok .video-play-badge { background: #080808; box-shadow: -3px -2px 0 #25f4ee,3px 2px 0 #fe2c55,0 7px 20px rgba(0,0,0,.35); }

.card-video-preview .video-provider-chip {
  background: rgba(3,15,34,.82);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  left: 12px;
  letter-spacing: .02em;
  padding: 5px 9px;
  position: absolute;
  top: 12px;
  z-index: 2;
}

.card-video-preview .video-fallback-brand {
  align-items: center;
  display: flex;
  font-size: clamp(24px,4vw,42px);
  font-weight: 800;
  inset: 0;
  justify-content: center;
  letter-spacing: -.04em;
  position: absolute;
}
