.ps2-root {
  all: initial;
  display: block;
	
  box-sizing: border-box;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #f5f5f5;
  padding: 40px 0 48px;
  margin: 40px 0;
  overflow: hidden;
}
.ps2-root *, .ps2-root *::before, .ps2-root *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Header ── */
.ps2-root .ps2-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1px 24px;
}
.ps2-root .ps2-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #1646c8 !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}
.ps2-root .ps2-header-right { display: flex; align-items: center; gap: 12px; }
.ps2-root .ps2-view-all {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #111 !important;
  text-decoration: none !important;
  border-bottom: 1px solid #111 !important;
  padding-bottom: 1px !important;
  background: none !important;
  white-space: nowrap !important;
}

/* ── Arrows ── */
.ps2-root .ps2-arrows { display: flex; gap: 8px; }
.ps2-root .ps2-arrow {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid #ccc !important;
  background: #fff !important;
  cursor: pointer;
  color: #111 !important;
  flex-shrink: 0;
}
.ps2-root .ps2-arrow.ps2-disabled { opacity: 0.3 !important; cursor: not-allowed !important; }
.ps2-root .ps2-arrow svg { display: block; stroke: currentColor; pointer-events: none; }

/* ── Carousel ── */
.ps2-root .ps2-carousel-wrap { overflow: hidden; padding: 0 5px; }
.ps2-root .ps2-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
}

/* 4 cards */
.ps2-root .ps2-slide {
  flex: 0 0 calc((100% - 48px) / 4);
  min-width: 0;
}

/* ── Card ── */
.ps2-root .ps2-card {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  text-decoration: none !important;
  color: #111 !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  cursor: pointer;
}
.ps2-root .ps2-card:hover,
.ps2-root .ps2-card:focus,
.ps2-root .ps2-card:active,
.ps2-root .ps2-card:visited {
  text-decoration: none !important;
  color: #111 !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  transform: none !important;
}

/* ── Image wrap ── */
.ps2-root .ps2-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Image ── */
.ps2-root .ps2-img-wrap img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 16px !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  max-width: none !important;
  max-height: none !important;
}

.ps2-root .ps2-img-empty { font-size: 40px; opacity: 0.2; }

/* ── Badge ── */
.ps2-root .ps2-badge {
  position: absolute !important;
  top: 10px !important;
  left: 10px !important;
  background: #111 !important;
  color: #fff !important;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 4px 8px !important;
  border-radius: 3px !important;
  line-height: 1 !important;
  z-index: 1;
}

/* ── Text below image ── */
.ps2-root .ps2-card-body {
  padding: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Title — max 2 lines, price hamesha same jagah */
.ps2-root .ps2-name {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #111 !important;
  line-height: 1.3 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  min-height: calc(1.3em * 2) !important;
}

.ps2-root .ps2-type {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  color: #757575 !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
}
.ps2-root .ps2-price {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #111 !important;
  display: block !important;
}

/* ── Footer row: price + button ── */
.ps2-root .ps2-foot {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 6px !important;
}

/* Shop Now button */
.ps2-root .ps2-cta {
  display: inline-block !important;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #fff !important;
  background: #1646c8 !important;
  padding: 6px 12px !important;
  border-radius: 20px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  -webkit-text-fill-color: #fff !important;
}

/* ── Dots ── */
.ps2-root .ps2-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
  padding: 0 40px;
}
.ps2-root .ps2-dot {
  all: unset;
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.ps2-root .ps2-dot.ps2-dot-active { background: #111; transform: scale(1.4); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .ps2-root .ps2-slide { flex: 0 0 calc((100% - 32px) / 3); }
  .ps2-root .ps2-header, .ps2-root .ps2-carousel-wrap, .ps2-root .ps2-dots { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 768px) {
  .ps2-root { padding: 28px 0 36px; }
  .ps2-root .ps2-slide { flex: 0 0 calc((100% - 16px) / 2); }
  .ps2-root .ps2-header, .ps2-root .ps2-carousel-wrap, .ps2-root .ps2-dots { padding-left: 16px; padding-right: 16px; }
  .ps2-root .ps2-title { font-size: 18px !important; }
}
@media (max-width: 480px) {
  .ps2-root .ps2-slide { flex: 0 0 calc(76% - 8px); }
}