:root{
  --swp-bg:#ffffff;
  --swp-surface:#ffffff;
  --swp-surface-2:#faf9ff;
  --swp-line:rgba(84,65,148,.12);
  --swp-text:#231942;
  --swp-muted:#6f6887;
  --swp-primary:#6f8fe8;
  --swp-primary-2:#a67be8;
  --swp-primary-3:#f09cff;
  --swp-primary-soft:rgba(111,143,232,.12);
  --swp-success:#2f9f68;
  --swp-shadow:0 24px 60px rgba(45,28,94,.12);
  --swp-shadow-soft:0 16px 36px rgba(45,28,94,.08);
  --swp-button-gradient:linear-gradient(135deg,#6f8fe8 0%,#a67be8 50%,#f09cff 100%);
  --swp-button-inset:inset 0 1px 0 rgba(255,255,255,.3);
}

.swp-section{margin:34px 0;color:var(--swp-text)}
.swp-panel{
  background:var(--swp-bg);
  border:1px solid var(--swp-line);
  box-shadow:var(--swp-shadow);
  border-radius:32px;
  padding:30px;
  overflow:hidden;
}
.swp-section-head{display:flex;justify-content:space-between;gap:20px;align-items:flex-start;margin-bottom:22px;flex-wrap:wrap}
.swp-title{margin:0 0 8px;font-size:clamp(24px,2.4vw,38px);line-height:1.06;font-weight:800;color:var(--swp-text);letter-spacing:-.03em}
.swp-subtitle,.swp-copy{margin:0;color:var(--swp-muted);font-size:15px;line-height:1.75;max-width:900px}
.swp-subtitle-title{margin:0 0 8px;font-size:26px;line-height:1.12;color:var(--swp-text);font-weight:800}

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

.swp-card{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  background:var(--swp-surface);
  border:1px solid var(--swp-line);
  box-shadow:var(--swp-shadow-soft);
  display:flex;
  flex-direction:column;
  min-height:100%;
}
.swp-card-image-wrap{padding:18px 18px 0}
.swp-card-image{
  width:100%;
  aspect-ratio:1/1;
  object-fit:contain;
  border-radius:22px;
  background:linear-gradient(180deg,#fff 0%,#fbfbff 100%);
  display:block;
}
.swp-card-body{padding:18px;display:flex;flex-direction:column;gap:14px;flex:1}
.swp-card-top{display:flex;flex-direction:column;gap:10px;min-height:0;flex:1}
.swp-card-footer{margin-top:auto;padding-top:4px}
.swp-card-title{
  margin:0;
  font-size:20px;
  line-height:1.28;
  color:var(--swp-text);
  font-weight:800;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:calc(1.28em * 2);
  max-height:calc(1.28em * 2);
  text-overflow:ellipsis;
}
.swp-card-meta{color:var(--swp-muted);font-size:14px}
.swp-price-row{display:flex;gap:10px;align-items:baseline;flex-wrap:wrap}
.swp-price-current{color:var(--swp-text);font-size:32px;font-weight:800;line-height:1}
.swp-price-current-small{font-size:22px}
.swp-price-old{text-decoration:line-through;color:rgba(35,25,66,.45);font-size:16px}

.swp-button,
.swp-alert-actions .swp-button,
.swp-card-footer .swp-button,
.swp-trending-item .swp-button,
.swp-admin-page .button-primary,
.swp-admin-page .button,
.swp-admin-check input[type="checkbox"]:checked{
  background:var(--swp-button-gradient) !important;
  box-shadow:var(--swp-button-inset) !important;
}

.swp-button,
.swp-admin-page .button-primary,
.swp-admin-page .button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:none;
  border-radius:999px;
  padding:13px 20px;
  font-weight:800;
  text-decoration:none;
  color:#fff !important;
  min-height:46px;
  transition:transform .15s ease,opacity .15s ease,filter .15s ease;
  box-sizing:border-box;
}
.swp-button:hover,
.swp-admin-page .button-primary:hover,
.swp-admin-page .button:hover{opacity:.96;color:#fff !important;transform:translateY(-1px);filter:saturate(1.04)}
.swp-button-small{padding:10px 16px;min-height:42px;white-space:nowrap;width:100%}

.swp-badge{
  position:absolute;top:16px;left:16px;padding:9px 13px;border-radius:999px;font-size:13px;font-weight:800;z-index:2;
  backdrop-filter:blur(10px)
}
.swp-badge-discount{background:var(--swp-button-gradient);color:#fff;box-shadow:var(--swp-button-inset)}

.swp-trending-list{display:grid;gap:14px}
.swp-trending-item{
  display:grid;grid-template-columns:48px 74px 1fr auto auto;gap:14px;align-items:center;padding:16px;
  border-radius:22px;background:var(--swp-surface-2);border:1px solid var(--swp-line)
}
.swp-rank{width:40px;height:40px;border-radius:14px;display:flex;align-items:center;justify-content:center;background:var(--swp-primary-soft);color:var(--swp-primary);font-weight:800}
.swp-trending-thumb{width:74px;height:74px;border-radius:18px;object-fit:cover;background:#fff;border:1px solid var(--swp-line)}
.swp-trending-thumb-empty{background:var(--swp-primary-soft)}
.swp-trending-main h3{margin:0 0 6px;font-size:18px;color:var(--swp-text);line-height:1.3}
.swp-trending-price{display:flex;flex-direction:column;gap:5px;align-items:flex-end}
.swp-save{color:var(--swp-success);font-weight:700;font-size:14px}

.swp-category-card .swp-card-body{padding:24px}
.swp-category-emoji{font-size:30px;line-height:1}
.swp-category-title{margin:0;font-size:24px;color:var(--swp-text);line-height:1.2}
.swp-category-text{margin:0;color:var(--swp-muted);line-height:1.75}

.swp-value-props{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.swp-value-item{padding:16px 14px;text-align:center;border-radius:24px;background:var(--swp-surface-2);border:1px solid var(--swp-line)}
.swp-value-item strong{display:block;color:var(--swp-text);font-size:22px;margin-bottom:8px}
.swp-value-item span{display:block;color:var(--swp-muted);line-height:1.6}

.swp-why-grid{display:grid;grid-template-columns:1.5fr 1fr;gap:22px;align-items:stretch}
.swp-checks{list-style:none;margin:20px 0 0;padding:0;display:flex;flex-wrap:wrap;gap:10px 14px}
.swp-checks li{padding:8px 12px;border-radius:999px;background:var(--swp-primary-soft);border:1px solid var(--swp-line);color:var(--swp-text)}
.swp-alert-box{display:flex;flex-direction:column;justify-content:space-between;gap:18px;height:100%;padding:24px;border-radius:28px;background:linear-gradient(180deg,#fff 0%,#faf9ff 100%);border:1px solid var(--swp-line)}
.swp-alert-actions{margin-top:auto}.swp-alert-actions .swp-button{width:auto;min-width:180px}

.swp-admin-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:8px 16px;max-width:1000px}
.swp-admin-check{display:flex;align-items:center;gap:8px;padding:6px 8px;border:1px solid #ddd;border-radius:12px;background:#fff}
.swp-admin-page .button-primary{padding:0 18px !important;line-height:46px !important;height:46px !important}

@media (max-width:1100px){
  .swp-grid-4{grid-template-columns:repeat(2,minmax(0,1fr))}
  .swp-grid-3,.swp-value-props,.swp-why-grid{grid-template-columns:1fr}
  .swp-trending-item{grid-template-columns:48px 74px 1fr auto}
}
@media (max-width:780px){
  .swp-grid-4{grid-template-columns:1fr}
  .swp-trending-item{grid-template-columns:40px 64px 1fr}
  .swp-trending-price,.swp-trending-item .swp-button{grid-column:3}
  .swp-trending-price{align-items:flex-start}
  .swp-panel{padding:18px;border-radius:24px}
  .swp-price-current{font-size:28px}
  .swp-card-title{font-size:18px}
  .swp-alert-actions .swp-button{width:100%}
}
