/* ---------- DASHBOARD WRAPPER ---------- */
.user_home_dash {
  padding: 2rem 1rem;
  background: #f0f2f5;
}

/* ---------- MAIN PANEL ---------- */
.home-dash {
  max-width: 1100px;
  margin: 0 auto;
}

/* ---------- TITLE ---------- */
.dash-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 1.5rem;
}
.highlight {
  background: linear-gradient(90deg,#FFB800,#FF4E50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- SHOP HERO STRIP ---------- */
.shop-hero {
  display: block;
  margin: 0 auto 2rem;
  max-width: 700px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .2s;
}
.shop-hero:hover {
  transform: translateY(-4px);
}

.shop-hero__inner {
  background: #222;
  padding: 2rem;
  text-align: center;
  color: #fff;
  position: relative;
}

.shop-hero__title {
  font-size: 2rem;
  margin-bottom: .5rem;
}

.shop-hero__points {
  display: inline-flex;
  align-items: baseline;
  background: #000;
  color: #FFD700;
  padding: .6rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(255,215,0,0.5);
  font-size: 1.1rem;
  margin: .5rem 0;
  transition: transform .2s;
}
.shop-hero__points:hover {
  transform: scale(1.05);
}
.points-emoji {
  margin-right: .4rem;
  font-size: 1.5rem;
  transform: rotate(-15deg);
}

.shop-hero__cta {
  display: block;
  margin-top: 1rem;
  color: #FFD700;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: color .2s;
}
.shop-hero:hover .shop-hero__cta {
  color: #fff;
}

/* ---------- SECTIONS GRID ---------- */
.dash-sections {
  display: flex;
  flex-direction: column;
}

/* ---------- EACH CARD-LIKE SECTION ---------- */
.dash-card-section {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: box-shadow .2s, transform .2s;
}
.dash-card-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.dash-card-section h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: #333;
}

#zpoint-balance{
    font-size: 1.3rem ;
    font-weight: 600;
    margin-right: 4px;
}

/* ---------- SEE MORE BUTTON ---------- */
.see-more-btn {
  display: block;
  margin: 0 auto;
  padding: .6rem 1.4rem;
  background: linear-gradient(90deg,#FF4E50,#F9D423);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s, filter .2s;
}
.see-more-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}
