/* ============================================================
   QUEEN STORE — style.css (PINK CUTE THEME)
   Tema: Pastel Pink · Lavender · Putih Susu · Girly & Lucu
   ============================================================ */

:root {
  --pink:    #e05aa0;
  --hot:     #d03d88;
  --rose:    #e8607a;
  --lav:     #a96ee8;
  --cream:   #f5d8e8;
  --soft:    #edc4d8;
  --bg:      #f0d0e0;
  --text:    #3d1a30;
  --muted:   #8a5070;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #eabcd0; }
::-webkit-scrollbar-thumb { background: #d070a0; border-radius: 10px; }
::selection { background: rgba(244,114,182,.25); }

/* ============================================================
   BACKGROUND BLOBS
   ============================================================ */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  animation: blobDrift 12s ease-in-out infinite alternate;
}
.blob-1 {
  width: 500px; height: 500px;
  top: -100px; left: -100px;
  background: rgba(200,80,140,.2);
  animation-duration: 14s;
}
.blob-2 {
  width: 400px; height: 400px;
  top: 40%; right: -80px;
  background: rgba(160,90,220,.18);
  animation-duration: 10s;
}
.blob-3 {
  width: 350px; height: 350px;
  bottom: 10%; left: 20%;
  background: rgba(220,80,110,.16);
  animation-duration: 16s;
}
@keyframes blobDrift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px,20px) scale(1.05); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar { background: transparent; }
#navbar.scrolled {
  background: rgba(230,185,210,.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,80,140,.25);
  box-shadow: 0 4px 20px rgba(180,40,100,.12);
}

.logo-crown {
  font-size: 2rem;
  animation: crownBounce 2s ease-in-out infinite;
  display: inline-block;
}
@keyframes crownBounce {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-4px) rotate(5deg); }
}
.logo-text {
  background: linear-gradient(135deg, #ec4899, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--muted);
  text-decoration: none;
  transition: color .3s;
}
.nav-link:hover { color: var(--hot); }

.mobile-menu {
  background: rgba(255,245,248,.96);
  border-top: 1px solid rgba(244,114,182,.15);
  backdrop-filter: blur(20px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-pink {
  display: inline-block;
  background: linear-gradient(135deg, #f472b6, #ec4899, #c084fc);
  background-size: 200% 200%;
  border-radius: 50px;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .35s;
  box-shadow: 0 4px 18px rgba(236,72,153,.3);
  animation: gradShift 4s ease infinite;
  position: relative;
  overflow: hidden;
}
.btn-pink::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.2);
  opacity: 0;
  transition: opacity .3s;
}
.btn-pink:hover::before { opacity: 1; }
.btn-pink:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(236,72,153,.45); }
.btn-pink:active { transform: translateY(0); }

.btn-outline {
  display: inline-block;
  border: 2.5px solid var(--pink);
  border-radius: 50px;
  color: var(--hot);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s;
  background: transparent;
}
.btn-outline:hover {
  background: rgba(244,114,182,.08);
  transform: translateY(-2px);
}

@keyframes gradShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(200,90,150,.45) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 70%, rgba(160,90,220,.28) 0%, transparent 50%),
    var(--bg);
}

.badge-cute {
  background: rgba(200,80,140,.2);
  border: 2px solid rgba(180,60,120,.35);
  color: var(--hot);
  font-family: 'Nunito', sans-serif;
}

.title-shadow { text-shadow: 0 2px 20px rgba(192,132,252,.3); }

/* Deco circles */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.dc-1 {
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border: 2px dashed rgba(244,114,182,.12);
  animation: spinSlow 30s linear infinite;
}
.dc-2 {
  width: 400px; height: 400px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border: 1px dashed rgba(192,132,252,.15);
  animation: spinSlow 20s linear infinite reverse;
}
@keyframes spinSlow {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

/* Sparkles */
.sparkle {
  position: absolute;
  font-size: 1.2rem;
  color: var(--pink);
  pointer-events: none;
  animation: sparklePop 3s ease-in-out infinite;
  opacity: .5;
}
.sp-1 { top: 15%; left: 8%;  animation-delay: 0s;   font-size: 1.5rem; }
.sp-2 { top: 25%; right: 6%; animation-delay: .8s;  color: var(--lav); }
.sp-3 { bottom: 30%; left: 5%; animation-delay: 1.5s; }
.sp-4 { top: 60%; right: 8%; animation-delay: .4s;  color: var(--rose); font-size:1.5rem; }
.sp-5 { bottom: 20%; right: 15%; animation-delay: 2s; color: var(--lav); }
@keyframes sparklePop {
  0%,100% { transform: scale(1) rotate(0deg); opacity: .4; }
  50%      { transform: scale(1.3) rotate(20deg); opacity: .9; }
}

/* Stats */
.stat-card {
  background: rgba(220,160,185,.35);
  border: 2px solid rgba(190,80,130,.25);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(160,40,90,.1);
}
.stat-number {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--hot);
  line-height: 1;
}
.stat-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ============================================================
   PRICELIST SECTION
   ============================================================ */
.wavy-top {
  height: 80px;
  background: var(--soft);
  clip-path: ellipse(55% 100% at 50% 100%);
  margin-bottom: -1px;
}
.wavy-bot {
  height: 80px;
  background: var(--soft);
  clip-path: ellipse(55% 100% at 50% 0%);
  margin-top: -1px;
}
.pricelist-bg {
  background: var(--soft);
  padding: 60px 16px;
}

/* Tabs */
.tab-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: .82rem;
  font-weight: 800;
  cursor: pointer;
  border: 2.5px solid rgba(244,114,182,.25);
  background: rgba(255,255,255,.7);
  color: var(--muted);
  transition: all .3s;
}
.tab-btn:hover { border-color: var(--pink); color: var(--hot); }
.tab-btn.active {
  background: linear-gradient(135deg, #f472b6, #ec4899);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(236,72,153,.3);
}

/* Price grid */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 480px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .price-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .price-grid { grid-template-columns: repeat(5, 1fr); gap: 14px; } }

.price-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 10px;
  border-radius: 20px;
  background: rgba(235,185,210,.45);
  border: 2px solid rgba(200,100,150,.2);
  cursor: pointer;
  transition: all .3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.price-card::after {
  content: '🌸';
  position: absolute;
  top: -20px; right: -10px;
  font-size: 2.5rem;
  opacity: 0;
  transition: all .3s;
  transform: rotate(-20deg);
}
.price-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(244,114,182,.25);
}
.price-card:hover::after { opacity: .15; top: -8px; }
.price-card.selected {
  background: linear-gradient(135deg, rgba(249,168,212,.2), rgba(192,132,252,.15));
  border-color: var(--hot);
  box-shadow: 0 0 0 3px rgba(236,72,153,.15);
}

.r-amount {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1;
}
.r-icon {
  font-size: .9rem;
  color: var(--hot);
  font-weight: 700;
  margin-top: -4px;
}
.r-price {
  font-family: 'Nunito', sans-serif;
  font-size: .75rem;
  font-weight: 800;
  color: var(--hot);
  background: rgba(236,72,153,.1);
  border: 1.5px solid rgba(236,72,153,.2);
  padding: 2px 10px;
  border-radius: 20px;
}

/* Note banner */
.note-cute {
  background: rgba(220,160,185,.35);
  border: 2px solid rgba(190,80,130,.25);
}

/* ============================================================
   ORDER FORM
   ============================================================ */
.form-card {
  background: rgba(235,185,210,.5);
  border: 2px solid rgba(190,90,140,.25);
  box-shadow: 0 20px 60px rgba(160,40,90,.1), 0 0 0 1px rgba(200,120,160,.15);
  backdrop-filter: blur(10px);
}

.form-label {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: rgba(220,155,185,.3);
  border: 2px solid rgba(190,90,140,.25);
  border-radius: 16px;
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  padding: 13px 18px;
  transition: all .3s;
  outline: none;
}
.form-input::placeholder { color: #9a607a; font-weight: 400; }
.form-input:focus {
  border-color: var(--hot);
  background: rgba(215,145,175,.35);
  box-shadow: 0 0 0 4px rgba(200,60,110,.15);
}

.form-select {
  width: 100%;
  background: rgba(220,155,185,.3);
  border: 2px solid rgba(190,90,140,.25);
  border-radius: 16px;
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  padding: 13px 44px 13px 18px;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  transition: all .3s;
}
.form-select:focus {
  border-color: var(--hot);
  background: rgba(215,145,175,.35);
  box-shadow: 0 0 0 4px rgba(200,60,110,.15);
}
.form-select option { background: #e8b0cc; color: var(--text); }
.form-select:disabled { opacity: .45; cursor: not-allowed; }
.sel-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pink);
  pointer-events: none;
  font-size: 1.1rem;
}

/* Preview */
.preview-box {
  background: rgba(205,130,165,.25);
  border: 2px solid rgba(180,70,120,.25);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-section {
  background: var(--soft);
  border-top: 2px solid rgba(180,80,130,.2);
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.hidden { display: none !important; }

.tab-content { animation: tabIn .4s ease; }
@keyframes tabIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}