.section {
  max-width:1200px;
  margin:50px auto;
  padding:0 20px;
}
.section-title {
  font-size:1.6em;
  margin-bottom:20px;
}

/* ===== SLIDER ===== */
.slider-wrapper { position: relative; }
.slider {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  
}
.slider::-webkit-scrollbar { display: none; }

/* ===== SLIDER BUTTONS ===== */
.slide-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.75);
  color: #fff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
}
.slide-btn.prev { left: -12px; }
.slide-btn.next { right: -12px; }

/* ===== PRODUCT CARD ===== */
.product-card {
  position: relative;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px;
  flex-shrink: 0;
}

.product-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}


/* BASE BADGE */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  border-radius: 4px;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.badge.hot {
  background: #ff3b30;
}
/* ===== TEXT ===== */
.product-card .brand {
  font-size: 8px;
  font-weight: 300;
  color: #777;
  margin-top: 6px;
  text-transform: uppercase;
}
.product-card h3 {
  font-size: 14px;
  margin: 4px 0;
  line-height: 1.3;
}

/* ===== PRICE ===== */
.price { margin-top: 6px; }
.price .old {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
  margin-right: 6px;
}
.price .new {
  font-size: 14px;
  font-weight: 300;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .slide-btn { display: none; }
  .product-card {
    min-width: 150px;
    max-width: 150px;
  }
}
/* SECTION */
/* ========================= */
/* WRAPPER (GLASS) */
/* ========================= */
.category-slider-wrapper {
    padding: 2px 0;
    margin: 8px 10px;

    border-radius: 14px;

    background: transparent;
   }
/* ========================= */
/* CONTAINER */
/* ========================= */
.category-slider-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
}

/* ========================= */
/* SLIDER */
/* ========================= */
.category-slider {
    display: flex;
    align-items: center;
    gap: 8px;

    overflow-x: auto;
    scroll-behavior: smooth;

    padding: 6px 12px;
    width: 100%;
}

.category-slider::-webkit-scrollbar {
    display: none;
}

/* ========================= */
/* GLASS PILLS */
/* ========================= */
.category-pill {
    flex: 0 0 auto;

    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;

    border-radius: 999px;

    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.4);

    color: #222;
    text-decoration: none;
    white-space: nowrap;

    transition: all 0.25s ease;
}

/* Hover (premium glow) */
.category-pill:hover {
    background: rgba(204,34,48,0.85);
    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 6px 15px rgba(204,34,48,0.25);
}

/* Active */
.category-pill.active {
    background: linear-gradient(135deg, #CC2230, #ff5a5f);
    color: #fff;

    border: none;

    box-shadow: 0 6px 15px rgba(204,34,48,0.3);
}

/* ========================= */
/* NAV BUTTONS (GLASS) */
/* ========================= */
.cat-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.5);

    cursor: pointer;
    z-index: 2;

    transition: all 0.25s ease;
}

/* Position */
.cat-nav.prev { left: 5px; }
.cat-nav.next { right: 5px; }

/* Hover */
.cat-nav:hover {
    background: #CC2230;
    color: #fff;

    transform: translateY(-50%) scale(1.1);
}

/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px) {
    .cat-nav {
        display: none;
    }

    .category-slider {
        padding: 4px 8px;
    }
}