/* build: force_refresh_11 */
body{
  background:#f6f6f6;
  font-family:'Inter',Arial,sans-serif;
  color:#111;
}

.market-topbar{
  background:#fff;
  border-bottom:1px solid #ececec;
  position:sticky;
  top:0;
  z-index:20;
}

.market-topbar-inner{
  max-width:1200px;
  margin:auto;
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.market-brand{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  flex-shrink:0;
}

.market-brand img{
  height:32px;
  width:auto;
  object-fit:contain;
  display:block;
}

.market-topbar-actions{
  display:flex;
  align-items:center;
  gap:8px;
  flex-shrink:0;
}

.market-auth-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 14px;
  border-radius:10px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  white-space:nowrap;
  box-sizing:border-box;
  transition:border-color .18s ease,color .18s ease,background .18s ease;
}

.market-auth-btn-outline{
  color:#222;
  background:#fff;
  border:1px solid #d8d8d8;
}

.market-auth-btn-outline:hover{
  border-color:#ef3d2f;
  color:#ef3d2f;
}

.market-auth-btn-primary{
  color:#fff;
  background:#17a531;
  border:1px solid #17a531;
}

.market-auth-btn-primary:hover{
  background:#128728;
  border-color:#128728;
}

.topbar{
  background:#fff;
  border-bottom:1px solid #ececec;
}

.topbar-inner{
  max-width:1200px;
  margin:auto;
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  padding:0;
  margin:0;
}

.brand img{
  height:38px;
  width:auto;
  max-width:none;
  object-fit:contain;
  display:block;
  border-radius:0;
}

.topbar-seller-btn{
  font-size:14px;
  font-weight:600;
  color:#222;
  text-decoration:none;
  padding:8px 14px;
  border:1px solid #d8d8d8;
  border-radius:10px;
  background:#fff;
  white-space:nowrap;
  transition:border-color .18s ease,color .18s ease;
}

.topbar-seller-btn:hover{
  border-color:#ef3d2f;
  color:#ef3d2f;
}

.brand-title{
  font-size:22px;
  font-weight:800;
  color:#111;
}

.brand-title span{
  color:#ef3d2f;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:16px;
}

.hero{
  background:#fff;
  border-radius:16px;
  padding:8px;
  margin-top:8px;
  border:1px solid #efefef;
  box-shadow:0 10px 24px rgba(0,0,0,.05);
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 260px;
  gap:12px;
}

.hero-title{
  font-size:22px;
  line-height:1.05;
  font-weight:900;
  margin-bottom:8px;
}

.hero-title span{
  color:#ef3d2f;
}

.hero-sub{
  font-size:14px;
  line-height:1.3;
  color:#555;
  max-width:620px;
}

.hero-actions{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.action-card{
  background:#fff8f7;
  border:1px solid #ffd7d2;
  border-radius:14px;
  padding:12px 16px;
  text-decoration:none;
  color:#111;
  display:flex;
  justify-content:space-between;
  align-items:center;
  min-height:50px;
}

.action-card:hover{
  transform:translateY(-2px);
  box-shadow:0 4px 18px rgba(0,0,0,.06);
}

.action-title{
  font-size:14px;
  font-weight:800;
  margin-bottom:3px;
}

.action-sub{
  color:#666;
  font-size:12px;
  line-height:1.2;
}

.search-box{
  margin-top:10px;
}

.search-row{
  display:flex;
  gap:14px;
}

.search-row input{
  flex:1;
  height:44px;
  border-radius:14px;
  border:1px solid #ddd;
  padding:0 18px;
  font-size:16px;
}

.search-btn{
  width:150px;
  height:44px;
  border:none;
  border-radius:14px;
  background:#ef3d2f;
  color:#fff;
  font-size:18px;
  font-weight:800;
  cursor:pointer;
}

.filter-box{
  margin-top:10px;
  background:#fff;
  border:1px solid #eee;
  border-radius:14px;
  padding:10px;
}

.filter-title{
  font-size:16px;
  font-weight:800;
  margin-bottom:8px;
}

.filter-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr 1fr;
  gap:10px;
}

.filter-grid select{
  height:40px;
  border-radius:12px;
  border:1px solid #ddd;
  padding:0 14px;
  font-size:15px;
}

.products-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:8px;
  margin-bottom:12px;
}

.products-head h2{
  font-size:28px;
  margin:0;
}

.products-link{
  color:#ef3d2f;
  text-decoration:none;
  font-size:16px;
  font-weight:700;
}

.products{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.product{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  border:1px solid #ededed;
  box-shadow:0 4px 14px rgba(0,0,0,.04);
}

.product img{
  width:100%;
  height:150px;
  object-fit:contain;
  object-position:center;
  background:#fff;
  display:block;
  padding:10px;
}

.product-body{
  padding:8px 10px 10px;
}

.product-title{
  font-size:14px;
  font-weight:600;
  line-height:1.3;
  margin-bottom:6px;
  color:#111;
  min-height:36px;

  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.product-price{
  color:#ef3d2f;
  font-size:17px;
  font-weight:900;
  margin-bottom:6px;
}

.product-seller{
  color:#666;
  margin-bottom:6px;
  font-size:14px;
}

.btn-green,
.product-wa-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:36px;
  background:#25D366;
  color:#fff;
  text-align:center;
  text-decoration:none;
  padding:0 10px;
  border-radius:10px;
  font-weight:700;
  margin-top:0;
  font-size:13px;
  transition:.18s;
  box-shadow:0 4px 12px rgba(37,211,102,.22);
  border:1px solid #25D366;
}

.btn-green:hover,
.product-wa-btn:hover{
  background:#20bd5a;
  border-color:#20bd5a;
  transform:translateY(-1px);
}

.wa-label-short{
  display:none;
}

.wa-label-full{
  display:inline;
}

.cta{
  background:#fff0f0;
  border-radius:18px;
  padding:18px;
  margin-top:28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}

.cta-title{
  font-size:22px;
  font-weight:900;
  margin-bottom:6px;
}

.cta-text{
  font-size:16px;
  color:#555;
}

.cta-btn{
  background:#ef3d2f;
  color:#fff;
  text-decoration:none;
  padding:12px 20px;
  border-radius:12px;
  font-size:15px;
  font-weight:800;
  white-space:nowrap;
}

.seller-block{
  background:#f1fff2;
  border-radius:18px;
  padding:18px;
  margin-top:18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}

.seller-title{
  font-size:22px;
  font-weight:900;
  margin-bottom:6px;
}

.seller-text{
  font-size:16px;
  color:#555;
}

.seller-btn{
  background:#17a531;
  color:#fff;
  text-decoration:none;
  padding:14px 24px;
  border-radius:14px;
  font-size:16px;
  font-weight:800;
  white-space:nowrap;
}

.footer{
  margin-top:28px;
  padding:18px 0;
  border-top:1px solid #e8e8e8;
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:24px;
  flex-wrap:wrap;
}

.footer-links a{
  color:#666;
  text-decoration:none;
  font-size:14px;
}

@media(max-width:900px){

  .hero-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .hero-title{
    font-size:30px;
  }

  .hero-sub{
    font-size:15px;
  }

  .action-card{
    padding:14px;
    border-radius:14px;
  }

  .search-box{
    margin-top:18px;
  }

  .search-row{
    flex-direction:column;
    gap:10px;
  }

  .search-btn{
    width:100%;
    height:46px;
  }

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

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

  .cta,
  .seller-block{
    flex-direction:column;
    align-items:flex-start;
  }

}

@media(max-width:640px){

  .market-topbar-inner{
    flex-wrap:nowrap;
    align-items:center;
    padding:8px 10px;
  }

  .market-brand img{
    height:24px !important;
    width:auto !important;
  }

  .market-topbar-actions{
    flex:1;
    justify-content:flex-end;
    min-width:0;
  }

  .market-auth-btn{
    min-height:32px;
    padding:0 8px;
    font-size:11px;
  }

  .brand img{
    height:30px;
    width:auto;
    max-width:none;
    object-fit:contain;
    display:block;
    border-radius:0;
  }

  .brand-title{
    font-size:18px;
  }

  .container{
    padding:10px;
  }

.hero{
  padding:10px;
  margin-top:8px;
  border-radius:14px;
}

.hero-title{
  font-size:18px;
  margin-bottom:4px;
}

.hero-sub{
  font-size:12px;
  line-height:1.3;
}

  .hero-actions{
    gap:10px;
  }

.action-title{
  font-size:14px;
}

  .action-sub{
    font-size:13px;
  }

  .search-row{
    flex-direction:column;
    gap:8px;
  }

  .search-row input,
  .search-btn{
    height:42px !important;
    min-height:42px !important;
    width:100%;
  }

  .search-row input{
    font-size:14px;
  }

  .search-btn{
    font-size:16px;
  }

  .filter-box{
    padding:10px;
  }

  .filter-title{
    font-size:14px;
    margin-bottom:6px;
  }

  .filter-grid{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:8px !important;
  }

  .filter-grid select{
    height:38px;
    min-height:38px;
    font-size:13px;
    padding:0 10px;
    border-radius:10px;
  }

  .products-head{
    margin-top:12px;
    margin-bottom:10px;
  }

  .products-head h2{
    font-size:22px;
  }

  .products-link{
    font-size:14px;
  }

  .products{
    grid-template-columns:1fr 1fr;
    gap:10px;
    align-items:stretch;
  }

  .product.product-v2{
    display:flex;
    flex-direction:column;
    height:100%;
  }

  .product img{
    width:100%;
    height:95px;
    object-fit:contain;
    object-position:center;
    background:#fff;
    padding:6px;
  }

  .product-title{
    font-size:14px;
    min-height:34px;
  }

  .product-price{
    font-size:16px;
  }

  .product-meta-row,
  .seller-name{
    font-size:12px;
  }

  .product-meta-seller{
    flex-direction:column;
    align-items:flex-start;
    gap:2px;
  }

  .seller-line{
    display:flex;
    align-items:center;
    gap:6px;
    width:100%;
    min-width:0;
  }

  .seller-name,
  .card-seller-link{
    flex:1;
    min-width:0;
    font-size:12px;
  }

  .card-seller-logo-mini,
  .card-seller-icon-placeholder{
    width:20px !important;
    height:20px !important;
    min-width:20px !important;
    min-height:20px !important;
    margin-right:6px !important;
    border-radius:4px !important;
  }

  .meta-city{
    font-size:11px;
  }

  .product-actions-v2{
    grid-template-columns:1fr 1fr;
    gap:6px;
    margin-top:auto;
  }

  .btn-green,
  .product-detail-link{
    height:32px;
    min-height:32px;
    max-height:34px;
    font-size:12px;
    padding:0 6px;
    white-space:nowrap;
    border-radius:8px;
  }

  .wa-label-full{
    display:none;
  }

  .wa-label-short{
    display:inline;
  }

  .product-body{
    display:flex;
    flex-direction:column;
    flex:1 1 auto;
    padding:8px;
  }

  .product-meta-details{
    justify-content:flex-start;
    flex-wrap:wrap;
    font-size:11px;
    line-height:1.3;
    margin-bottom:4px;
    gap:0;
  }

  .product-meta-details span:last-child{
    word-break:break-all;
  }

  .product-meta-details .meta-sep{
    padding:0 4px;
  }

  .cta,
  .seller-block{
    padding:14px;
    border-radius:14px;
  }

  .cta-title,
  .seller-title{
    font-size:18px;
  }

  .cta-text,
  .seller-text{
    font-size:14px;
  }

  .cta-btn,
  .seller-btn{
    width:100%;
    text-align:center;
    padding:12px;
    font-size:15px;
  }

  .footer-links{
    gap:14px;
  }

}

.product-v2{
  display:flex;
  flex-direction:column;
  height:100%;
  transition:.18s;
}

.product-v2 .product-body{
  display:flex;
  flex-direction:column;
  flex:1 1 auto;
}

.product-v2 .product-actions-v2{
  margin-top:auto;
}

.product-v2:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 44px rgba(0,0,0,.10);
}

.product-image-link{
  display:block;
  border-bottom:1px solid #f1f1f1;
}

.product-title-link{
  text-decoration:none;
  color:#111;
}

.product-meta-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:8px;
  font-size:12px;
  line-height:1.35;
  color:#6b7280;
  margin-bottom:4px;
}

.product-meta-seller{
  color:#374151;
}

.seller-line{
  display:flex;
  align-items:center;
  gap:6px;
  min-width:0;
  flex:1;
}

.product-meta-details{
  justify-content:flex-start;
  flex-wrap:wrap;
  font-size:11px;
  line-height:1.3;
  margin-bottom:8px;
  gap:0;
}

.product-meta-details span:last-child{
  word-break:break-all;
}

.meta-city{
  color:#6b7280;
  white-space:nowrap;
}

.meta-sep{
  color:#c4c4c4;
  padding:0 2px;
}

.seller-info{
  display:flex;
  align-items:center;
  gap:6px;
  min-width:0;
  flex:1;
}

.seller-line .seller-socials{
  flex-shrink:0;
}

.seller-socials{
  display:inline-flex;
  align-items:center;
  gap:6px;
  flex-shrink:0;
}

.seller-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:14px;
  height:14px;
  color:#9ca3af;
  transition:color .18s ease;
}

.seller-icon svg{
  width:14px;
  height:14px;
  display:block;
}

.seller-icon-instagram:hover{
  color:#e1306c;
}

.seller-icon-website:hover{
  color:#2563eb;
}

.seller-logo{
  width:24px;
  height:24px;
  border-radius:50%;
  object-fit:cover;
  border:1px solid #ececec;
  background:#fff;
  flex-shrink:0;
}

.seller-name{
  font-weight:600;
  font-size:12px;
  color:#374151;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.card-seller-link{
  display:inline-flex !important;
  align-items:center !important;
  vertical-align:middle !important;
  text-decoration:none !important;
  color:#0066cc !important;
  cursor:pointer !important;
  font-weight:600;
  font-size:13px;
  transition:color .2s ease;
  min-width:0;
  max-width:100%;
  flex:1;
  gap:0;
}

.card-seller-link:hover{
  text-decoration:underline !important;
  color:#004499 !important;
}

.card-seller-link:hover .card-seller-name-text{
  color:#004499 !important;
}

.card-seller-name-text{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  min-width:0;
  color:inherit;
}

.verification-badge{
  display:inline-flex !important;
  align-items:center !important;
  flex-shrink:0;
  margin-left:4px;
  color:#0066cc;
  font-size:12px;
  font-weight:700;
  line-height:1;
}

.card-seller-link:hover .verification-badge{
  color:#004499 !important;
}

.product-v2 .card-seller-link .card-seller-logo-mini,
.card-seller-logo-mini{
  width:20px !important;
  height:20px !important;
  min-width:20px !important;
  min-height:20px !important;
  border-radius:4px !important;
  object-fit:contain !important;
  background-color:#ffffff !important;
  margin-right:6px !important;
  display:inline-block !important;
  vertical-align:middle !important;
  border:1px solid #eee;
  flex-shrink:0 !important;
  box-sizing:border-box !important;
  padding:1px;
}

.card-seller-icon-placeholder{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:20px !important;
  height:20px !important;
  min-width:20px !important;
  min-height:20px !important;
  border-radius:4px !important;
  background-color:#ffffff !important;
  margin-right:6px !important;
  border:1px solid #eee;
  flex-shrink:0 !important;
  color:#9ca3af;
  box-sizing:border-box !important;
  vertical-align:middle !important;
}

.card-seller-socials{
  display:inline-flex !important;
  align-items:center !important;
  gap:6px !important;
  flex-shrink:0 !important;
  margin-left:8px !important;
}

.product-v2 .card-seller-socials .seller-mini-chip,
a.seller-mini-chip{
  display:inline-block !important;
  font-size:11px !important;
  font-weight:700 !important;
  padding:2px 8px !important;
  border-radius:6px !important;
  text-decoration:none !important;
  border:none !important;
  line-height:1.3 !important;
  white-space:nowrap !important;
  box-sizing:border-box !important;
  cursor:pointer !important;
}

.insta-chip,
a.insta-chip.seller-mini-chip{
  background-color:#fdf2f8 !important;
  color:#db2777 !important;
}

.site-chip,
a.site-chip.seller-mini-chip{
  background-color:#f0f9ff !important;
  color:#0284c7 !important;
}

.product-meta-row span.card-seller-socials{
  min-width:auto !important;
}

.product-meta-row span{
  min-width:0;
}

.product-meta-row.muted{
  color:#9ca3af;
}

.product-actions-v2{
  display:grid;
  gap:6px;
  margin-top:8px;
}

.product-wa-btn{
  margin-top:0;
}

.product-detail-link{
  display:flex;
  align-items:center;
  justify-content:center;
  height:36px;
  min-height:36px;
  border-radius:10px;
  border:1px solid #e5e5e5;
  color:#222;
  text-decoration:none;
  font-weight:600;
  font-size:13px;
  background:#fff;
}

.product-detail-link:hover{
  border-color:#ef3d2f;
  color:#ef3d2f;
}
