/* Hero banner */
.store-hero{
  margin-top: 72px;                 /* clear fixed header */
  height: 440px;
  background-size: cover;
  background-position: center;
}

/* Top product chips row */
.store-top{
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 20px 0 8px;
  background: #fff;
}
.store-top__inner{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}
.store-top__scroller{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.store-top__scroller::-webkit-scrollbar{ height: 6px; }
.store-top__scroller::-webkit-scrollbar-thumb{ background:#ddd; border-radius: 6px; }

.store-top__inner {
  display: flex;
  justify-content: center; /* centers horizontally */
}

.store-top__scroller {
  display: flex;
  justify-content: center; /* centers all product chips */
  flex-wrap: wrap;          /* allows wrapping on smaller screens */
  gap: 40px;                /* spacing between items */
  padding: 20px 0;
}
.store-chip{
  display:flex; flex-direction:column; align-items:center;
  text-decoration:none; color:#111; gap:6px;
}
.store-chip img{
  width:104px; height:70px; -o-object-fit: contain; object-fit: contain; display:block;
}
.store-chip span{
  font-size: 15px; font-weight: 500; opacity:.85;
}

/*------*/
/* Thumbnails container */
.pd-thumbs{
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 6;
}

/* Each thumbnail */
.pd-thumb{
  width: 46px;
  height: 46px;
  padding: 0;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255,255,255,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}

.pd-thumb img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Active thumbnail */
.pd-thumb.active{
  box-shadow: 0 0 0 3px rgba(0,0,0,.45);
  transform: scale(1.05);
}

/* Hover effect */
.pd-thumb:hover{
  transform: scale(1.05);
}

/* Category block */
.store-main{
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background:#fff;
  padding: 18px 16px 60px;
}
.store-section{
  max-width: 1240px; margin: 18px auto 42px;
}
.store-section__title {
  font-family: "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  font-weight: 500;   /* Medium weight */
  color: #666;
  margin: 0 0 20px 8px;
  letter-spacing: 0.2px;
}

/* Product grid and cards */
.store-grid{
  margin-left: 40px;
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.sp-card{
  background:#fff;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  overflow:hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.sp-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(0,0,0,.10);
}

/* Top image area */
.sp-thumb{
  height: 140px;
  background:#d9d9d9;
  display:flex; align-items:center; justify-content:center;
}
.sp-thumb img{
  width:100%; height:100%; -o-object-fit: cover; object-fit: cover;
}

/* Meta area */
.sp-meta{
  padding: 10px 12px 12px;
}
.sp-badge{
  display:inline-block;
  font-size: 10px; font-weight:700; color:#eaa21c;
  background: #fff1d6;
  padding: 4px 8px; border-radius: 10px;
}
.sp-name{
  margin: 6px 0 4px; font-size: 16px; font-weight: 700; color:#333;
}
.sp-bottom{
  display:flex; align-items:center; justify-content:space-between;
}
.sp-price{
  font-size: 14px; color:#666; font-weight:600;
}
.sp-buy{
  border:none; cursor:pointer; padding: 8px 15px;
  font-size: 14px; font-weight: 700;
  border-radius: 999px;
  background: #d6a344; color:#fff;
  text-decoration: none;
}
.sp-buy:hover{ filter: brightness(0.95); }

/* Responsive */
@media (max-width: 1200px){
  .store-grid{ grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 992px){
  .store-grid{ grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px){
  .store-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px){
  .store-grid{ grid-template-columns: repeat(2, 1fr); }
  .store-hero{ height: 240px; }
}


