body{
  background:
    radial-gradient(circle at top left, rgba(230,81,0,.14), transparent 32%),
    radial-gradient(circle at top right, rgba(22,163,74,.10), transparent 30%),
    var(--seller-bg);
}

.seller-premium-wrap{
  max-width:1080px;
  margin:0 auto;
  padding:14px 12px 95px;
}

/* HERO */
.seller-hero{
  position:relative;
  overflow:hidden;
  border-radius:30px;
  background:linear-gradient(135deg,var(--seller-brand),var(--seller-brand-dark));
  color:#fff;
  box-shadow:var(--seller-shadow);
}

.seller-hero:before{
  content:"";
  position:absolute;
  width:230px;
  height:230px;
  right:-80px;
  top:-90px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
}

.seller-hero:after{
  content:"";
  position:absolute;
  width:140px;
  height:140px;
  left:-45px;
  bottom:-55px;
  border-radius:50%;
  background:rgba(255,255,255,.09);
}

.seller-hero-inner{
  position:relative;
  z-index:2;
  padding:30px 18px 24px;
  text-align:center;
}

.seller-top-label{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.26);
  font-size:12px;
  font-weight:1000;
  margin-bottom:16px;
  backdrop-filter:blur(10px);
}

.seller-avatar-premium{
  width:136px;
  height:136px;
  margin:0 auto;
  border-radius:50%;
  padding:5px;
  background:linear-gradient(135deg,#fff,#fff3e0,#dcfce7);
  box-shadow:0 20px 42px rgba(0,0,0,.24);
}

.seller-avatar-premium img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  border-radius:50%;
  border:4px solid #fff;
  background:#fff;
}

.seller-name-premium{
  margin-top:15px;
  font-size:29px;
  line-height:1.2;
  font-weight:1000;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  flex-wrap:wrap;
}

.seller-verified-pill{
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:6px 11px;
  border-radius:999px;
  background:#ecfdf5;
  color:#15803d;
  font-size:12px;
  font-weight:1000;
}

.seller-desc-premium{
  max-width:700px;
  margin:10px auto 0;
  font-size:14px;
  line-height:1.7;
  font-weight:800;
  color:rgba(255,255,255,.92);
}

.seller-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  margin-top:20px;
}

.seller-stat{
  border-radius:18px;
  padding:12px 8px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(10px);
}

.seller-stat strong{
  display:block;
  font-size:20px;
  font-weight:1000;
}

.seller-stat span{
  display:block;
  margin-top:3px;
  font-size:11px;
  font-weight:900;
  opacity:.9;
}

/* ACTION PANEL */
.seller-action-panel{
  margin-top:-18px;
  position:relative;
  z-index:5;
  background:rgba(255,255,255,.96);
  border-radius:26px;
  padding:14px;
  box-shadow:var(--seller-shadow-soft);
  border:1px solid var(--seller-border);
  backdrop-filter:blur(12px);
}

.seller-main-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.seller-main-btn{
  min-height:52px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-decoration:none;
  font-weight:1000;
  font-size:15px;
  border:0;
  cursor:pointer;
}

.seller-call-btn{
  background:#ecfdf5;
  color:#15803d;
  border:1px solid #bbf7d0;
}

.seller-wa-btn{
  background:#dcfce7;
  color:#128c32;
  border:1px solid #86efac;
}

.seller-share-big{
  margin-top:10px;
  width:100%;
  min-height:52px;
  border-radius:18px;
  background:linear-gradient(135deg,var(--seller-brand),var(--seller-brand-dark));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  font-size:16px;
  font-weight:1000;
  border:0;
  cursor:pointer;
  box-shadow:0 12px 26px rgba(15,23,42,.14);
}

.seller-social-row{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:13px;
}

.seller-social-row a{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  box-shadow:0 8px 18px rgba(15,23,42,.12);
}

.seller-fb{background:#1877F2}
.seller-insta{background:#E1306C}
.seller-yt{background:#FF0000}
.seller-web{background:#334155}
.seller-map{background:#16a34a}

/* INFO STRIP */
.seller-info-strip{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}

.seller-info-item{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:12px;
  background:var(--seller-soft);
  border:1px solid var(--seller-border);
  border-radius:17px;
  color:var(--seller-text);
  font-size:14px;
  font-weight:900;
  word-break:break-word;
}

.seller-info-item .svg-icon{
  color:var(--seller-brand);
}

/* SECTION HEAD */
.seller-section-head{
  margin:24px 2px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.seller-section-title{
  font-size:21px;
  font-weight:1000;
  color:var(--seller-text);
  display:flex;
  align-items:center;
  gap:8px;
}

.seller-section-count{
  padding:8px 12px;
  border-radius:999px;
  background:var(--seller-brand);
  color:#fff;
  font-size:13px;
  font-weight:1000;
}

/* LISTINGS */
.seller-listings-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}

.seller-list-card{
  background:#fff;
  border:2px solid #f2b01e;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(15,23,42,.12);
  display:grid;
  grid-template-columns:42% 58%;
}

/* 1:1 IMAGE */
.seller-list-img{
  position:relative;
  width:100%;
  aspect-ratio:1/1;
  overflow:hidden;
  background:#f1f5f9;
}

.seller-list-img a{
  display:block;
  position:relative;
  width:100%;
  height:100%;
  text-decoration:none;
}

.seller-list-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

.seller-img-overlay{
  position:absolute;
  left:12px;
  top:12px;
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:8px 14px;
  border-radius:999px;
  background:linear-gradient(135deg,#f59e0b,#d97706);
  color:#fff;
  font-size:13px;
  font-weight:1000;
  box-shadow:0 8px 18px rgba(245,158,11,.35);
}

.seller-list-body{
  padding:14px 14px 10px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:8px;
  min-width:0;
}

.seller-list-title-row{
  display:flex;
  flex-direction:column;
  gap:5px;
}

.seller-list-title{
  font-size:17px;
  line-height:1.35;
  color:#0f172a;
  font-weight:1000;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.seller-list-price{
  color:#e65100;
  font-size:24px;
  line-height:1.1;
  font-weight:1000;
  white-space:nowrap;
}

.seller-list-meta{
  display:none;
}

.seller-list-desc{
  background:transparent;
  border:0;
  color:#64748b;
  padding:0;
  font-size:14px;
  line-height:1.45;
  font-weight:900;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* ACTION BUTTONS */
.seller-list-actions{
  grid-column:1/-1;
  padding:12px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  border-top:1px solid #f3e7cf;
  background:#fffaf2;
}

.seller-list-actions a{
  min-height:52px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  text-decoration:none;
  font-weight:1000;
  font-size:15px;
  white-space:nowrap;
}

.seller-list-call{
  background:#fff4df;
  color:#c2410c;
  border:0;
}

.seller-list-wa{
  background:#dcfce7;
  color:#15803d;
  border:0;
}

.seller-list-share{
  background:#fff4df;
  color:#c2410c;
  border:0;
}

.seller-list-view{
  display:none !important;
}

.seller-empty-box{
  background:#fff;
  border-radius:24px;
  padding:22px;
  text-align:center;
  font-weight:1000;
  color:#b91c1c;
  box-shadow:var(--seller-shadow-soft);
  border:1px solid #fecdd3;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
}

/* RESPONSIVE */
@media(min-width:640px){
  .seller-premium-wrap{
    padding:18px 16px 100px;
  }

  .seller-hero-inner{
    padding:38px 26px 30px;
  }

  .seller-name-premium{
    font-size:32px;
  }

  .seller-info-strip{
    grid-template-columns:repeat(2,1fr);
  }

  .seller-listings-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(min-width:1024px){
  .seller-premium-wrap{
    padding-top:24px;
  }

  .seller-hero-inner{
    padding:44px 34px 36px;
  }

  .seller-avatar-premium{
    width:150px;
    height:150px;
  }

  .seller-action-panel{
    max-width:780px;
    margin-left:auto;
    margin-right:auto;
  }

  .seller-listings-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:520px){
  .seller-hero{
    border-radius:24px;
  }

  .seller-name-premium{
    font-size:25px;
  }

  .seller-stats{
    grid-template-columns:repeat(2,1fr);
  }

  .seller-main-actions{
    grid-template-columns:1fr 1fr;
  }

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

  .seller-list-card{
    grid-template-columns:42% 58%;
  }

  .seller-list-title{
    font-size:16px;
  }

  .seller-list-price{
    font-size:23px;
  }

  .seller-list-desc{
    font-size:13px;
  }

  .seller-img-overlay{
    left:10px;
    top:10px;
    padding:7px 12px;
    font-size:12px;
  }

  .seller-list-actions{
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    padding:10px;
  }

  .seller-list-actions a{
    min-height:50px;
    font-size:14px;
  }
}