
/* Patrick Store Featured Products + Mini Store */
:root{
  --ps-bg:#0b0b0b;
  --ps-card:#14151a;
  --ps-text:#ffffff;
  --ps-muted:rgba(255,255,255,.78);
  --ps-accent:#ffb703;
  --ps-border:rgba(255,255,255,.12);
  --ps-radius:16px;
  --ps-shadow:0 14px 40px rgba(0,0,0,.35);
}

.ps-featured{
  padding: 54px 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(11,11,11,1) 30%, rgba(11,11,11,1) 100%);
}
.ps-featured .ps-wrap{
  width:min(1160px, calc(100% - 40px));
  margin: 0 auto;
}
.ps-featured h2{
  margin:0 0 8px;
  color:var(--ps-text);
  font-weight:800;
  letter-spacing:.2px;
  font-size: clamp(22px, 2.6vw, 32px);
}
.ps-featured p.ps-sub{
  margin:0 0 18px;
  color:var(--ps-muted);
  font-size: 15px;
}
.ps-carousel{
  position:relative;
  border: 1px solid var(--ps-border);
  border-radius: calc(var(--ps-radius) + 6px);
  padding: 18px;
  background: rgba(255,255,255,.03);
  box-shadow: var(--ps-shadow);
}
.ps-track{
  display:flex;
  gap: 16px;
  overflow:auto;
  scroll-snap-type:x mandatory;
  padding: 6px 4px 10px;
  scrollbar-width: none;
}
.ps-track::-webkit-scrollbar{ display:none; }

.ps-card{
  scroll-snap-align:start;
  flex: 0 0 clamp(250px, 28vw, 300px);
  background: var(--ps-card);
  border: 1px solid var(--ps-border);
  border-radius: var(--ps-radius);
  overflow:hidden;
  color:var(--ps-text);
  text-decoration:none;
  transition: transform .18s ease, border-color .18s ease;
}
.ps-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,183,3,.55);
}
.ps-card img{
  width:100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display:block;
}
.ps-card .ps-body{
  padding: 14px 14px 16px;
}
.ps-card .ps-title{
  margin:0 0 8px;
  font-weight:800;
  font-size: 16px;
  line-height: 1.25;
}
.ps-card .ps-desc{
  margin:0 0 12px;
  color:var(--ps-muted);
  font-size: 13px;
  line-height: 1.45;
  min-height: 54px;
}
.ps-card .ps-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.ps-price{
  font-weight:900;
  color: var(--ps-accent);
}
.ps-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,183,3,.55);
  color: #111;
  background: var(--ps-accent);
  font-weight:800;
  font-size: 13px;
  white-space: nowrap;
  text-decoration:none;
}
.ps-btn:hover{ filter: brightness(.95); }

.ps-nav{
  position:absolute;
  top: 14px;
  right: 14px;
  display:flex;
  gap: 8px;
}
.ps-arrow{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--ps-border);
  background: rgba(255,255,255,.06);
  color: var(--ps-text);
  font-weight: 900;
  cursor:pointer;
}
.ps-arrow:hover{ background: rgba(255,255,255,.10); }

@media (max-width: 640px){
  .ps-carousel{ padding: 14px; }
  .ps-nav{ display:none; } /* swipe/scroll on mobile */
}
