/* ==================================================
   Cafe Page Styles
================================================== */

/* Hero */
.cafe-hero{
  min-height:60vh;
}

/* Pricing */
.pricing-section{
  padding:100px 30px;
  background:linear-gradient(
    to bottom,
    transparent,
    color-mix(in srgb, var(--bg-accent) 25%, transparent)
  );
}

.pricing-grid{
  max-width:1000px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:30px;
}

.pricing-card{
  background:var(--bg-surface);
  border-radius:24px;
  padding:32px 26px;
  text-align:center;
  box-shadow:var(--shadow-soft);
  position:relative;
}

.pricing-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-strong);
}

.pricing-card h3{
  margin-bottom:12px;
  font-size:18px;
}

.price .amount{
  font-size:32px;
  font-weight:700;
  color:var(--primary);
}

.price .currency{
  display:block;
  font-size:12px;
  color:var(--text-muted);
}

.pricing-card p{
  margin-top:14px;
  font-size:14px;
  color:var(--text-main);
}

/* Featured */
.pricing-card.featured{
  border:2px solid var(--primary);
}

.pricing-card .badge{
  position:absolute;
  top:14px;
  right:14px;
  background:var(--primary);
  color:#fff;
  font-size:11px;
  padding:5px 14px;
  border-radius:20px;
}

/* CTA */
.cafe-cta{
  margin:100px auto;
  max-width:1100px;
  padding:60px 30px;
  border-radius:30px;
  background:linear-gradient(
    to left,
    color-mix(in srgb, var(--primary) 30%, transparent),
    color-mix(in srgb, var(--bg-accent) 40%, transparent)
  );
  text-align:center;
}

.cafe-cta h2{
  margin-bottom:12px;
}

.cafe-cta p{
  margin-bottom:24px;
  color:var(--text-muted);
}

/* Mobile */
@media(max-width:768px){
  .cafe-cta{
    margin:60px 20px;
    padding:40px 20px;
  }
}
