
.mps-section{
  width:min(100%,var(--mps-max));
  margin:0 auto;
  padding:24px 16px;
  box-sizing:border-box;
}
.mps-title{
  font-size:clamp(32px,4vw,58px);
  line-height:1.05;
  margin:0 0 28px;
  font-weight:900;
  color:#111;
}
.mps-carousel-shell{position:relative}
.mps-track{
  display:grid;
  grid-template-columns:repeat(var(--mps-cols),minmax(0,1fr));
  gap:var(--mps-gap);
  align-items:stretch;
}
.mps-card{
  min-width:0;
  overflow:hidden;
  border:1px solid #eee;
  border-radius:26px;
  background:#fff;
  box-shadow:0 10px 28px rgba(0,0,0,.06);
  display:flex;
  flex-direction:column;
}
.mps-image{
  height:var(--mps-img);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
  background:#fff;
  border-bottom:1px solid #f1f1f1;
}
.mps-image img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  display:block;
}
.mps-content{
  padding:26px 22px 28px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  flex:1;
}
.mps-product-title{
  margin:0;
  font-size:clamp(18px,1.5vw,28px);
  line-height:1.18;
  font-weight:900;
  color:#111;
  overflow-wrap:break-word;
  hyphens:auto;
}
.mps-price{font-weight:800;font-size:18px}
.mps-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 30px;
  border-radius:999px;
  background:#050505;
  color:#fff!important;
  text-decoration:none!important;
  font-weight:900;
  font-size:20px;
  line-height:1;
  transition:transform .2s ease, opacity .2s ease;
}
.mps-button:hover{transform:translateY(-2px);opacity:.9}
.mps-nav{
  display:none;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:44px;
  height:44px;
  border:0;
  border-radius:999px;
  background:#050505;
  color:#fff;
  font-size:34px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(0,0,0,.25);
}
.mps-prev{left:6px}
.mps-next{right:6px}

@media (max-width:1024px){
  .mps-track{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media (max-width:767px){
  .mps-title{font-size:38px;margin-bottom:20px}
  .mps-section{padding:18px 12px}
  .mps-image{height:260px}
  .mps-product-title{font-size:24px}
  .mps-button{font-size:20px;min-height:56px}
  .mps-mobile-carousel .mps-carousel-shell{overflow:visible}
  .mps-mobile-carousel .mps-track{
    display:flex;
    gap:16px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch;
    padding:2px 4px 18px;
  }
  .mps-mobile-carousel .mps-track::-webkit-scrollbar{display:none}
  .mps-mobile-carousel .mps-card{
    flex:0 0 calc((100% - (var(--mps-mobile-view) - 1) * 16px) / var(--mps-mobile-view));
    scroll-snap-align:start;
  }
  .mps-mobile-carousel .mps-nav{display:block}
  .mps-section:not(.mps-mobile-carousel) .mps-track{grid-template-columns:1fr}
}
