/* SHOP BY CATEGORY — compact premium cards (reference style) */
.shop-by-category-premium {
  padding: 20px 0 24px;
  background: #fff;
}
.shop-by-category-premium .shop-cat-head {
  text-align: center;
  margin-bottom: 14px;
  padding: 0 16px;
}
.shop-by-category-premium .shop-by-category-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0;
  color: #1a1218;
}
.shop-by-category-premium .shop-by-category-title span {
  color: #e91e63;
}
.category-grid-shop-premium {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 16px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.category-grid-shop-premium::-webkit-scrollbar {
  display: none;
}
.cat-shop-card-premium {
  position: relative;
  flex: 0 0 100px;
  width: 100px;
  height: 118px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  box-shadow: 0 6px 18px rgba(26, 18, 24, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cat-shop-card-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(233, 30, 99, 0.2);
}
.cat-shop-card-premium .cat-label {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 3px 8px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #1a1218;
  border-radius: 3px;
  z-index: 3;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
}
.cat-shop-card-premium .cat-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cat-shop-card-premium .cat-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20h40M20 0v40' stroke='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 1;
}
.cat-shop-card-premium .cat-img-product {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 82%;
  height: 58%;
  object-fit: contain;
  object-position: bottom;
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}
.cat-shop-card-premium .cat-emoji {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  z-index: 2;
}
@media (min-width: 768px) {
  .cat-shop-card-premium {
    flex: 0 0 110px;
    width: 110px;
    height: 128px;
  }
  .category-grid-shop-premium {
    justify-content: center;
    flex-wrap: wrap;
    overflow: visible;
    max-width: 960px;
    margin: 0 auto;
  }
}

/* Promo strip — image cards below Flash Sale */
.promo-strip-section {
  padding: 8px 0 20px;
  background: #f8f6f4;
}
.promo-strip-viewport {
  overflow: hidden;
  padding: 0 12px;
}
.promo-strip-track {
  display: flex;
  gap: 10px;
  transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}
.promo-strip-card {
  flex: 0 0 78%;
  max-width: 340px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  scroll-snap-align: center;
  aspect-ratio: 2.15 / 1;
  background: #eee;
}
.promo-strip-card a {
  display: block;
  width: 100%;
  height: 100%;
}
.promo-strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .promo-strip-card {
    flex: 0 0 calc(33.333% - 7px);
    max-width: none;
  }
  .promo-strip-viewport {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
  }
}
.promo-strip-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}
.promo-strip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(233, 30, 99, 0.25);
  cursor: pointer;
}
.promo-strip-dot.active {
  width: 18px;
  border-radius: 4px;
  background: #e91e63;
}
