@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

:root{
  --bg:#f4f6f8;
  --bg-soft:#eef2f6;
  --surface:#ffffff;
  --surface-2:#fbfcfd;
  --surface-3:#f7f9fc;
  --text:#1f2328;
  --muted:#667085;
  --muted-2:#98a2b3;
  --brand:#ffe600;
  --brand-dark:#e3cb00;
  --brand-soft:#fff8c7;
  --blue:#3483fa;
  --blue-dark:#2968c8;
  --blue-soft:#edf4ff;
  --orange:#ff7a00;
  --orange-soft:#fff2e8;
  --green:#00a650;
  --green-soft:#ecfdf3;
  --danger:#d92d20;
  --border:#e4e7ec;
  --border-strong:#d0d5dd;
  --shadow:0 14px 36px rgba(16,24,40,.10);
  --shadow-soft:0 6px 18px rgba(16,24,40,.06);
  --shadow-card:0 8px 24px rgba(16,24,40,.08);
  --radius:16px;
  --radius-sm:12px;
  --radius-lg:22px;
  --container:min(1220px,94%);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,230,0,.14), transparent 22%),
    radial-gradient(circle at top right, rgba(52,131,250,.08), transparent 24%),
    var(--bg);
  min-height:100vh;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
button,input,select,textarea{font:inherit}
.container{width:var(--container);margin:auto}
main{padding-bottom:50px}
::selection{background:#dcebff;color:#0b3f9c}

h1,h2,h3,h4,.brand,.section-title h2,.page-head h1,.panel-header h2,.stat-card strong{
  font-family:'Plus Jakarta Sans','Inter',system-ui,sans-serif;
  letter-spacing:-.04em;
}
p{line-height:1.65}

.topbar{
  background:linear-gradient(180deg,var(--brand) 0%, #ffe75c 100%);
  border-bottom:1px solid rgba(0,0,0,.08);
  position:sticky;
  top:0;
  z-index:50;
  box-shadow:0 4px 14px rgba(0,0,0,.08);
}
.nav{
  display:grid;
  grid-template-columns:220px minmax(260px,1fr) auto;
  align-items:center;
  gap:18px;
  padding:12px 0 10px;
}
.brand{
  font-weight:800;
  font-size:27px;
  color:#232323;
  line-height:1;
}
.nav-search{
  display:flex;
  background:#fff;
  border-radius:12px;
  box-shadow:0 6px 18px rgba(0,0,0,.12);
  overflow:hidden;
  min-height:48px;
  border:1px solid rgba(0,0,0,.06);
}
.nav-search input{
  flex:1;
  border:0;
  padding:0 16px;
  outline:0;
  font-size:15px;
  background:#fff;
}
.nav-search button{
  width:58px;
  border:0;
  border-left:1px solid var(--border);
  background:#fff;
  cursor:pointer;
  font-size:18px;
  transition:.18s ease;
}
.nav-search button:hover{background:var(--blue-soft)}
.navlinks{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.navlinks a:not(.btn){
  color:#2f2f2f;
  font-weight:700;
  font-size:14px;
  padding:8px 0;
}
.navlinks a:not(.btn):hover{color:#000}
.subnav{
  background:transparent;
  border-top:1px solid rgba(0,0,0,.05);
}
.subnav-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:0 0 12px;
  color:#333;
  font-size:14px;
}
.subnav-links{display:flex;gap:18px;flex-wrap:wrap}
.subnav-links a{color:#333;font-weight:600}
.subnav-location{
  display:flex;align-items:center;gap:8px;
  font-weight:800;
  color:#333;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:12px;
  padding:10px 15px;
  font-weight:800;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  box-shadow:var(--shadow-soft);
  transition:.16s ease;
  cursor:pointer;
  min-height:44px;
}
.btn:hover{transform:translateY(-1px);box-shadow:var(--shadow);border-color:var(--border-strong)}
.btn.primary{background:linear-gradient(180deg,var(--blue),#2c78ec);color:#fff;border-color:var(--blue)}
.btn.primary:hover{background:linear-gradient(180deg,#3f8afb,var(--blue-dark))}
.btn.gold{background:linear-gradient(180deg,var(--orange),#ef6800);color:#fff;border-color:var(--orange)}
.btn.ok{background:linear-gradient(180deg,var(--green),#099250);color:#fff;border-color:var(--green)}
.btn.danger{background:#fff5f5;color:var(--danger);border-color:#fecdca}
.btn.wide{width:100%}

.input, textarea, .searchbar select, .searchbar input{
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  border-radius:12px;
  padding:13px 14px;
  font-size:15px;
  outline:none;
  width:100%;
  transition:.16s ease;
}
.input::placeholder,textarea::placeholder,.searchbar input::placeholder{color:var(--muted-2)}
.input:focus, textarea:focus, .searchbar select:focus, .searchbar input:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 4px rgba(52,131,250,.14);
}
textarea{min-height:120px;resize:vertical}

.hero{padding:22px 0 16px}
.market-hero{
  display:grid;
  grid-template-columns:1.18fr .82fr;
  gap:18px;
  align-items:stretch;
}
.hero-copy{
  background:linear-gradient(135deg,#fff 0%, #fff8d7 52%, #f7fbff 100%);
  border:1px solid #f1de47;
  border-radius:var(--radius-lg);
  padding:32px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.hero-copy::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(140deg, transparent 0%, rgba(255,255,255,.36) 48%, transparent 68%);
  pointer-events:none;
}
.hero-copy:after{
  content:"";
  position:absolute;
  right:-70px;
  bottom:-90px;
  width:260px;
  height:260px;
  background:rgba(52,131,250,.11);
  border-radius:50%;
}
.hero-copy h1{
  font-size:clamp(30px,5vw,54px);
  line-height:1.02;
  margin:12px 0 14px;
  max-width:760px;
}
.hero-copy p{
  font-size:18px;
  color:#475467;
  max-width:760px;
  margin:0 0 18px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  background:#edf4ff;
  color:#175cd3;
  border:1px solid #d1e0ff;
  font-size:12px;
  font-weight:900;
  padding:8px 13px;
  letter-spacing:.25px;
  text-transform:uppercase;
}
.badge.yellow{background:#fff8d1;color:#7a5b00;border-color:#f4dc00}
.tag-row{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:10px}
.tag{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background:#f2f4f7;
  color:#475467;
  border:1px solid var(--border);
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.25px;
}
.tag.sale{background:var(--green-soft);color:#027a48;border-color:#abefc6}
.hero-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
.searchbar{display:flex;gap:10px;margin-top:20px;flex-wrap:wrap}
.searchbar input{flex:1;min-width:220px}
.searchbar select{max-width:240px}
.side-deals{display:grid;gap:12px}
.deal-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:20px;
  box-shadow:var(--shadow-soft);
}
.deal-card strong{
  display:block;
  font-family:'Plus Jakarta Sans','Inter',sans-serif;
  font-size:24px;
  margin-bottom:6px;
  color:#101828;
}
.deal-card span{color:var(--muted);line-height:1.55}
.deal-card.highlight{
  background:linear-gradient(135deg,#3483fa 0%, #165edb 100%);
  color:#fff;
  border-color:#3483fa;
}
.deal-card.highlight span{color:#e4ecff}
.pill-row{
  display:flex;
  gap:10px;
  flex-wrap:nowrap;
  margin:18px 0 12px;
  overflow:auto;
  padding-bottom:4px;
  scrollbar-width:none;
}
.pill-row::-webkit-scrollbar{display:none}
.pill{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--border);
  color:#344054;
  font-weight:800;
  box-shadow:var(--shadow-soft);
  white-space:nowrap;
}
.pill.active,.pill:hover{
  color:#111;
  border-color:var(--brand-dark);
  background:#fffbe6;
}
.market-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin:18px 0 12px;
}
.strip-card{
  padding:18px;
  border-radius:16px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow-soft);
}
.strip-card strong{display:block;font-family:'Plus Jakarta Sans','Inter',sans-serif;font-size:18px;margin-bottom:6px}
.strip-card span{color:var(--muted);font-size:14px;line-height:1.55}

.section{margin-top:24px}
.section-title{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  margin:20px 0 16px;
}
.section-title h1,.section-title h2,.section-title h3{margin:0}
.section-title h2{font-size:28px}
.section-subtitle{color:var(--muted);font-size:15px;margin-top:6px}
.grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.catgrid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.card,.panel,.product-info,.product-cover,.login-card,.quick-card,.stat-card,.form-section{
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow-card);
}
.card{
  border-radius:16px;
  overflow:hidden;
  transition:.18s ease;
}
.card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
  border-color:var(--border-strong);
}
.card a .product-img{transition:transform .26s ease}
.card:hover a .product-img{transform:scale(1.025)}
.card-body{padding:14px}
.product-img{
  aspect-ratio:1/1;
  background:linear-gradient(180deg,#f4f6f8,#edf1f5);
  object-fit:cover;
  width:100%;
}
.card h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.28;
  font-weight:700;
}
.muted{color:var(--muted)}
.price{
  display:flex;
  align-items:center;
  gap:9px;
  flex-wrap:wrap;
  margin:10px 0 14px;
}
.old{color:var(--muted);text-decoration:line-through;font-size:14px}
.new{
  font-family:'Plus Jakarta Sans','Inter',sans-serif;
  font-size:26px;
  font-weight:800;
  color:#222;
}

.installment{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#027a48;
  background:#ecfdf3;
  border:1px solid #abefc6;
  border-radius:999px;
  padding:6px 10px;
  font-size:13px;
  font-weight:900;
  margin:-4px 0 10px;
}
.installment::before{content:"💳"}
.installment.big{
  display:flex;
  width:fit-content;
  max-width:100%;
  font-size:15px;
  padding:9px 13px;
  margin:0 0 12px;
}

.free-shipping{
  color:var(--green);
  font-size:13px;
  font-weight:800;
  margin-top:-6px;
  margin-bottom:12px;
}
.actions{display:flex;gap:8px;flex-wrap:wrap}
.actions .btn{padding:9px 11px;font-size:14px;flex:1 1 auto}
.market-layout{display:grid;grid-template-columns:250px 1fr;gap:18px}
.filter-panel{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px;
  box-shadow:var(--shadow-soft);
  align-self:start;
  position:sticky;
  top:112px;
}
.filter-panel h3{margin:0 0 12px;font-size:18px}
.filter-list{display:grid;gap:8px}
.filter-list a{
  padding:9px 10px;
  border-radius:10px;
  color:#475467;
  font-weight:700;
}
.filter-list a.active,.filter-list a:hover{
  background:#fffbe6;
  color:#111;
}
.empty-state{
  padding:34px;
  border-radius:16px;
  border:1px dashed var(--border-strong);
  background:#fff;
  text-align:center;
  color:var(--muted);
}

.product-page{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:20px;
  align-items:start;
  margin:24px 0;
}
.product-cover{border-radius:18px;overflow:hidden}
.product-info{
  border-radius:18px;
  padding:24px;
  position:sticky;
  top:112px;
}
.product-info h1{
  font-size:34px;
  line-height:1.08;
  margin:10px 0 12px;
  font-weight:800;
}
.breadcrumbs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:14px;
  margin-top:18px;
}
.seller-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:18px;
  box-shadow:var(--shadow-soft);
  margin-top:16px;
}
.seller-box h3{margin:0 0 8px;font-size:18px}
.seller-box p{margin:0;color:var(--muted);line-height:1.55}
.info-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin:18px 0;
}
.info-point{
  padding:13px;
  border-radius:12px;
  background:#f9fafb;
  border:1px solid var(--border);
}
.info-point strong{display:block;font-size:14px;margin-bottom:4px}
.info-point span{font-size:13px;color:var(--muted)}
.copybox{
  background:#f9fafb;
  border:1px dashed var(--border-strong);
  color:#344054;
  border-radius:14px;
  padding:14px;
  white-space:pre-wrap;
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  font-size:14px;
  line-height:1.55;
}
.related-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.footer{padding:42px 0;color:var(--muted);text-align:center}

/* admin */
.admin-layout{display:grid;grid-template-columns:270px 1fr;min-height:100vh}
.sidebar{
  background:#fff;
  color:#222;
  padding:18px;
  border-right:1px solid var(--border);
  position:sticky;
  top:0;
  height:100vh;
  box-shadow:2px 0 12px rgba(16,24,40,.04);
}
.sidebar-header{
  padding:10px 8px 16px;
  border-bottom:1px solid var(--border);
  margin-bottom:14px;
}
.sidebar-header h2{margin:0;font-size:25px}
.sidebar-header p{margin:8px 0 0;color:var(--muted);line-height:1.5;font-size:13px}
.sidebar-group{margin:12px 0}
.sidebar-label{
  display:block;
  color:var(--muted-2);
  font-size:12px;
  font-weight:900;
  letter-spacing:.3px;
  text-transform:uppercase;
  padding:0 10px 8px;
}
.sidebar a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:11px 12px;
  border-radius:12px;
  margin:5px 0;
  color:#344054;
  background:transparent;
  border:1px solid transparent;
  font-weight:800;
}
.sidebar a:hover{background:#fffbe6;border-color:#f4dc00;color:#111}
.admin-main{padding:24px}
.page-head,.panel-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.page-head{margin-bottom:18px}
.page-head h1,.panel-header h2,.panel-header h3{margin:0}
.page-head p,.panel-header p{margin:6px 0 0;color:var(--muted)}
.panel{border-radius:16px;padding:20px;margin-bottom:18px}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-bottom:18px}
.stat-card{border-radius:16px;padding:18px}
.stat-card span{display:block;color:var(--muted);font-size:14px;font-weight:700;margin-bottom:8px}
.stat-card strong{font-size:30px;line-height:1}
.quick-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.quick-card{padding:18px;border-radius:16px}
.quick-card h3{margin:0 0 8px;font-size:18px}
.quick-card p{margin:0 0 14px;color:var(--muted);line-height:1.55}
.split-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:18px}
.table-wrap{overflow:auto;border-radius:12px}
.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
}
.table th,.table td{
  border-bottom:1px solid var(--border);
  padding:13px 12px;
  text-align:left;
  vertical-align:top;
  background:#fff;
}
.table th{background:#f9fafb;color:#344054;font-size:14px}
.table tr:hover td{background:#fcfcfd}
.table tr:last-child td{border-bottom:0}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.form-grid .full{grid-column:1/-1}
.form-section{padding:18px;border-radius:16px}
.form-section h3{margin:0 0 6px;font-size:19px}
.form-section p{margin:0 0 14px;color:var(--muted);font-size:14px;line-height:1.55}
label{display:inline-block;margin-bottom:8px;font-weight:800;color:#344054}
.checkline{
  display:flex;
  align-items:center;
  gap:10px;
  padding:13px 14px;
  border-radius:12px;
  background:#f9fafb;
  border:1px solid var(--border);
  font-weight:800;
}
.preview-img{
  width:92px;
  height:92px;
  object-fit:cover;
  border-radius:12px;
  background:#f2f4f7;
  border:1px solid var(--border);
  margin-top:10px;
}
.helper{display:block;margin-top:7px;color:var(--muted);font-size:13px;line-height:1.45}
.kpi-row{display:flex;gap:8px;flex-wrap:wrap}
.kpi-pill{
  padding:9px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--border);
  color:#344054;
  font-size:13px;
  font-weight:800;
}
.login-wrap{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
  background:linear-gradient(180deg,var(--brand) 0%,var(--brand) 40%,var(--bg) 40%,var(--bg) 100%);
}
.login-card{
  width:min(450px,100%);
  border-radius:18px;
  padding:30px;
  box-shadow:var(--shadow);
}
.login-card h1{margin:12px 0 10px}
.alert{
  padding:12px 14px;
  border-radius:12px;
  background:#fffaeb;
  border:1px solid #fedf89;
  margin:10px 0;
  color:#93370d;
}
.success{background:#ecfdf3;border-color:#abefc6;color:#027a48}
.campaign-list{
  display:grid;
  gap:10px;
  max-height:360px;
  overflow:auto;
  padding-right:4px;
}
.campaign-item{
  background:#f9fafb;
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.small{font-size:13px}
.hide{display:none}
hr{border:0;border-top:1px solid var(--border);margin:18px 0}
.footer-note{font-size:13px;color:var(--muted);margin-top:16px;line-height:1.55}

.toast{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
  background:#101828;
  color:#fff;
  padding:12px 14px;
  border-radius:12px;
  box-shadow:0 14px 30px rgba(0,0,0,.18);
  opacity:0;
  transform:translateY(10px);
  transition:.22s ease;
  font-size:14px;
  font-weight:700;
  pointer-events:none;
}
.toast.show{opacity:1;transform:translateY(0)}

@media(max-width:1180px){
  .grid{grid-template-columns:repeat(3,1fr)}
  .related-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:1100px){
  .market-hero,.product-page,.split-grid,.market-layout{grid-template-columns:1fr}
  .product-info,.filter-panel{position:relative;top:0}
  .catgrid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:960px){
  .nav{grid-template-columns:1fr;gap:12px}
  .navlinks{justify-content:flex-start}
  .subnav-inner{align-items:flex-start;flex-direction:column;padding-bottom:12px}
  .grid,.related-grid{grid-template-columns:repeat(2,1fr)}
  .catgrid,.market-strip,.stats-grid,.quick-grid,.admin-layout,.info-points{grid-template-columns:1fr}
  .sidebar{height:auto;position:relative}
  .form-grid{grid-template-columns:1fr}
}
@media(max-width:640px){
  .grid,.related-grid,.catgrid{grid-template-columns:1fr}
  .hero-copy{padding:22px}
  .hero-copy h1{font-size:34px}
  .hero-copy p{font-size:16px}
  .product-info h1{font-size:28px}
  .searchbar,.hero-actions,.actions{flex-direction:column}
  .searchbar select{max-width:none}
  .actions .btn{width:100%}
  .nav-search{min-height:46px}
  .btn{width:100%}
  .navlinks .btn{width:auto}
  .section-title{align-items:flex-start;flex-direction:column}
  .market-strip{grid-template-columns:1fr}
  .subnav-links{gap:12px;overflow:auto;white-space:nowrap}
  .product-page{gap:16px}
  .product-cover,.product-info,.hero-copy,.card,.panel,.filter-panel{border-radius:14px}
}


/* share template */
.share-page{
  background:#eef2f6;
}
.share-wrap{
  width:min(1280px,94%);
  margin:28px auto;
  display:grid;
  grid-template-columns:minmax(320px,720px) 1fr;
  gap:24px;
  align-items:start;
}
.share-card-template{
  width:100%;
  aspect-ratio:1/1;
  background:
    radial-gradient(circle at top right, rgba(52,131,250,.22), transparent 34%),
    linear-gradient(135deg,#ffe600 0%,#fff3a0 46%,#ffffff 100%);
  border-radius:34px;
  padding:34px;
  box-shadow:0 24px 70px rgba(16,24,40,.18);
  display:grid;
  grid-template-rows:auto 1fr auto;
  overflow:hidden;
  position:relative;
}
.share-card-template::after{
  content:"";
  position:absolute;
  width:320px;
  height:320px;
  border-radius:50%;
  right:-120px;
  bottom:-120px;
  background:rgba(52,131,250,.16);
}
.share-brand{
  font-family:'Plus Jakarta Sans','Inter',sans-serif;
  font-weight:900;
  font-size:28px;
  letter-spacing:-.05em;
  color:#1f2328;
  z-index:1;
}
.share-image-box{
  align-self:center;
  justify-self:center;
  width:min(82%,440px);
  aspect-ratio:1/1;
  border-radius:28px;
  background:#fff;
  padding:16px;
  box-shadow:0 16px 45px rgba(16,24,40,.16);
  z-index:1;
}
.share-image-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:20px;
}
.share-content{
  z-index:1;
}
.share-category{
  display:inline-flex;
  border-radius:999px;
  background:#fff;
  color:#175cd3;
  border:1px solid #d1e0ff;
  padding:8px 12px;
  font-weight:900;
  font-size:13px;
  text-transform:uppercase;
}
.share-content h1{
  font-size:clamp(28px,4vw,46px);
  line-height:1.02;
  margin:14px 0 8px;
}
.share-content p{
  color:#475467;
  margin:0 0 12px;
  font-weight:600;
}
.share-price{
  font-family:'Plus Jakarta Sans','Inter',sans-serif;
  font-weight:900;
  font-size:42px;
  color:#1f2328;
}
.share-installment{
  display:inline-flex;
  margin-top:8px;
  border-radius:999px;
  padding:9px 13px;
  background:#ecfdf3;
  color:#027a48;
  border:1px solid #abefc6;
  font-weight:900;
}
.share-cta{
  margin-top:14px;
  display:inline-flex;
  background:#3483fa;
  color:#fff;
  border-radius:14px;
  padding:13px 18px;
  font-weight:900;
}
.share-tools{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:22px;
  box-shadow:var(--shadow-soft);
}
.share-tools h2{margin:0 0 8px}
.share-tools p{color:var(--muted);margin-top:0}
@media(max-width:980px){
  .share-wrap{grid-template-columns:1fr}
}
@media(max-width:640px){
  .share-card-template{border-radius:22px;padding:22px}
  .share-image-box{width:78%;padding:10px;border-radius:20px}
  .share-price{font-size:34px}
}
