:root {
  --site-teal: #0f766e;
  --site-teal-dark: #0b5c56;
  --site-teal-deep: #043d3a;
  --site-mint: #ecfdf7;
  --site-gold: #c9a227;
  --site-text: #14302e;
  --site-muted: #5b716e;
  --site-border: #d7ece6;
  --site-shadow: 0 18px 40px rgba(15, 61, 56, 0.1);
}

* {
  box-sizing: border-box;
}

body.site-body {
  margin: 0;
  min-height: 100vh;
  color: var(--site-text);
  background:
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 28%),
    #f4fbf8;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 118, 110, 0.12);
  backdrop-filter: blur(14px);
}

.site-nav {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--site-text);
  text-decoration: none;
}

.site-logo:hover {
  color: var(--site-text);
}

.site-logo-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #14b8a6, #0f766e 58%, #c9a227);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(15, 118, 110, 0.28);
}

.site-logo-word {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f3d3a;
}

.site-logo-word span {
  color: var(--site-teal);
}

.site-logo-img {
  width: 150px;
}

.site-nav .navbar-nav {
  gap: 0.15rem;
}

.site-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  color: #35504d;
  font-weight: 600;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--site-teal-dark);
  background: var(--site-mint);
}

.btn-site-login {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--site-teal);
  color: var(--site-teal-dark);
  background: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.45rem 1rem;
}

.btn-site-login:hover {
  background: var(--site-teal);
  border-color: var(--site-teal);
  color: #fff;
}

.navbar-toggler {
  border: 1px solid var(--site-border);
}

.site-hero {
  position: relative;
  overflow: hidden;
  color: #f4fffb;
  text-align: center;
  padding: 4.4rem 0 5.4rem;
  background:
    radial-gradient(circle at 18% 20%, rgba(201, 162, 39, 0.22), transparent 26%),
    radial-gradient(circle at 86% 10%, rgba(45, 212, 191, 0.22), transparent 24%),
    linear-gradient(145deg, #043532 0%, #0f766e 58%, #115e59 100%);
}

.site-hero-glow {
  position: absolute;
  inset: auto -8% -38% auto;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.16);
  filter: blur(10px);
}

.site-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fde68a;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-hero h1 {
  margin: 0 auto 0.9rem;
  /* max-width: 14ch; */
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.site-hero-lead {
  margin: 0 auto 1.7rem;
  /* max-width: 38rem; */
  font-size: 1.08rem;
  color: rgba(244, 255, 251, 0.86);
}

.site-search {
  display: flex;
  align-items: center;
  max-width: 46rem;
  margin: 0 auto;
  padding: 0.4rem 0.4rem 0.4rem 1rem;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 22px 50px rgba(4, 61, 58, 0.28);
}

.site-search-icon {
  color: var(--site-teal);
  font-size: 1.1rem;
}

.site-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  padding: 0.85rem 0.85rem;
  font-size: 1rem;
  color: var(--site-text);
  background: transparent;
}

.site-search button {
  border: 0;
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  white-space: nowrap;
}

.site-search button:hover {
  background: var(--site-teal-dark);
}

.site-hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 1.6rem;
  color: rgba(244, 255, 251, 0.84);
  font-size: 0.92rem;
}

.site-hero-stats strong {
  color: #fff;
  margin-right: 0.25rem;
}

.site-listings,
.site-section {
  padding: 2.2rem 0 3.4rem;
}

.site-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
  align-items: end;
}

.site-section-title {
  margin: 0 0 0.2rem;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.7rem;
}

.site-results-meta {
  color: var(--site-muted);
}

.site-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.site-chip {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--site-border);
  color: #35504d;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.site-chip:hover,
.site-chip.active {
  background: var(--site-teal);
  border-color: var(--site-teal);
  color: #fff;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
}

.shop-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 22px;
  box-shadow: var(--site-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-card-hit {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.shop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 61, 56, 0.14);
}

.shop-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #d1fae5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.shop-card-tag {
    position: absolute;
    /* keep your existing tag positioning rules here */
}

.shop-card-body {
  padding: 1.05rem 1.1rem 1.15rem;
}

.shop-card h2 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.3rem;
  font-size: 1.08rem;
  font-weight: 800;
}

.shop-verified {
  color: #0F766E;
  font-size: 1rem;
}

.shop-card-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
  color: #6b8a86;
  font-size: 0.88rem;
}

.shop-card-copy {
  margin: 0 0 0.9rem;
  color: var(--site-muted);
  font-size: 0.9rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #0f766e;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.shop-whatsapp:hover {
  color: #128c7e;
}

.site-empty {
  text-align: center;
  padding: 3rem 1rem;
  background: #fff;
  border-radius: 22px;
}

.site-empty a {
  color: var(--site-teal);
  font-weight: 800;
}

.site-page-banner {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 3rem 0;
  background: linear-gradient(145deg, #043532, #0f766e);
}

.site-page-banner h1 {
  margin-bottom: 0.6rem;
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
}

.site-page-banner p {
  max-width: 40rem;
  opacity: 0.92;
}

.site-panel {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--site-shadow);
  padding: 1.4rem;
}

.site-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-checklist li {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.site-checklist i {
  color: var(--site-teal);
  margin-top: 0.15rem;
}

.btn-site-primary {
  background: var(--site-teal);
  border-color: var(--site-teal);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
}

.btn-site-primary:hover,
.btn-site-primary:focus {
  background: var(--site-teal-dark);
  border-color: var(--site-teal-dark);
  color: #fff;
}

.form-control:focus {
  border-color: var(--site-teal);
  box-shadow: 0 0 0 0.2rem rgba(15, 118, 110, 0.16);
}

.site-logo-upload {
  position: relative;
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px dashed var(--site-border);
  border-radius: 16px;
  background: var(--site-mint);
}

.site-logo-upload-copy {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--site-muted);
  font-size: 0.92rem;
}

.site-logo-preview {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--site-border);
  background: #fff;
}

.site-footer {
  background: #062825;
  color: #b7d4cf;
  padding: 3rem 0 1.25rem;
}

.site-logo-light,
.site-logo-light:hover {
  color: #fff;
}

.site-logo-light .site-logo-word {
  color: #fff;
}

.site-logo-light .site-logo-word span {
  color: #99f6e4;
}

.site-footer h6,
.site-footer .h6 {
  color: #fff;
}

.site-footer a {
  color: #d1fae5;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer-copy {
  max-width: 28rem;
}

.site-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

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

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

  .site-hero {
    padding: 2.8rem 0 3.2rem;
  }

  .site-search {
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    padding: 0.7rem;
  }

  .site-search button {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}

.shop-page {
  padding: 1.4rem 0 5rem;
}

.shop-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
  color: var(--site-teal-dark);
  font-weight: 700;
  text-decoration: none;
}

.shop-back:hover {
  color: var(--site-teal);
}

.shop-profile {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.shop-profile-logo {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--site-shadow);
  background: #d1fae5;
}

.shop-profile-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-profile-copy h1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.45rem;
  /* font-family: Fraunces, Georgia, serif; */
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.shop-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  /* padding: 0.2rem 0.6rem; */
  border-radius: 999px;
  background: var(--site-mint);
  color: var(--site-teal-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.shop-profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.3rem;
  margin-bottom: 0.55rem;
  color: var(--site-muted);
  font-size: 0.92rem;
}

.shop-profile-desc {
  margin: 0;
  max-width: 46rem;
  color: #35504d;
}

.shop-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 1.6rem;
}

.shop-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
}

.shop-product-search {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.7rem 1rem;
  background: #fff;
  border: 1px solid var(--site-border);
  border-radius: 16px;
}

.shop-product-search i {
  color: var(--site-teal);
}

.shop-product-search input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 1rem;
}

.shop-cat-chips {
  margin-bottom: 1.2rem;
}

.shop-cat-chips .site-chip {
  border: 0;
  cursor: pointer;
}

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

.product-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 18px;
  box-shadow: var(--site-shadow);
  padding: 0;
}

.product-card-image {
  flex: 0 0 88px;
  width: 88px;
  align-self: stretch;
  border-radius: 0;
  overflow: hidden;
  background: #d1fae5;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-card-body {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 0.85rem 0.65rem 0.75rem;
}

.product-card h2 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 800;
}

.product-price {
  margin: 0 0 0.7rem;
  color: var(--site-teal-dark);
  font-weight: 800;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.2rem;
  border: 1px solid var(--site-border);
  border-radius: 999px;
  background: #f8fffc;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: var(--site-teal);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 700;
}

.qty-btn:hover {
  background: var(--site-teal-dark);
}

.qty-value {
  min-width: 1.2rem;
  text-align: center;
  font-weight: 800;
}

.shop-no-products {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--site-muted);
}

.order-bar {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.2rem;
  background: #fff;
  border: 1px solid var(--site-border);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(15, 61, 56, 0.18);
}

.order-bar-close {
  position: absolute;
  top: 0.45rem;
  right: 0.55rem;
  border: 0;
  background: transparent;
  color: var(--site-muted);
}

.order-bar-copy {
  min-width: 0;
  padding-right: 1.5rem;
}

.order-lines {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #35504d;
  font-size: 0.92rem;
}

.order-total {
  margin: 0.35rem 0 0;
  font-weight: 800;
}

.order-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  background: #128c7e;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.order-whatsapp:hover {
  background: #0f766e;
  color: #fff;
}

body.has-order-bar .site-footer {
  padding-bottom: 7rem;
}

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

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

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

  .order-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .order-whatsapp {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .shop-profile {
    flex-direction: column;
  }

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

.listshop-page {
  padding-bottom: 3rem;
}

.listshop-hero {
  text-align: center;
  padding: 2.4rem 0 0.4rem;
}

.listshop-hero h1 {
  margin: 0 0 0.4rem;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--site-text);
}

.listshop-hero p {
  margin: 0 auto 1.5rem;
  color: var(--site-muted);
}

.listshop-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 auto 1.4rem;
  padding: 0;
  list-style: none;
  max-width: 52rem;
}

.listshop-steps a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  color: #6b7f7c;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  background: #fff;
  border: 1px solid var(--site-border);
}

.listshop-steps span {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e8f4f1;
  font-size: 0.78rem;
}

.listshop-steps li.is-active a {
  color: #fff;
  background: var(--site-teal);
  border-color: var(--site-teal);
}

.listshop-steps li.is-active span {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.listshop-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.listshop-card,
.listshop-submit-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--site-shadow);
  padding: 1.5rem 1.45rem 1.6rem;
  margin-bottom: 1.15rem;
  scroll-margin-top: 5.5rem;
}

.listshop-card-head {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}

.listshop-locate {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
  border: 1px solid var(--site-teal);
  background: var(--site-mint);
  color: var(--site-teal-dark);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
}

.listshop-locate:hover,
.listshop-locate:focus {
  background: var(--site-teal);
  border-color: var(--site-teal);
  color: #fff;
}

.listshop-locate:disabled {
  opacity: 0.65;
  cursor: wait;
}

.listshop-locate-status {
  min-height: 1.2rem;
  margin: -0.5rem 0 0.85rem;
  color: var(--site-muted);
  font-size: 0.88rem;
}

.listshop-locate-status.is-error {
  color: #b42318;
}

.listshop-card-head h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.listshop-card-head p {
  margin: 0.15rem 0 0;
  color: var(--site-muted);
  font-size: 0.92rem;
}

.listshop-badge {
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  font-size: 1.1rem;
}

.listshop-badge-user { background: #0F766E; }
.listshop-badge-shop { background: var(--site-teal); }
.listshop-badge-pin { background: #0F766E; }
.listshop-badge-photos { background: #0F766E; }

.listshop-subhead {
  margin: 1.35rem 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.listshop-req {
  color: #dc2626;
}

.listshop-optional {
  color: var(--site-muted);
  font-weight: 500;
}

.listshop-photo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.listshop-avatar {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  background: #eef6f4;
  border: 1px dashed var(--site-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #8aa29e;
  font-size: 2rem;
}

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

.listshop-photo-copy p {
  margin: 0.35rem 0 0;
  color: var(--site-muted);
  font-size: 0.86rem;
}

.listshop-upload-btn {
  display: inline-flex;
  cursor: pointer;
  font-weight: 700;
  color: var(--site-teal-dark);
}

.listshop-input,
.listshop-phone {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid #d7e5e1;
  border-radius: 12px;
  background: #fff;
  padding: 0 0.85rem;
  min-height: 48px;
}

.listshop-input:focus-within,
.listshop-phone:focus-within {
  border-color: var(--site-teal);
  box-shadow: 0 0 0 0.2rem rgba(15, 118, 110, 0.16);
}

.listshop-input i,
.listshop-phone span {
  color: #7d9490;
  flex: 0 0 auto;
}

.listshop-phone span {
  font-weight: 700;
  color: #35504d;
}

.listshop-wa {
  color: #128c7e !important;
  font-size: 1.15rem;
}

.listshop-input input,
.listshop-phone input {
  border: 0;
  outline: 0;
  width: 100%;
  background: transparent;
  padding: 0.7rem 0;
  color: var(--site-text);
}

.listshop-eye {
  border: 0;
  background: transparent;
  color: #7d9490;
  padding: 0;
}

.listshop-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  text-align: center;
  min-height: 160px;
  padding: 1.1rem;
  border: 1.5px dashed var(--site-border);
  border-radius: 16px;
  background: #f7fbfa;
  cursor: pointer;
}

.listshop-drop i {
  font-size: 1.6rem;
  color: var(--site-teal);
}

.listshop-drop strong {
  font-size: 0.95rem;
}

.listshop-drop span,
.listshop-drop small {
  color: var(--site-muted);
  font-size: 0.82rem;
}

.listshop-drop.is-over,
.listshop-drop:hover {
  border-color: var(--site-teal);
  background: var(--site-mint);
}

.listshop-drop-logo {
  min-height: 180px;
}

.listshop-logo-preview {
  width: 100%;
  max-height: 140px;
  object-fit: contain;
}

.listshop-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.7rem;
}

.listshop-thumb {
  position: relative;
  width: 64px;
  height: 64px;
}

.listshop-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.listshop-thumb button {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: #14302e;
  color: #fff;
  line-height: 1;
  font-size: 0.85rem;
}

.listshop-terms {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 1.1rem;
  color: #35504d;
}

.listshop-terms input {
  margin-top: 0.25rem;
}

.listshop-terms a {
  color: var(--site-teal-dark);
  font-weight: 700;
}

.listshop-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 14px;
  padding: 0.9rem 1.2rem;
  background: var(--site-teal);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
}

.listshop-submit:hover,
.listshop-submit:focus {
  background: var(--site-teal-dark);
  color: #fff;
}

@media (max-width: 575.98px) {
  .listshop-steps a {
    padding: 0.4rem 0.65rem;
    font-size: 0.8rem;
  }

  .listshop-photo-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .listshop-locate {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}

