/** Shopify CDN: Minification failed

Line 20:12 Expected identifier but found whitespace
Line 20:14 Unexpected "{"
Line 20:24 Expected ":"
Line 20:58 Expected ":"

**/
.ps-section {
  padding: 3rem 1.5rem;
  background: #f5f5f5;           /* match the beige/off-white bg in your screenshot */
}
 
.ps-inner {
  max-width: 1430px;
  margin: 0 auto;
}

.ps-heading{
  font-size: {{  section.settings.slider_Heading_size }}px;
}

.ps-viewport-wrap{
  margin: 30px 0;
}

.ps-heading {
  font-weight: 400;
  margin: 0 0 64px;
}
 
/* ── Wrapper that holds arrows + viewport ── */
.ps-viewport-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
 
/* ── Arrow buttons ── */
.ps-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-100%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 3px;
  border: none;
  background: #e1e1e1;
  color: #222222;
  font-size: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  padding: 0;
  line-height: 1;
}
 
.ps-arrow--prev { left: 20px; }
.ps-arrow--next { right: -0px; }
 
/* Show on hover */
.ps-section:hover .ps-arrow {
  opacity: 1;
  pointer-events: auto;
}
 
.ps-arrow:hover {
  background: #be9d34;
  color: #fff;
}
.ps-arrow:disabled { opacity: 0.25 !important; cursor: default; }
 
/* ── Viewport (clips overflow) ── */
.ps-viewport {
  overflow: hidden;
  width: 100%;
}
 
/* ── Track (the scrolling row) ── */
.ps-track {
  display: flex;
  gap: 0;                        /* spacing handled by item padding */
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
 
/* ── Individual item ── */
.ps-item {
  flex: 0 0 25%;                 /* default: 4 visible */
  padding: 1.5rem 1rem;
  box-sizing: border-box;
}
 
.ps-item__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  gap: 2rem;
}
 
/* ── Circle — the swatch / product image ── */
.ps-item__circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  background: #ddd;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
 
.ps-item__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 
.ps-item__circle:hover {
  transform: scale(1.04);
}
 
/* ── Label below the circle ── */
.ps-item__label {
  margin: 1rem 0 0;
  /* font-size: 0.85rem; */
  /* color: #555; */
  letter-spacing: 0.03em;
  text-align: center;
}
 
/* ── Responsive ── */
@media (max-width: 1024px) {
  .ps-item { flex: 0 0 33.333%; }
}
 
@media (max-width: 640px) {
  .ps-item { flex: 0 0 50%; }
  .ps-item__circle { width: 110px; height: 110px; }
  .ps-arrow--prev { left: -10px; }
  .ps-arrow--next { right: -10px; }
}
 
@media (max-width: 400px) {
  .ps-item { flex: 0 0 75%; }
}

.ps-heading.text-align-center{
  text-align:  center;
}

.ps-heading.text-align-left{
  text-align:  left;
}

.ps-heading.text-align-right{
  text-align:  right;
}

.ps-item__circle {
  position: relative;
  overflow: hidden;
}

.ps-item__circle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 4px;
  transition: width 0.4s ease;
}

.ps-item__link:hover .ps-item__circle::after {
  width: 100%;
}

.ps-viewport-wrap  .ps-arrow--prev:hover polyline,
.ps-viewport-wrap  .ps-arrow--next:hover polyline {
  stroke: white;
}