:root{
  --bg:#fbf7fc;              /* light blush-lavender */
  --card:rgba(255,255,255,.85); /* keeps your glass look */
  --muted:#8f7fa3;           /* muted purple-gray */
  --text:#2b2236;            /* deep plum text */

  --accent:#f6a6c9;          /* blush pink */
  --accent2:#c084fc;         /* lavender */

  --danger:#ff7a8a;
  --ok:#34d399;

  --radius:18px;
}
*{box-sizing:border-box}
body{
  margin:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
background:
  radial-gradient(900px 600px at 0% 0%, rgba(246,166,201,.15), transparent),
  radial-gradient(900px 600px at 100% 0%, rgba(192,132,252,.12), transparent),
  var(--bg);
}
a{color:inherit; text-decoration:none}
.container{max-width:95%; margin:0 auto; padding:14px}
.nav{
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; gap:12px}
.brand{
  display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.5px
}
/*.logo{
  width:38px; height:38px; border-radius:12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 12px 30px rgba(110,231,255,.12);
}*/
.logo{
  width: 48px;           /* adjust size if needed */
  height: 48px;
  background: url('/images/logo/logo_no_bg.png') center/contain no-repeat;
  display: inline-block;
}

.pills{display:flex; gap:10px; align-items:center}

.pill{
  padding:10px 12px; border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(253,21,205,.08);
  color:var(--text);
  display:flex; gap:8px; align-items:center;
}

.hero{
  padding:18px 0 8px;
}
.hero h1{margin:10px 0 6px; font-size: clamp(22px, 3vw, 34px)}
.hero p{margin:0; color:var(--muted)}
.grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
  margin-top:14px;
}
@media (min-width: 820px){
  .grid{grid-template-columns: repeat(4, 1fr); gap:14px}
}
/* Desktop layout: photo left, details right */
@media (min-width: 980px){
  .grid2{
    grid-template-columns: 1.1fr .9fr;
    align-items: start;
  }
  #mainImg{ height: 520px !important; }
}

.card{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
  transition: transform .15s ease, border-color .15s ease;
}

.card:hover{transform: translateY(-2px); border-color: rgba(110,231,255,.25)}
.card img{width:100%; aspect-ratio:3/4; object-fit:contain; display:block;object-position:center top;backgound:#f7f1f5}
.card .pad{padding:12px}
.muted{color:var(--muted)}
.row{display:flex; gap:10px; align-items:center; justify-content:space-between}
.btn{
  border:none;
  cursor:pointer;
  border-radius:14px;
  padding:12px 14px;
  font-weight:700;

  background: linear-gradient(135deg,
    rgba(249,168,212,.25),
    rgba(192,132,252,.25)
  );
  border:1px solid rgba(255,255,255,.12);
  color:var(--text);
  transition: all .15s ease;
}
.btn:hover{
  box-shadow: 0 10px 28px rgba(249,168,212,.25);
  transform: translateY(-1px);
}

.btn:active{transform: translateY(1px)}
.btn-danger{background: rgba(255,107,107,.14); border-color: rgba(255,107,107,.25)}
.btn-ghost{background: rgba(255,255,255,.05)}
.input, .textarea{
  width:100%;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding:12px 12px;
  color:var(--text);
  outline:none;
}
label{display:block; font-size:12px; color:var(--muted); margin:10px 0 6px}
.panel{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding:14px;
}
.toast{
  margin:10px 0;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(52,211,153,.10);
}
.site-footer{
  margin-top:40px;
  padding:18px;
  background:#111;
  color:#fff;
  font-size:14px;
}

.footer-inner{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}

.footer-right a{
  color:#ddd;
  margin-left:12px;
  text-decoration:none;
}

.footer-right a:hover{
  color:#fff;
}

