.szw-wrapper{
  --szw-accent:#ef2b2d;
  --szw-accent-2:#f3c64c;
  --szw-card-bg:#ffffff;
  --szw-text:#22252d;
  --szw-muted:#4e5562;
  --szw-line:rgba(0,0,0,.08);
  --szw-radius:24px;
  --szw-shadow:0 18px 48px rgba(0,0,0,.10);
  --szw-shadow-soft:0 10px 28px rgba(0,0,0,.08);
}

.szw-wrapper,
.szw-wrapper *{
  box-sizing:border-box;
}

.szw-grid{
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(320px,.88fr);
  gap:34px;
  align-items:start;
}

.szw-media,
.szw-card{
  min-width:0;
}

.szw-main-image,
.szw-thumb,
.szw-card,
.szw-pricebox{
  overflow:hidden;
}

.szw-main-image{
  border-radius:var(--szw-radius);
  box-shadow:var(--szw-shadow-soft);
  background:linear-gradient(135deg,#f2f2f2,#dddddd);
  aspect-ratio:16 / 10;
}

.szw-main-image img,
.szw-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.szw-thumbs{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.szw-thumb{
  border-radius:calc(var(--szw-radius) - 6px);
  box-shadow:var(--szw-shadow-soft);
  background:linear-gradient(135deg,#efefef,#dcdcdc);
  aspect-ratio:1.25 / 1;
}

.szw-card{
  position:relative;
  padding:30px;
  border-radius:calc(var(--szw-radius) + 4px);
  background:var(--szw-card-bg);
  box-shadow:var(--szw-shadow);
}

.szw-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,var(--szw-accent) 0%, var(--szw-accent-2) 100%);
}

.szw-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 15px;
  border-radius:12px;
  background:rgba(243,198,76,.85);
  color:#2b2b2b;
  font-size:15px;
  line-height:1;
  font-weight:800;
  margin-bottom:18px;
}

.szw-badge span{
  font-weight:600;
}

.szw-title{
  margin:0;
  color:var(--szw-text);
  font-size:clamp(28px,3.2vw,48px);
  line-height:1.08;
  letter-spacing:-0.5px;
  font-weight:800;
  word-break:break-word;
  overflow-wrap:anywhere;
}

.szw-subline{
  margin-top:16px;
  color:var(--szw-muted);
  font-size:19px;
  line-height:1.45;
}

.szw-pricebox{
  margin-top:24px;
  padding:24px;
  border:1px solid rgba(0,0,0,.06);
  border-radius:calc(var(--szw-radius) - 2px);
  background:rgba(248,248,249,.9);
}

.szw-price-row{
  display:flex;
  align-items:flex-end;
  gap:10px;
  flex-wrap:wrap;
  line-height:1;
}

.szw-price-prefix{
  color:var(--szw-accent);
  font-size:24px;
  font-weight:800;
  transform:translateY(-5px);
}

.szw-price-main{
  color:var(--szw-accent);
  font-size:58px;
  font-weight:900;
  letter-spacing:-1.8px;
}

.szw-price-suffix{
  color:var(--szw-text);
  font-size:23px;
  font-weight:800;
  transform:translateY(-7px);
}

.szw-price-note-under{
  margin-top:10px;
  padding-bottom:16px;
  border-bottom:1px solid var(--szw-line);
  color:var(--szw-muted);
  font-size:17px;
  line-height:1.5;
}

.szw-bullets{
  list-style:none;
  margin:16px 0 0;
  padding:0;
  display:grid;
  gap:11px;
}

.szw-bullets li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  color:var(--szw-muted);
  font-size:18px;
  line-height:1.45;
}

.szw-bullet-icon{
  width:28px;
  flex:0 0 28px;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  transform:translateY(-1px);
}

.szw-copy{
  margin-top:22px;
  color:var(--szw-muted);
  font-size:18px;
  line-height:1.7;
}

.szw-button-wrap{
  margin-top:24px;
}

.szw-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:60px;
  padding:16px 22px;
  border-radius:16px;
  background:var(--szw-accent);
  color:#fff;
  text-decoration:none;
  font-size:24px;
  line-height:1;
  font-weight:800;
  transition:transform .2s ease, opacity .2s ease;
}

.szw-button:hover{
  transform:translateY(-2px);
  opacity:.94;
  color:#fff;
}

@media (max-width: 1080px){
  .szw-grid{
    grid-template-columns:1fr;
    gap:24px;
  }
}

@media (max-width: 767px){
  .szw-card{
    padding:22px 18px;
  }

  .szw-thumbs{
    gap:10px;
  }

  .szw-thumb{
    border-radius:14px;
  }

  .szw-title{
    font-size:30px;
    line-height:1.15;
    letter-spacing:-0.3px;
  }

  .szw-subline{
    font-size:17px;
  }

  .szw-price-prefix{
    font-size:20px;
  }

  .szw-price-main{
    font-size:44px;
  }

  .szw-price-suffix{
    font-size:20px;
  }

  .szw-price-note-under,
  .szw-bullets li,
  .szw-copy{
    font-size:16px;
  }

  .szw-button{
    min-height:56px;
    font-size:21px;
  }
}
