:root{
  --bg:#fbfaf6;
  --text:#2c2c2c;
  --muted:#6b6b6b;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
  /* Pastel brand palette sampled from logo */
  --lavender:#ceb3e0;
  --peach:#f7b07c;
  --lemon:#ffd08a;
  --sage:#94a06f;
  --pink:#ff95d2;
  --sky:#7db7ff;
  --primary:#7db7ff; /* default CTA */
  --radius:18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  overflow-x:hidden;
}

/* Utility */
.container{ width:min(1100px, 92%); margin-inline:auto; }
.btn{
  display:inline-block;
  padding:.9rem 1.2rem;
  border-radius: 999px;
  background:var(--primary);
  color:white;
  text-decoration:none;
  font-weight:600;
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{ transform: translateY(-2px); box-shadow: 0 12px 34px rgba(0,0,0,.1); }

/* Header */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(251,250,246,.85);
  backdrop-filter: blur(8px);
  border-bottom:1px solid rgba(0,0,0,.03);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:.8rem 0;
}
.logo{ display:flex; gap:.8rem; align-items:center; text-decoration:none; }
.logo img{ height:42px; width:auto; border-radius:8px; }
nav ul{ list-style:none; display:flex; gap:1rem; margin:0; padding:0; }
nav a{ text-decoration:none; color:#3b3b3b; font-weight:600; padding:.5rem .7rem; border-radius:10px; }
nav a:hover{ background:rgba(0,0,0,.04); }
.mobile-toggle{ display:none; border:none; background:transparent; font-size:1.6rem; }

/* Hero */
.hero{
  position:relative;
  padding: clamp(3rem, 7vw, 6rem) 0 3rem;
}
.hero-inner{
  display:grid; grid-template-columns: 1.1fr .9fr; gap:2rem; align-items:center;
}
.hero h1{
  font-size:clamp(2.1rem, 5vw, 3.4rem);
  line-height:1.1;
  margin:0 0 1rem;
  font-weight:900;
}
.hero p{ color:var(--muted); max-width:52ch; margin-bottom:1.4rem; }
.hero .badges{ display:flex; gap:.6rem; flex-wrap:wrap; margin-top:1rem; }
.badge{
  padding:.5rem .8rem; border-radius:999px; font-size:.85rem; font-weight:700; color:#333;
  box-shadow: var(--shadow); background:white;
}
.badge.lav{ background:var(--lavender); }
.badge.peach{ background:var(--peach); }
.badge.lemon{ background:var(--lemon); }
.badge.sage{ background:var(--sage); color:#fff; }
.badge.pink{ background:var(--pink); }
.badge.sky{ background:var(--sky); }

/* Hero mock */
.hero-mock{
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff 0%, #f6f7ff 100%);
  box-shadow: var(--shadow);
  display:grid; place-items:center;
  overflow:hidden;
}
.mock-grid{
  width:92%; height:92%;
  display:grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 1fr; gap:10px;
}
.mock-item{
  background:white; border-radius:14px; box-shadow: var(--shadow);
  transform: rotate(var(--rot, 0deg));
}
.mock-item:nth-child(1){ grid-column: span 2; grid-row: span 2; --rot:-1.5deg; background:var(--lavender); }
.mock-item:nth-child(2){ grid-column: span 2; --rot:1.5deg; background:var(--peach); }
.mock-item:nth-child(3){ grid-column: span 2; --rot:-.5deg; background:var(--lemon); }
.mock-item:nth-child(4){ grid-column: span 3; grid-row: span 2; background:white url('logo.png') center/contain no-repeat; }
.mock-item:nth-child(5){ grid-column: span 3; grid-row: span 1; background:var(--sky); }
.mock-item:nth-child(6){ grid-column: span 2; grid-row: span 1; background:var(--pink); }

/* Features */
.features{ padding:3rem 0 1rem; }
.features-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:1rem;
}
.card{
  background:white; border-radius: var(--radius); padding:1.2rem; box-shadow: var(--shadow);
}
.card h3{ margin:.2rem 0 .4rem; }
.card p{ color:var(--muted); }

/* Products */
.section-title{ display:flex; align-items:center; justify-content:space-between; margin:2.2rem 0 1rem; }
.products{
  display:grid; grid-template-columns: repeat(4, 1fr); gap:1rem;
}
.product{
  background:white; border-radius: var(--radius);
  box-shadow: var(--shadow); overflow:hidden; display:flex; flex-direction:column;
}
.product .thumb{
  background: #fff; display:grid; place-items:center; aspect-ratio: 1;
  border-bottom:1px solid rgba(0,0,0,.05);
}
.product .thumb img{ width:87%; height:87%; border-radius:12px;}
.product .content{ padding:1rem; }
.product h4{ margin:.4rem 0 .2rem; }
.price{ font-weight:800; }

/* Testimonials */
.testimonials{ padding:2.4rem 0; }
.testi-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:1rem; }
.testi{ background:white; border-radius: var(--radius); padding:1rem; box-shadow: var(--shadow); }
.testi small{ color:var(--muted); }

/* Instagram */
.ig{ padding:2rem 0 3rem; }
.ig-grid{ display:grid; grid-template-columns: repeat(6, 1fr); gap:8px; }
.ig-tile{ aspect-ratio:1/1; border-radius:12px; background:linear-gradient(135deg, var(--pink), var(--sky)); box-shadow: var(--shadow); }
.ig-grid img {
  width: 100%;       /* makes them scale to the grid cell */
  height: 170px;     /* fixed height for neat rows */
  object-fit: cover; /* crops the image nicely */
  border-radius: 8px; /* optional, for soft pastel feel */
}

/* Policies Section (unchanged bits OK) */
.policies { padding: 4rem 2rem; background: #fdfdfd; }
.policies h2 { text-align:center; margin-bottom:2rem; font-size:2rem; }
.accordion { max-width: 900px; margin: 0 auto; }

.accordion-item { 
  margin-bottom: 1rem; border-radius: 12px; overflow: hidden; 
  box-shadow: 0 8px 28px rgba(0,0,0,.06);
  background:#fff;
}

/* Header row */
.accordion-header{
  width:100%; padding:1rem 1.2rem; border:0; cursor:pointer; text-align:left;
  font-size: 15px;
  font-weight:800; background: #fff; color:#222;
  display:flex; align-items:center; justify-content:space-between;
}
.accordion-header:hover{ background: #fafafa; }

/* + / – icon */
.accordion-header::after{
  content:"+"; font-size:1.4rem; line-height:1; transition: transform .25s ease;
}
.accordion-item.open .accordion-header::after{ content:"–"; transform: rotate(180deg); }

/* Body with smooth slide */
.accordion-body{
  max-height:0; overflow:hidden; 
  padding:0 1.2rem;                /* side padding always */
  transition: max-height .35s ease, padding-top .25s ease, padding-bottom .25s ease;
}
.accordion-item.open .accordion-body{
  /* padding expands only when open */
  padding-top: .9rem; 
  padding-bottom: 1rem;
}


/* Footer */
footer{
  background:#fff; border-top:1px solid rgba(0,0,0,.06); padding:2rem 0;
}
.footer-grid{ display:grid; grid-template-columns: 1.5fr 1fr 1fr; gap:1rem; }
footer a{ color:#333; text-decoration:none; }
.subtle{ color:var(--muted); font-size:.9rem; }

/* Floating Instagram */
.instagram{
  position:fixed; right:18px; bottom:18px; z-index:60;
  width:56px; height:56px; border-radius:50%; background:#25D366; display:grid; place-items:center;
  color:white; font-weight:900; text-decoration:none; box-shadow: 0 12px 28px rgba(211, 37, 133, 0.4);
}

/* Responsive */
@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; }
  .features-grid{ grid-template-columns: 1fr; }
  .products{ grid-template-columns: repeat(1, 1fr); }
  .testi-grid{ grid-template-columns: 1fr; }
  .ig-grid{ grid-template-columns: repeat(3, 1fr); }
  .footer-grid{ grid-template-columns: 1fr; }
  .mobile-toggle{ display:block; }
  nav ul{ position:fixed; inset:60px 10px auto 10px; background:white; padding:1rem; border-radius:14px; box-shadow: var(--shadow); display:none; flex-direction:column; }
  nav ul.open{ display:flex; }
}