:root{
  --bg: #fbf7f2;
  --pink: #ffd0e8;
  --pink2:#ffb8dc;
  --plum:#6b0048;
  --text:#3a2a2f;
  --muted:#7a6169;
  --card:#ffffff;
  --border:#e9c9d9;
  --shadow: 0 14px 40px rgba(0,0,0,.08);
  --radius: 22px;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a{ color: inherit; text-decoration: none; }

/* ===== TOPBAR mirip ilustrasi ===== */
.topbar{
  background: var(--pink);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.topbar-inner{
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 16px 0;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}
.logo{
  font-size: 34px;
  font-weight: 900;
  letter-spacing: .2px;
  color: var(--plum);
}

.pill-nav{
  display:flex;
  gap: 14px;
  align-items:center;
}
.pill{
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(0,0,0,.06);
  font-weight: 700;
  color: var(--plum);
}
.pill.active{
  background: #fff;
}
.btn-soft{
  background:#fff;
}

.top-actions{
  display:flex;
  align-items:center;
  gap: 10px;
}
.hello{
  font-weight: 700;
  color: var(--plum);
  padding-right: 6px;
}

.icon-pill{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background:#fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  font-size: 18px;
}

/* ===== Layout ===== */
.page{
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 28px 0 44px;
}

.section{
  margin-top: 18px;
}

.hero{
  background: transparent;
  text-align:center;
  padding: 52px 10px 24px;
}
.hero-title{
  display:inline-block;
  padding: 10px 24px;
  border: 3px solid #7b44ff;
  border-radius: 10px;
  color: var(--plum);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.15;
  max-width: 900px;
}
.hero-desc{
  margin: 18px auto 0;
  max-width: 980px;
  color: var(--plum);
  font-size: 18px;
}
.hero-actions{
  margin-top: 28px;
  display:flex;
  gap: 40px;
  justify-content:center;
  flex-wrap: wrap;
}
.cta{
  min-width: 200px;
  padding: 16px 22px;
  border-radius: 16px;
  background: var(--pink);
  border: 1px solid rgba(0,0,0,.06);
  font-weight: 900;
  color: var(--plum);
  box-shadow: 0 12px 25px rgba(0,0,0,.06);
  text-align:center;
}

/* ===== Pricelist + Image ===== */
.duo{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 36px;
  align-items: start;
  margin-top: 16px;
}

.frame{
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #e7a9c8, #caa46a) border-box;
  border: 10px solid transparent;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.frame::before{
  content:"";
  position:absolute;
  inset: 0;
  opacity: .35;
  background-image:
    radial-gradient(circle at 12px 12px, rgba(203,140,169,.45) 2px, transparent 3px);
  background-size: 28px 28px;
  pointer-events:none;
}

.frame-inner{
  position:relative;
  padding: 28px;
  background: rgba(255,255,255,.9);
  border-radius: calc(var(--radius) - 10px);
}

.pricelist-title{
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 54px;
  color: var(--plum);
  text-align:center;
  margin: 0 0 18px;
}

.price-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 26px;
}
.price-group h4{
  margin: 0 0 10px;
  color: var(--plum);
  font-weight: 900;
  letter-spacing: .4px;
}
.price-item{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
  color: var(--plum);
  font-weight: 600;
  font-size: 14px;
}

.photo-card{
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  position: relative;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #e7a9c8, #caa46a) border-box;
  border: 10px solid transparent;
}
.photo-card img{
  width: 100%;
  height: 100%;
  display:block;
  object-fit: cover;
}
.photo-pad{
  padding: 16px;
  background: rgba(255,255,255,.85);
}

/* ===== Review section ala chat ===== */
.review-wrap{
  margin-top: 26px;
  background: var(--pink);
  border-radius: 26px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
}
.review-head{
  background: rgba(255,255,255,.45);
  border-radius: 999px;
  text-align:center;
  padding: 16px 12px;
  font-size: 34px;
  font-weight: 900;
  color: var(--plum);
  margin: 10px;
}
.chat-area{
  margin: 16px 10px 10px;
  background: rgba(255,255,255,.35);
  border-radius: 22px;
  padding: 18px;
  min-height: 240px;
}

.chat-item{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  margin-bottom: 14px;
}
.avatar{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  display:grid;
  place-items:center;
  font-weight: 900;
  color: var(--plum);
  border: 1px solid rgba(0,0,0,.06);
}
.chat-meta{
  display:flex;
  gap: 10px;
  align-items:center;
  font-weight: 800;
  color: var(--plum);
}
.chat-bubble{
  margin-top: 6px;
  background: #fff7fb;
  border: 1px solid rgba(0,0,0,.06);
  padding: 12px 14px;
  border-radius: 999px;
  max-width: 760px;
  color: var(--plum);
  font-weight: 600;
}

.chat-input{
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}


  /* ===== AUTH PAGE (LOGIN/REGISTER) ===== */
.auth-page{
  min-height: calc(100vh - 120px);
  display: grid;
  place-items: center;
  padding: 36px 0;
}

.auth-title{
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--plum);
  letter-spacing: 1px;
  margin: 0 0 14px;
}

.auth-box{
  width: 360px;
  background: #ffd4ea;
  border-radius: 18px;
  padding: 22px 22px 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.05);
}

.auth-grid{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px 14px;
  align-items: center;
}

.auth-label{
  font-weight: 800;
  color: var(--plum);
  font-size: 13px;
}

.auth-input{
  width: 100%;
  height: 28px;
  border-radius: 999px;
  border: 0;
  outline: none;
  padding: 0 14px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}

.auth-actions{
  margin-top: 16px;
  display: grid;
  place-items: center;
  gap: 8px;
}

.auth-btn{
  width: 180px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  color: var(--plum);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
}

.auth-smalllink{
  font-size: 12px;
  color: var(--plum);
  font-weight: 700;
}

.auth-smalllink a{
  color: var(--plum);
  text-decoration: underline;
}

/* alert biar nyatu */
.auth-alert{
  width: 360px;
  margin: 0 auto 10px;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  color: var(--plum);
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(0,0,0,.06);
}
